@gcorevideo/player 2.8.0 → 2.8.2
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/dist/index.js +21 -559
- package/lib/plugins/dash-playback/DashPlayback.d.ts +6 -6
- package/lib/plugins/dash-playback/DashPlayback.d.ts.map +1 -1
- package/lib/plugins/dash-playback/DashPlayback.js +11 -2
- package/lib/plugins/hls-playback/HlsPlayback.d.ts +3 -3
- package/lib/plugins/hls-playback/HlsPlayback.d.ts.map +1 -1
- package/lib/plugins/hls-playback/HlsPlayback.js +5 -0
- package/lib/utils/mediaSources.js +3 -3
- package/licenses.json +782 -0
- package/package.json +1 -4
- package/rollup.config.js +0 -12
- package/src/plugins/dash-playback/DashPlayback.ts +16 -11
- package/src/plugins/hls-playback/HlsPlayback.ts +6 -1
- package/src/utils/mediaSources.ts +3 -3
- package/tsconfig.tsbuildinfo +1 -1
- package/src/typings/@clappr/core/events.d.ts +0 -7
- package/src/typings/@clappr/core/html5_video.d.ts +0 -28
- package/src/typings/@clappr/core/player.d.ts +0 -8
package/dist/index.js
CHANGED
|
@@ -12219,6 +12219,7 @@ const DASHJS = /*@__PURE__*/getDefaultExportFromCjs$1(dash_all_minExports);
|
|
|
12219
12219
|
const AUTO$1 = -1;
|
|
12220
12220
|
const { now: now$2 } = Utils;
|
|
12221
12221
|
const T$2 = 'DashPlayback';
|
|
12222
|
+
// @ts-expect-error
|
|
12222
12223
|
class DashPlayback extends HTML5Video {
|
|
12223
12224
|
_levels = null;
|
|
12224
12225
|
_currentLevel = null;
|
|
@@ -12471,24 +12472,29 @@ class DashPlayback extends HTML5Video {
|
|
|
12471
12472
|
}
|
|
12472
12473
|
_updateSettings() {
|
|
12473
12474
|
if (this._playbackType === Playback.VOD) {
|
|
12475
|
+
// @ts-expect-error
|
|
12474
12476
|
this.settings.left = ['playpause', 'position', 'duration'];
|
|
12475
12477
|
}
|
|
12476
12478
|
else if (this.dvrEnabled) {
|
|
12479
|
+
// @ts-expect-error
|
|
12477
12480
|
this.settings.left = ['playpause'];
|
|
12478
12481
|
}
|
|
12479
12482
|
else {
|
|
12483
|
+
// @ts-expect-error
|
|
12480
12484
|
this.settings.left = ['playstop'];
|
|
12481
12485
|
}
|
|
12486
|
+
// @ts-expect-error
|
|
12482
12487
|
this.settings.seekEnabled = this.isSeekEnabled();
|
|
12483
12488
|
this.trigger(Events$1.PLAYBACK_SETTINGSUPDATE);
|
|
12484
12489
|
}
|
|
12485
12490
|
_onPlaybackError = (event) => {
|
|
12486
12491
|
// TODO
|
|
12492
|
+
trace(`${T$2} _onPlaybackError`, { event });
|
|
12487
12493
|
};
|
|
12488
12494
|
_onDASHJSSError = (event) => {
|
|
12495
|
+
trace(`${T$2} _onDASHJSSError`, { event });
|
|
12489
12496
|
// TODO
|
|
12490
12497
|
// only report/handle errors if they are fatal
|
|
12491
|
-
// hlsjs should automatically handle non fatal errors
|
|
12492
12498
|
this._stopTimeUpdateTimer();
|
|
12493
12499
|
if (event.error === 'capability' && event.event === 'mediasource') {
|
|
12494
12500
|
// No support for MSE
|
|
@@ -12601,7 +12607,10 @@ class DashPlayback extends HTML5Video {
|
|
|
12601
12607
|
super._onDurationChange();
|
|
12602
12608
|
}
|
|
12603
12609
|
get dvrEnabled() {
|
|
12604
|
-
|
|
12610
|
+
if (!this._dash) {
|
|
12611
|
+
trace(`${T$2} dvrEnable no dash player instance`);
|
|
12612
|
+
return false;
|
|
12613
|
+
}
|
|
12605
12614
|
return (this._dash?.getDVRWindowSize() >= this._minDvrSize &&
|
|
12606
12615
|
this.getPlaybackType() === Playback.LIVE);
|
|
12607
12616
|
}
|
|
@@ -41303,6 +41312,7 @@ const DEFAULT_RECOVER_ATTEMPTS = 16;
|
|
|
41303
41312
|
Events$1.register('PLAYBACK_FRAGMENT_CHANGED');
|
|
41304
41313
|
Events$1.register('PLAYBACK_FRAGMENT_PARSING_METADATA');
|
|
41305
41314
|
const T$1 = 'plugins.hls';
|
|
41315
|
+
// @ts-expect-error
|
|
41306
41316
|
class HlsPlayback extends HTML5Video {
|
|
41307
41317
|
_ccIsSetup = false;
|
|
41308
41318
|
_ccTracksUpdated = false;
|
|
@@ -41671,14 +41681,18 @@ class HlsPlayback extends HTML5Video {
|
|
|
41671
41681
|
}
|
|
41672
41682
|
_updateSettings() {
|
|
41673
41683
|
if (this._playbackType === Playback.VOD) {
|
|
41684
|
+
// @ts-expect-error
|
|
41674
41685
|
this.settings.left = ['playpause', 'position', 'duration'];
|
|
41675
41686
|
}
|
|
41676
41687
|
else if (this.dvrEnabled) {
|
|
41688
|
+
// @ts-expect-error
|
|
41677
41689
|
this.settings.left = ['playpause'];
|
|
41678
41690
|
}
|
|
41679
41691
|
else {
|
|
41692
|
+
// @ts-expect-error
|
|
41680
41693
|
this.settings.left = ['playstop'];
|
|
41681
41694
|
}
|
|
41695
|
+
// @ts-expect-error
|
|
41682
41696
|
this.settings.seekEnabled = this.isSeekEnabled();
|
|
41683
41697
|
this.trigger(Events$1.PLAYBACK_SETTINGSUPDATE);
|
|
41684
41698
|
}
|
|
@@ -42100,18 +42114,18 @@ function buildSourcesPriorityList(sources, priorityTransport = 'auto') {
|
|
|
42100
42114
|
}
|
|
42101
42115
|
}
|
|
42102
42116
|
function addHls() {
|
|
42103
|
-
if (sources.hls && HlsPlayback.canPlay(sources.hls)) {
|
|
42117
|
+
if (sources.hls && HlsPlayback.canPlay(sources.hls, undefined)) {
|
|
42104
42118
|
msl.push(sources.hls);
|
|
42105
42119
|
sources.hls = null;
|
|
42106
42120
|
}
|
|
42107
42121
|
if (sources.master?.endsWith('.m3u8') &&
|
|
42108
|
-
HlsPlayback.canPlay(sources.master)) {
|
|
42122
|
+
HlsPlayback.canPlay(sources.master, undefined)) {
|
|
42109
42123
|
msl.push(sources.master);
|
|
42110
42124
|
sources.master = null;
|
|
42111
42125
|
}
|
|
42112
42126
|
}
|
|
42113
42127
|
function addDash() {
|
|
42114
|
-
if (sources.dash && DashPlayback.canPlay(sources.dash)) {
|
|
42128
|
+
if (sources.dash && DashPlayback.canPlay(sources.dash, undefined)) {
|
|
42115
42129
|
msl.push(sources.dash);
|
|
42116
42130
|
sources.dash = null;
|
|
42117
42131
|
}
|
|
@@ -42527,12 +42541,12 @@ class SentryTracer {
|
|
|
42527
42541
|
}
|
|
42528
42542
|
}
|
|
42529
42543
|
|
|
42530
|
-
var version$1 = "2.8.
|
|
42544
|
+
var version$1 = "2.8.2";
|
|
42531
42545
|
|
|
42532
42546
|
var packages = {
|
|
42533
42547
|
"": {
|
|
42534
42548
|
name: "@gcorevideo/player",
|
|
42535
|
-
version: "2.8.
|
|
42549
|
+
version: "2.8.2",
|
|
42536
42550
|
license: "Apache-2.0",
|
|
42537
42551
|
dependencies: {
|
|
42538
42552
|
"@clappr/core": "^0.11.3",
|
|
@@ -42549,9 +42563,6 @@ var packages = {
|
|
|
42549
42563
|
assert: "^2.1.0",
|
|
42550
42564
|
rollup: "^4.27.4",
|
|
42551
42565
|
"rollup-plugin-polyfill-node": "^0.13.0",
|
|
42552
|
-
"rollup-plugin-sass": "^1.14.0",
|
|
42553
|
-
"rollup-plugin-string": "^3.0.0",
|
|
42554
|
-
sass: "^1.83.0",
|
|
42555
42566
|
typescript: "^5.7.2"
|
|
42556
42567
|
}
|
|
42557
42568
|
},
|
|
@@ -42568,316 +42579,6 @@ var packages = {
|
|
|
42568
42579
|
dev: true,
|
|
42569
42580
|
license: "MIT"
|
|
42570
42581
|
},
|
|
42571
|
-
"node_modules/@parcel/watcher": {
|
|
42572
|
-
version: "2.5.0",
|
|
42573
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.5.0.tgz",
|
|
42574
|
-
integrity: "sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==",
|
|
42575
|
-
dev: true,
|
|
42576
|
-
hasInstallScript: true,
|
|
42577
|
-
license: "MIT",
|
|
42578
|
-
optional: true,
|
|
42579
|
-
dependencies: {
|
|
42580
|
-
"detect-libc": "^1.0.3",
|
|
42581
|
-
"is-glob": "^4.0.3",
|
|
42582
|
-
micromatch: "^4.0.5",
|
|
42583
|
-
"node-addon-api": "^7.0.0"
|
|
42584
|
-
},
|
|
42585
|
-
engines: {
|
|
42586
|
-
node: ">= 10.0.0"
|
|
42587
|
-
},
|
|
42588
|
-
funding: {
|
|
42589
|
-
type: "opencollective",
|
|
42590
|
-
url: "https://opencollective.com/parcel"
|
|
42591
|
-
},
|
|
42592
|
-
optionalDependencies: {
|
|
42593
|
-
"@parcel/watcher-android-arm64": "2.5.0",
|
|
42594
|
-
"@parcel/watcher-darwin-arm64": "2.5.0",
|
|
42595
|
-
"@parcel/watcher-darwin-x64": "2.5.0",
|
|
42596
|
-
"@parcel/watcher-freebsd-x64": "2.5.0",
|
|
42597
|
-
"@parcel/watcher-linux-arm-glibc": "2.5.0",
|
|
42598
|
-
"@parcel/watcher-linux-arm-musl": "2.5.0",
|
|
42599
|
-
"@parcel/watcher-linux-arm64-glibc": "2.5.0",
|
|
42600
|
-
"@parcel/watcher-linux-arm64-musl": "2.5.0",
|
|
42601
|
-
"@parcel/watcher-linux-x64-glibc": "2.5.0",
|
|
42602
|
-
"@parcel/watcher-linux-x64-musl": "2.5.0",
|
|
42603
|
-
"@parcel/watcher-win32-arm64": "2.5.0",
|
|
42604
|
-
"@parcel/watcher-win32-ia32": "2.5.0",
|
|
42605
|
-
"@parcel/watcher-win32-x64": "2.5.0"
|
|
42606
|
-
}
|
|
42607
|
-
},
|
|
42608
|
-
"node_modules/@parcel/watcher-android-arm64": {
|
|
42609
|
-
version: "2.5.0",
|
|
42610
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.5.0.tgz",
|
|
42611
|
-
integrity: "sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==",
|
|
42612
|
-
cpu: [
|
|
42613
|
-
"arm64"
|
|
42614
|
-
],
|
|
42615
|
-
dev: true,
|
|
42616
|
-
license: "MIT",
|
|
42617
|
-
optional: true,
|
|
42618
|
-
os: [
|
|
42619
|
-
"android"
|
|
42620
|
-
],
|
|
42621
|
-
engines: {
|
|
42622
|
-
node: ">= 10.0.0"
|
|
42623
|
-
},
|
|
42624
|
-
funding: {
|
|
42625
|
-
type: "opencollective",
|
|
42626
|
-
url: "https://opencollective.com/parcel"
|
|
42627
|
-
}
|
|
42628
|
-
},
|
|
42629
|
-
"node_modules/@parcel/watcher-darwin-arm64": {
|
|
42630
|
-
version: "2.5.0",
|
|
42631
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.5.0.tgz",
|
|
42632
|
-
integrity: "sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==",
|
|
42633
|
-
cpu: [
|
|
42634
|
-
"arm64"
|
|
42635
|
-
],
|
|
42636
|
-
dev: true,
|
|
42637
|
-
license: "MIT",
|
|
42638
|
-
optional: true,
|
|
42639
|
-
os: [
|
|
42640
|
-
"darwin"
|
|
42641
|
-
],
|
|
42642
|
-
engines: {
|
|
42643
|
-
node: ">= 10.0.0"
|
|
42644
|
-
},
|
|
42645
|
-
funding: {
|
|
42646
|
-
type: "opencollective",
|
|
42647
|
-
url: "https://opencollective.com/parcel"
|
|
42648
|
-
}
|
|
42649
|
-
},
|
|
42650
|
-
"node_modules/@parcel/watcher-darwin-x64": {
|
|
42651
|
-
version: "2.5.0",
|
|
42652
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.5.0.tgz",
|
|
42653
|
-
integrity: "sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==",
|
|
42654
|
-
cpu: [
|
|
42655
|
-
"x64"
|
|
42656
|
-
],
|
|
42657
|
-
dev: true,
|
|
42658
|
-
license: "MIT",
|
|
42659
|
-
optional: true,
|
|
42660
|
-
os: [
|
|
42661
|
-
"darwin"
|
|
42662
|
-
],
|
|
42663
|
-
engines: {
|
|
42664
|
-
node: ">= 10.0.0"
|
|
42665
|
-
},
|
|
42666
|
-
funding: {
|
|
42667
|
-
type: "opencollective",
|
|
42668
|
-
url: "https://opencollective.com/parcel"
|
|
42669
|
-
}
|
|
42670
|
-
},
|
|
42671
|
-
"node_modules/@parcel/watcher-freebsd-x64": {
|
|
42672
|
-
version: "2.5.0",
|
|
42673
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.5.0.tgz",
|
|
42674
|
-
integrity: "sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==",
|
|
42675
|
-
cpu: [
|
|
42676
|
-
"x64"
|
|
42677
|
-
],
|
|
42678
|
-
dev: true,
|
|
42679
|
-
license: "MIT",
|
|
42680
|
-
optional: true,
|
|
42681
|
-
os: [
|
|
42682
|
-
"freebsd"
|
|
42683
|
-
],
|
|
42684
|
-
engines: {
|
|
42685
|
-
node: ">= 10.0.0"
|
|
42686
|
-
},
|
|
42687
|
-
funding: {
|
|
42688
|
-
type: "opencollective",
|
|
42689
|
-
url: "https://opencollective.com/parcel"
|
|
42690
|
-
}
|
|
42691
|
-
},
|
|
42692
|
-
"node_modules/@parcel/watcher-linux-arm-glibc": {
|
|
42693
|
-
version: "2.5.0",
|
|
42694
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.5.0.tgz",
|
|
42695
|
-
integrity: "sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==",
|
|
42696
|
-
cpu: [
|
|
42697
|
-
"arm"
|
|
42698
|
-
],
|
|
42699
|
-
dev: true,
|
|
42700
|
-
license: "MIT",
|
|
42701
|
-
optional: true,
|
|
42702
|
-
os: [
|
|
42703
|
-
"linux"
|
|
42704
|
-
],
|
|
42705
|
-
engines: {
|
|
42706
|
-
node: ">= 10.0.0"
|
|
42707
|
-
},
|
|
42708
|
-
funding: {
|
|
42709
|
-
type: "opencollective",
|
|
42710
|
-
url: "https://opencollective.com/parcel"
|
|
42711
|
-
}
|
|
42712
|
-
},
|
|
42713
|
-
"node_modules/@parcel/watcher-linux-arm-musl": {
|
|
42714
|
-
version: "2.5.0",
|
|
42715
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-linux-arm-musl/-/watcher-linux-arm-musl-2.5.0.tgz",
|
|
42716
|
-
integrity: "sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==",
|
|
42717
|
-
cpu: [
|
|
42718
|
-
"arm"
|
|
42719
|
-
],
|
|
42720
|
-
dev: true,
|
|
42721
|
-
license: "MIT",
|
|
42722
|
-
optional: true,
|
|
42723
|
-
os: [
|
|
42724
|
-
"linux"
|
|
42725
|
-
],
|
|
42726
|
-
engines: {
|
|
42727
|
-
node: ">= 10.0.0"
|
|
42728
|
-
},
|
|
42729
|
-
funding: {
|
|
42730
|
-
type: "opencollective",
|
|
42731
|
-
url: "https://opencollective.com/parcel"
|
|
42732
|
-
}
|
|
42733
|
-
},
|
|
42734
|
-
"node_modules/@parcel/watcher-linux-arm64-glibc": {
|
|
42735
|
-
version: "2.5.0",
|
|
42736
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.5.0.tgz",
|
|
42737
|
-
integrity: "sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==",
|
|
42738
|
-
cpu: [
|
|
42739
|
-
"arm64"
|
|
42740
|
-
],
|
|
42741
|
-
dev: true,
|
|
42742
|
-
license: "MIT",
|
|
42743
|
-
optional: true,
|
|
42744
|
-
os: [
|
|
42745
|
-
"linux"
|
|
42746
|
-
],
|
|
42747
|
-
engines: {
|
|
42748
|
-
node: ">= 10.0.0"
|
|
42749
|
-
},
|
|
42750
|
-
funding: {
|
|
42751
|
-
type: "opencollective",
|
|
42752
|
-
url: "https://opencollective.com/parcel"
|
|
42753
|
-
}
|
|
42754
|
-
},
|
|
42755
|
-
"node_modules/@parcel/watcher-linux-arm64-musl": {
|
|
42756
|
-
version: "2.5.0",
|
|
42757
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.5.0.tgz",
|
|
42758
|
-
integrity: "sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==",
|
|
42759
|
-
cpu: [
|
|
42760
|
-
"arm64"
|
|
42761
|
-
],
|
|
42762
|
-
dev: true,
|
|
42763
|
-
license: "MIT",
|
|
42764
|
-
optional: true,
|
|
42765
|
-
os: [
|
|
42766
|
-
"linux"
|
|
42767
|
-
],
|
|
42768
|
-
engines: {
|
|
42769
|
-
node: ">= 10.0.0"
|
|
42770
|
-
},
|
|
42771
|
-
funding: {
|
|
42772
|
-
type: "opencollective",
|
|
42773
|
-
url: "https://opencollective.com/parcel"
|
|
42774
|
-
}
|
|
42775
|
-
},
|
|
42776
|
-
"node_modules/@parcel/watcher-linux-x64-glibc": {
|
|
42777
|
-
version: "2.5.0",
|
|
42778
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.5.0.tgz",
|
|
42779
|
-
integrity: "sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==",
|
|
42780
|
-
cpu: [
|
|
42781
|
-
"x64"
|
|
42782
|
-
],
|
|
42783
|
-
dev: true,
|
|
42784
|
-
license: "MIT",
|
|
42785
|
-
optional: true,
|
|
42786
|
-
os: [
|
|
42787
|
-
"linux"
|
|
42788
|
-
],
|
|
42789
|
-
engines: {
|
|
42790
|
-
node: ">= 10.0.0"
|
|
42791
|
-
},
|
|
42792
|
-
funding: {
|
|
42793
|
-
type: "opencollective",
|
|
42794
|
-
url: "https://opencollective.com/parcel"
|
|
42795
|
-
}
|
|
42796
|
-
},
|
|
42797
|
-
"node_modules/@parcel/watcher-linux-x64-musl": {
|
|
42798
|
-
version: "2.5.0",
|
|
42799
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.5.0.tgz",
|
|
42800
|
-
integrity: "sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==",
|
|
42801
|
-
cpu: [
|
|
42802
|
-
"x64"
|
|
42803
|
-
],
|
|
42804
|
-
dev: true,
|
|
42805
|
-
license: "MIT",
|
|
42806
|
-
optional: true,
|
|
42807
|
-
os: [
|
|
42808
|
-
"linux"
|
|
42809
|
-
],
|
|
42810
|
-
engines: {
|
|
42811
|
-
node: ">= 10.0.0"
|
|
42812
|
-
},
|
|
42813
|
-
funding: {
|
|
42814
|
-
type: "opencollective",
|
|
42815
|
-
url: "https://opencollective.com/parcel"
|
|
42816
|
-
}
|
|
42817
|
-
},
|
|
42818
|
-
"node_modules/@parcel/watcher-win32-arm64": {
|
|
42819
|
-
version: "2.5.0",
|
|
42820
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.5.0.tgz",
|
|
42821
|
-
integrity: "sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==",
|
|
42822
|
-
cpu: [
|
|
42823
|
-
"arm64"
|
|
42824
|
-
],
|
|
42825
|
-
dev: true,
|
|
42826
|
-
license: "MIT",
|
|
42827
|
-
optional: true,
|
|
42828
|
-
os: [
|
|
42829
|
-
"win32"
|
|
42830
|
-
],
|
|
42831
|
-
engines: {
|
|
42832
|
-
node: ">= 10.0.0"
|
|
42833
|
-
},
|
|
42834
|
-
funding: {
|
|
42835
|
-
type: "opencollective",
|
|
42836
|
-
url: "https://opencollective.com/parcel"
|
|
42837
|
-
}
|
|
42838
|
-
},
|
|
42839
|
-
"node_modules/@parcel/watcher-win32-ia32": {
|
|
42840
|
-
version: "2.5.0",
|
|
42841
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.5.0.tgz",
|
|
42842
|
-
integrity: "sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==",
|
|
42843
|
-
cpu: [
|
|
42844
|
-
"ia32"
|
|
42845
|
-
],
|
|
42846
|
-
dev: true,
|
|
42847
|
-
license: "MIT",
|
|
42848
|
-
optional: true,
|
|
42849
|
-
os: [
|
|
42850
|
-
"win32"
|
|
42851
|
-
],
|
|
42852
|
-
engines: {
|
|
42853
|
-
node: ">= 10.0.0"
|
|
42854
|
-
},
|
|
42855
|
-
funding: {
|
|
42856
|
-
type: "opencollective",
|
|
42857
|
-
url: "https://opencollective.com/parcel"
|
|
42858
|
-
}
|
|
42859
|
-
},
|
|
42860
|
-
"node_modules/@parcel/watcher-win32-x64": {
|
|
42861
|
-
version: "2.5.0",
|
|
42862
|
-
resolved: "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.5.0.tgz",
|
|
42863
|
-
integrity: "sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==",
|
|
42864
|
-
cpu: [
|
|
42865
|
-
"x64"
|
|
42866
|
-
],
|
|
42867
|
-
dev: true,
|
|
42868
|
-
license: "MIT",
|
|
42869
|
-
optional: true,
|
|
42870
|
-
os: [
|
|
42871
|
-
"win32"
|
|
42872
|
-
],
|
|
42873
|
-
engines: {
|
|
42874
|
-
node: ">= 10.0.0"
|
|
42875
|
-
},
|
|
42876
|
-
funding: {
|
|
42877
|
-
type: "opencollective",
|
|
42878
|
-
url: "https://opencollective.com/parcel"
|
|
42879
|
-
}
|
|
42880
|
-
},
|
|
42881
42582
|
"node_modules/@rollup/plugin-commonjs": {
|
|
42882
42583
|
version: "28.0.1",
|
|
42883
42584
|
resolved: "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-28.0.1.tgz",
|
|
@@ -43360,20 +43061,6 @@ var packages = {
|
|
|
43360
43061
|
url: "https://github.com/sponsors/wooorm"
|
|
43361
43062
|
}
|
|
43362
43063
|
},
|
|
43363
|
-
"node_modules/braces": {
|
|
43364
|
-
version: "3.0.3",
|
|
43365
|
-
resolved: "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
|
|
43366
|
-
integrity: "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
|
|
43367
|
-
dev: true,
|
|
43368
|
-
license: "MIT",
|
|
43369
|
-
optional: true,
|
|
43370
|
-
dependencies: {
|
|
43371
|
-
"fill-range": "^7.1.1"
|
|
43372
|
-
},
|
|
43373
|
-
engines: {
|
|
43374
|
-
node: ">=8"
|
|
43375
|
-
}
|
|
43376
|
-
},
|
|
43377
43064
|
"node_modules/call-bind": {
|
|
43378
43065
|
version: "1.0.7",
|
|
43379
43066
|
resolved: "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz",
|
|
@@ -43394,22 +43081,6 @@ var packages = {
|
|
|
43394
43081
|
url: "https://github.com/sponsors/ljharb"
|
|
43395
43082
|
}
|
|
43396
43083
|
},
|
|
43397
|
-
"node_modules/chokidar": {
|
|
43398
|
-
version: "4.0.3",
|
|
43399
|
-
resolved: "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz",
|
|
43400
|
-
integrity: "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==",
|
|
43401
|
-
dev: true,
|
|
43402
|
-
license: "MIT",
|
|
43403
|
-
dependencies: {
|
|
43404
|
-
readdirp: "^4.0.1"
|
|
43405
|
-
},
|
|
43406
|
-
engines: {
|
|
43407
|
-
node: ">= 14.16.0"
|
|
43408
|
-
},
|
|
43409
|
-
funding: {
|
|
43410
|
-
url: "https://paulmillr.com/funding/"
|
|
43411
|
-
}
|
|
43412
|
-
},
|
|
43413
43084
|
"node_modules/codem-isoboxer": {
|
|
43414
43085
|
version: "0.3.9",
|
|
43415
43086
|
resolved: "https://registry.npmjs.org/codem-isoboxer/-/codem-isoboxer-0.3.9.tgz",
|
|
@@ -43513,20 +43184,6 @@ var packages = {
|
|
|
43513
43184
|
url: "https://github.com/sponsors/ljharb"
|
|
43514
43185
|
}
|
|
43515
43186
|
},
|
|
43516
|
-
"node_modules/detect-libc": {
|
|
43517
|
-
version: "1.0.3",
|
|
43518
|
-
resolved: "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz",
|
|
43519
|
-
integrity: "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==",
|
|
43520
|
-
dev: true,
|
|
43521
|
-
license: "Apache-2.0",
|
|
43522
|
-
optional: true,
|
|
43523
|
-
bin: {
|
|
43524
|
-
"detect-libc": "bin/detect-libc.js"
|
|
43525
|
-
},
|
|
43526
|
-
engines: {
|
|
43527
|
-
node: ">=0.10"
|
|
43528
|
-
}
|
|
43529
|
-
},
|
|
43530
43187
|
"node_modules/es-define-property": {
|
|
43531
43188
|
version: "1.0.0",
|
|
43532
43189
|
resolved: "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz",
|
|
@@ -43590,20 +43247,6 @@ var packages = {
|
|
|
43590
43247
|
}
|
|
43591
43248
|
}
|
|
43592
43249
|
},
|
|
43593
|
-
"node_modules/fill-range": {
|
|
43594
|
-
version: "7.1.1",
|
|
43595
|
-
resolved: "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
|
|
43596
|
-
integrity: "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
|
|
43597
|
-
dev: true,
|
|
43598
|
-
license: "MIT",
|
|
43599
|
-
optional: true,
|
|
43600
|
-
dependencies: {
|
|
43601
|
-
"to-regex-range": "^5.0.1"
|
|
43602
|
-
},
|
|
43603
|
-
engines: {
|
|
43604
|
-
node: ">=8"
|
|
43605
|
-
}
|
|
43606
|
-
},
|
|
43607
43250
|
"node_modules/for-each": {
|
|
43608
43251
|
version: "0.3.3",
|
|
43609
43252
|
resolved: "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
|
|
@@ -43761,13 +43404,6 @@ var packages = {
|
|
|
43761
43404
|
integrity: "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==",
|
|
43762
43405
|
license: "MIT"
|
|
43763
43406
|
},
|
|
43764
|
-
"node_modules/immutable": {
|
|
43765
|
-
version: "5.0.3",
|
|
43766
|
-
resolved: "https://registry.npmjs.org/immutable/-/immutable-5.0.3.tgz",
|
|
43767
|
-
integrity: "sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==",
|
|
43768
|
-
dev: true,
|
|
43769
|
-
license: "MIT"
|
|
43770
|
-
},
|
|
43771
43407
|
"node_modules/imsc": {
|
|
43772
43408
|
version: "1.1.5",
|
|
43773
43409
|
resolved: "https://registry.npmjs.org/imsc/-/imsc-1.1.5.tgz",
|
|
@@ -43864,17 +43500,6 @@ var packages = {
|
|
|
43864
43500
|
url: "https://github.com/sponsors/wooorm"
|
|
43865
43501
|
}
|
|
43866
43502
|
},
|
|
43867
|
-
"node_modules/is-extglob": {
|
|
43868
|
-
version: "2.1.1",
|
|
43869
|
-
resolved: "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
|
43870
|
-
integrity: "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
|
43871
|
-
dev: true,
|
|
43872
|
-
license: "MIT",
|
|
43873
|
-
optional: true,
|
|
43874
|
-
engines: {
|
|
43875
|
-
node: ">=0.10.0"
|
|
43876
|
-
}
|
|
43877
|
-
},
|
|
43878
43503
|
"node_modules/is-generator-function": {
|
|
43879
43504
|
version: "1.0.10",
|
|
43880
43505
|
resolved: "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz",
|
|
@@ -43891,20 +43516,6 @@ var packages = {
|
|
|
43891
43516
|
url: "https://github.com/sponsors/ljharb"
|
|
43892
43517
|
}
|
|
43893
43518
|
},
|
|
43894
|
-
"node_modules/is-glob": {
|
|
43895
|
-
version: "4.0.3",
|
|
43896
|
-
resolved: "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
|
43897
|
-
integrity: "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
|
43898
|
-
dev: true,
|
|
43899
|
-
license: "MIT",
|
|
43900
|
-
optional: true,
|
|
43901
|
-
dependencies: {
|
|
43902
|
-
"is-extglob": "^2.1.1"
|
|
43903
|
-
},
|
|
43904
|
-
engines: {
|
|
43905
|
-
node: ">=0.10.0"
|
|
43906
|
-
}
|
|
43907
|
-
},
|
|
43908
43519
|
"node_modules/is-module": {
|
|
43909
43520
|
version: "1.0.0",
|
|
43910
43521
|
resolved: "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz",
|
|
@@ -43929,17 +43540,6 @@ var packages = {
|
|
|
43929
43540
|
url: "https://github.com/sponsors/ljharb"
|
|
43930
43541
|
}
|
|
43931
43542
|
},
|
|
43932
|
-
"node_modules/is-number": {
|
|
43933
|
-
version: "7.0.0",
|
|
43934
|
-
resolved: "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
|
|
43935
|
-
integrity: "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
|
|
43936
|
-
dev: true,
|
|
43937
|
-
license: "MIT",
|
|
43938
|
-
optional: true,
|
|
43939
|
-
engines: {
|
|
43940
|
-
node: ">=0.12.0"
|
|
43941
|
-
}
|
|
43942
|
-
},
|
|
43943
43543
|
"node_modules/is-reference": {
|
|
43944
43544
|
version: "1.2.1",
|
|
43945
43545
|
resolved: "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz",
|
|
@@ -43994,43 +43594,6 @@ var packages = {
|
|
|
43994
43594
|
"@jridgewell/sourcemap-codec": "^1.5.0"
|
|
43995
43595
|
}
|
|
43996
43596
|
},
|
|
43997
|
-
"node_modules/micromatch": {
|
|
43998
|
-
version: "4.0.8",
|
|
43999
|
-
resolved: "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz",
|
|
44000
|
-
integrity: "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==",
|
|
44001
|
-
dev: true,
|
|
44002
|
-
license: "MIT",
|
|
44003
|
-
optional: true,
|
|
44004
|
-
dependencies: {
|
|
44005
|
-
braces: "^3.0.3",
|
|
44006
|
-
picomatch: "^2.3.1"
|
|
44007
|
-
},
|
|
44008
|
-
engines: {
|
|
44009
|
-
node: ">=8.6"
|
|
44010
|
-
}
|
|
44011
|
-
},
|
|
44012
|
-
"node_modules/micromatch/node_modules/picomatch": {
|
|
44013
|
-
version: "2.3.1",
|
|
44014
|
-
resolved: "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
|
|
44015
|
-
integrity: "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
|
|
44016
|
-
dev: true,
|
|
44017
|
-
license: "MIT",
|
|
44018
|
-
optional: true,
|
|
44019
|
-
engines: {
|
|
44020
|
-
node: ">=8.6"
|
|
44021
|
-
},
|
|
44022
|
-
funding: {
|
|
44023
|
-
url: "https://github.com/sponsors/jonschlinkert"
|
|
44024
|
-
}
|
|
44025
|
-
},
|
|
44026
|
-
"node_modules/node-addon-api": {
|
|
44027
|
-
version: "7.1.1",
|
|
44028
|
-
resolved: "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz",
|
|
44029
|
-
integrity: "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==",
|
|
44030
|
-
dev: true,
|
|
44031
|
-
license: "MIT",
|
|
44032
|
-
optional: true
|
|
44033
|
-
},
|
|
44034
43597
|
"node_modules/object-is": {
|
|
44035
43598
|
version: "1.1.6",
|
|
44036
43599
|
resolved: "https://registry.npmjs.org/object-is/-/object-is-1.1.6.tgz",
|
|
@@ -44113,20 +43676,6 @@ var packages = {
|
|
|
44113
43676
|
node: ">= 0.4"
|
|
44114
43677
|
}
|
|
44115
43678
|
},
|
|
44116
|
-
"node_modules/readdirp": {
|
|
44117
|
-
version: "4.0.2",
|
|
44118
|
-
resolved: "https://registry.npmjs.org/readdirp/-/readdirp-4.0.2.tgz",
|
|
44119
|
-
integrity: "sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==",
|
|
44120
|
-
dev: true,
|
|
44121
|
-
license: "MIT",
|
|
44122
|
-
engines: {
|
|
44123
|
-
node: ">= 14.16.0"
|
|
44124
|
-
},
|
|
44125
|
-
funding: {
|
|
44126
|
-
type: "individual",
|
|
44127
|
-
url: "https://paulmillr.com/funding/"
|
|
44128
|
-
}
|
|
44129
|
-
},
|
|
44130
43679
|
"node_modules/resolve": {
|
|
44131
43680
|
version: "1.22.8",
|
|
44132
43681
|
resolved: "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz",
|
|
@@ -44196,69 +43745,6 @@ var packages = {
|
|
|
44196
43745
|
rollup: "^1.20.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
|
|
44197
43746
|
}
|
|
44198
43747
|
},
|
|
44199
|
-
"node_modules/rollup-plugin-sass": {
|
|
44200
|
-
version: "1.14.0",
|
|
44201
|
-
resolved: "https://registry.npmjs.org/rollup-plugin-sass/-/rollup-plugin-sass-1.14.0.tgz",
|
|
44202
|
-
integrity: "sha512-MF3K0AaPV+4fduwPOBB5DoEIp8mLOT9laxPWakIAYpl2pT018lu1J0ZJ9tXDwiB0bxEReChds5DA1Du/XNAA3g==",
|
|
44203
|
-
dev: true,
|
|
44204
|
-
license: "MIT",
|
|
44205
|
-
dependencies: {
|
|
44206
|
-
"@rollup/pluginutils": "^3 || ^4 || ^5",
|
|
44207
|
-
resolve: "^1.5.0",
|
|
44208
|
-
sass: "^1.7.2"
|
|
44209
|
-
},
|
|
44210
|
-
engines: {
|
|
44211
|
-
node: ">=10"
|
|
44212
|
-
}
|
|
44213
|
-
},
|
|
44214
|
-
"node_modules/rollup-plugin-string": {
|
|
44215
|
-
version: "3.0.0",
|
|
44216
|
-
resolved: "https://registry.npmjs.org/rollup-plugin-string/-/rollup-plugin-string-3.0.0.tgz",
|
|
44217
|
-
integrity: "sha512-vqyzgn9QefAgeKi+Y4A7jETeIAU1zQmS6VotH6bzm/zmUQEnYkpIGRaOBPY41oiWYV4JyBoGAaBjYMYuv+6wVw==",
|
|
44218
|
-
dev: true,
|
|
44219
|
-
license: "MIT",
|
|
44220
|
-
dependencies: {
|
|
44221
|
-
"rollup-pluginutils": "^2.4.1"
|
|
44222
|
-
}
|
|
44223
|
-
},
|
|
44224
|
-
"node_modules/rollup-pluginutils": {
|
|
44225
|
-
version: "2.8.2",
|
|
44226
|
-
resolved: "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz",
|
|
44227
|
-
integrity: "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==",
|
|
44228
|
-
dev: true,
|
|
44229
|
-
license: "MIT",
|
|
44230
|
-
dependencies: {
|
|
44231
|
-
"estree-walker": "^0.6.1"
|
|
44232
|
-
}
|
|
44233
|
-
},
|
|
44234
|
-
"node_modules/rollup-pluginutils/node_modules/estree-walker": {
|
|
44235
|
-
version: "0.6.1",
|
|
44236
|
-
resolved: "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz",
|
|
44237
|
-
integrity: "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==",
|
|
44238
|
-
dev: true,
|
|
44239
|
-
license: "MIT"
|
|
44240
|
-
},
|
|
44241
|
-
"node_modules/sass": {
|
|
44242
|
-
version: "1.83.0",
|
|
44243
|
-
resolved: "https://registry.npmjs.org/sass/-/sass-1.83.0.tgz",
|
|
44244
|
-
integrity: "sha512-qsSxlayzoOjdvXMVLkzF84DJFc2HZEL/rFyGIKbbilYtAvlCxyuzUeff9LawTn4btVnLKg75Z8MMr1lxU1lfGw==",
|
|
44245
|
-
dev: true,
|
|
44246
|
-
license: "MIT",
|
|
44247
|
-
dependencies: {
|
|
44248
|
-
chokidar: "^4.0.0",
|
|
44249
|
-
immutable: "^5.0.2",
|
|
44250
|
-
"source-map-js": ">=0.6.2 <2.0.0"
|
|
44251
|
-
},
|
|
44252
|
-
bin: {
|
|
44253
|
-
sass: "sass.js"
|
|
44254
|
-
},
|
|
44255
|
-
engines: {
|
|
44256
|
-
node: ">=14.0.0"
|
|
44257
|
-
},
|
|
44258
|
-
optionalDependencies: {
|
|
44259
|
-
"@parcel/watcher": "^2.4.1"
|
|
44260
|
-
}
|
|
44261
|
-
},
|
|
44262
43748
|
"node_modules/sax": {
|
|
44263
43749
|
version: "1.2.1",
|
|
44264
43750
|
resolved: "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz",
|
|
@@ -44283,16 +43769,6 @@ var packages = {
|
|
|
44283
43769
|
node: ">= 0.4"
|
|
44284
43770
|
}
|
|
44285
43771
|
},
|
|
44286
|
-
"node_modules/source-map-js": {
|
|
44287
|
-
version: "1.2.1",
|
|
44288
|
-
resolved: "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
|
44289
|
-
integrity: "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
|
44290
|
-
dev: true,
|
|
44291
|
-
license: "BSD-3-Clause",
|
|
44292
|
-
engines: {
|
|
44293
|
-
node: ">=0.10.0"
|
|
44294
|
-
}
|
|
44295
|
-
},
|
|
44296
43772
|
"node_modules/supports-preserve-symlinks-flag": {
|
|
44297
43773
|
version: "1.0.0",
|
|
44298
43774
|
resolved: "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
|
|
@@ -44306,20 +43782,6 @@ var packages = {
|
|
|
44306
43782
|
url: "https://github.com/sponsors/ljharb"
|
|
44307
43783
|
}
|
|
44308
43784
|
},
|
|
44309
|
-
"node_modules/to-regex-range": {
|
|
44310
|
-
version: "5.0.1",
|
|
44311
|
-
resolved: "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
|
|
44312
|
-
integrity: "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
|
|
44313
|
-
dev: true,
|
|
44314
|
-
license: "MIT",
|
|
44315
|
-
optional: true,
|
|
44316
|
-
dependencies: {
|
|
44317
|
-
"is-number": "^7.0.0"
|
|
44318
|
-
},
|
|
44319
|
-
engines: {
|
|
44320
|
-
node: ">=8.0"
|
|
44321
|
-
}
|
|
44322
|
-
},
|
|
44323
43785
|
"node_modules/typescript": {
|
|
44324
43786
|
version: "5.7.2",
|
|
44325
43787
|
resolved: "https://registry.npmjs.org/typescript/-/typescript-5.7.2.tgz",
|