react-native-theoplayer 10.9.0 → 10.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/README.md +1 -0
- package/android/build.gradle +2 -2
- package/android/src/main/java/com/theoplayer/presentation/PresentationManager.kt +52 -25
- package/android/src/main/java/com/theoplayer/theolive/THEOliveEventAdapter.kt +18 -0
- package/ios/THEOplayerRCTView.swift +4 -2
- package/ios/ads/THEOplayerRCTAdsNative.swift +8 -1
- package/ios/theolive/THEOplayerRCTTHEOliveEventAdapter.swift +70 -3
- package/ios/theolive/THEOplayerRCTTHEOliveEventHandler.swift +28 -3
- package/lib/commonjs/api/event/TheoLiveEvent.js +6 -0
- package/lib/commonjs/api/event/TheoLiveEvent.js.map +1 -1
- package/lib/commonjs/api/theolive/TheoLiveDistribution.js +2 -0
- package/lib/commonjs/api/theolive/TheoLiveDistribution.js.map +1 -0
- package/lib/commonjs/api/theolive/barrel.js +22 -0
- package/lib/commonjs/api/theolive/barrel.js.map +1 -1
- package/lib/commonjs/internal/THEOplayerView.js +6 -11
- package/lib/commonjs/internal/THEOplayerView.js.map +1 -1
- package/lib/commonjs/internal/adapter/THEOplayerAdapter.js +5 -0
- package/lib/commonjs/internal/adapter/THEOplayerAdapter.js.map +1 -1
- package/lib/commonjs/internal/adapter/WebEventForwarder.js +21 -21
- package/lib/commonjs/internal/adapter/WebEventForwarder.js.map +1 -1
- package/lib/commonjs/internal/adapter/event/PlayerEvents.js +9 -1
- package/lib/commonjs/internal/adapter/event/PlayerEvents.js.map +1 -1
- package/lib/commonjs/internal/adapter/event/native/NativeTheoLiveEvent.js +2 -0
- package/lib/commonjs/internal/adapter/event/native/NativeTheoLiveEvent.js.map +1 -1
- package/lib/commonjs/manifest.json +1 -1
- package/lib/commonjs/plugins/typedoc-platform-icons/package-lock.json +57 -145
- package/lib/module/api/event/TheoLiveEvent.js +7 -0
- package/lib/module/api/event/TheoLiveEvent.js.map +1 -1
- package/lib/module/api/theolive/TheoLiveDistribution.js +2 -0
- package/lib/module/api/theolive/TheoLiveDistribution.js.map +1 -0
- package/lib/module/api/theolive/barrel.js +2 -0
- package/lib/module/api/theolive/barrel.js.map +1 -1
- package/lib/module/internal/THEOplayerView.js +6 -11
- package/lib/module/internal/THEOplayerView.js.map +1 -1
- package/lib/module/internal/adapter/THEOplayerAdapter.js +5 -0
- package/lib/module/internal/adapter/THEOplayerAdapter.js.map +1 -1
- package/lib/module/internal/adapter/WebEventForwarder.js +22 -22
- package/lib/module/internal/adapter/WebEventForwarder.js.map +1 -1
- package/lib/module/internal/adapter/event/PlayerEvents.js +7 -0
- package/lib/module/internal/adapter/event/PlayerEvents.js.map +1 -1
- package/lib/module/internal/adapter/event/native/NativeTheoLiveEvent.js +3 -1
- package/lib/module/internal/adapter/event/native/NativeTheoLiveEvent.js.map +1 -1
- package/lib/module/manifest.json +1 -1
- package/lib/module/plugins/typedoc-platform-icons/package-lock.json +57 -145
- package/lib/typescript/api/event/TheoLiveEvent.d.ts +18 -0
- package/lib/typescript/api/event/TheoLiveEvent.d.ts.map +1 -1
- package/lib/typescript/api/source/latency/SourceLatencyConfiguration.d.ts +1 -0
- package/lib/typescript/api/source/latency/SourceLatencyConfiguration.d.ts.map +1 -1
- package/lib/typescript/api/theolive/TheoLiveDistribution.d.ts +11 -0
- package/lib/typescript/api/theolive/TheoLiveDistribution.d.ts.map +1 -0
- package/lib/typescript/api/theolive/TheoLiveEndpoint.d.ts +1 -1
- package/lib/typescript/api/theolive/barrel.d.ts +2 -0
- package/lib/typescript/api/theolive/barrel.d.ts.map +1 -1
- package/lib/typescript/internal/THEOplayerView.d.ts.map +1 -1
- package/lib/typescript/internal/adapter/THEOplayerAdapter.d.ts +2 -0
- package/lib/typescript/internal/adapter/THEOplayerAdapter.d.ts.map +1 -1
- package/lib/typescript/internal/adapter/WebEventForwarder.d.ts.map +1 -1
- package/lib/typescript/internal/adapter/event/PlayerEvents.d.ts +7 -1
- package/lib/typescript/internal/adapter/event/PlayerEvents.d.ts.map +1 -1
- package/lib/typescript/internal/adapter/event/native/NativeTheoLiveEvent.d.ts +5 -0
- package/lib/typescript/internal/adapter/event/native/NativeTheoLiveEvent.d.ts.map +1 -1
- package/package.json +2 -2
- package/react-native-theoplayer.podspec +7 -7
- package/src/api/event/TheoLiveEvent.ts +20 -0
- package/src/api/source/latency/SourceLatencyConfiguration.ts +1 -0
- package/src/api/theolive/TheoLiveDistribution.ts +10 -0
- package/src/api/theolive/TheoLiveEndpoint.ts +1 -1
- package/src/api/theolive/barrel.ts +2 -0
- package/src/internal/THEOplayerView.tsx +6 -9
- package/src/internal/adapter/THEOplayerAdapter.ts +6 -0
- package/src/internal/adapter/WebEventForwarder.ts +24 -16
- package/src/internal/adapter/event/PlayerEvents.ts +18 -7
- package/src/internal/adapter/event/native/NativeTheoLiveEvent.ts +10 -1
- package/src/manifest.json +1 -1
- package/src/plugins/typedoc-platform-icons/package-lock.json +57 -145
|
@@ -8,75 +8,20 @@
|
|
|
8
8
|
"name": "typedoc-platform-icons",
|
|
9
9
|
"version": "1.0.0",
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"typedoc": "^0.
|
|
11
|
+
"typedoc": "^0.25.13",
|
|
12
12
|
"typescript": "^5.1.6"
|
|
13
|
+
},
|
|
14
|
+
"peerDependencies": {
|
|
15
|
+
"typedoc": "0.23.x || 0.24.x || 0.25.x || 0.26.x || 0.27.x || 0.28.x"
|
|
13
16
|
}
|
|
14
17
|
},
|
|
15
|
-
"node_modules
|
|
16
|
-
"version": "
|
|
17
|
-
"resolved": "https://registry.npmjs.org
|
|
18
|
-
"integrity": "sha512
|
|
19
|
-
"dev": true,
|
|
20
|
-
"license": "MIT",
|
|
21
|
-
"dependencies": {
|
|
22
|
-
"@shikijs/engine-oniguruma": "^3.2.1",
|
|
23
|
-
"@shikijs/types": "^3.2.1",
|
|
24
|
-
"@shikijs/vscode-textmate": "^10.0.2"
|
|
25
|
-
}
|
|
26
|
-
},
|
|
27
|
-
"node_modules/@shikijs/engine-oniguruma": {
|
|
28
|
-
"version": "3.2.1",
|
|
29
|
-
"resolved": "https://registry.npmjs.org/@shikijs/engine-oniguruma/-/engine-oniguruma-3.2.1.tgz",
|
|
30
|
-
"integrity": "sha512-wZZAkayEn6qu2+YjenEoFqj0OyQI64EWsNR6/71d1EkG4sxEOFooowKivsWPpaWNBu3sxAG+zPz5kzBL/SsreQ==",
|
|
31
|
-
"dev": true,
|
|
32
|
-
"license": "MIT",
|
|
33
|
-
"dependencies": {
|
|
34
|
-
"@shikijs/types": "3.2.1",
|
|
35
|
-
"@shikijs/vscode-textmate": "^10.0.2"
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
"node_modules/@shikijs/types": {
|
|
39
|
-
"version": "3.2.1",
|
|
40
|
-
"resolved": "https://registry.npmjs.org/@shikijs/types/-/types-3.2.1.tgz",
|
|
41
|
-
"integrity": "sha512-/NTWAk4KE2M8uac0RhOsIhYQf4pdU0OywQuYDGIGAJ6Mjunxl2cGiuLkvu4HLCMn+OTTLRWkjZITp+aYJv60yA==",
|
|
42
|
-
"dev": true,
|
|
43
|
-
"license": "MIT",
|
|
44
|
-
"dependencies": {
|
|
45
|
-
"@shikijs/vscode-textmate": "^10.0.2",
|
|
46
|
-
"@types/hast": "^3.0.4"
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"node_modules/@shikijs/vscode-textmate": {
|
|
50
|
-
"version": "10.0.2",
|
|
51
|
-
"resolved": "https://registry.npmjs.org/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz",
|
|
52
|
-
"integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==",
|
|
53
|
-
"dev": true,
|
|
54
|
-
"license": "MIT"
|
|
55
|
-
},
|
|
56
|
-
"node_modules/@types/hast": {
|
|
57
|
-
"version": "3.0.4",
|
|
58
|
-
"resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
|
|
59
|
-
"integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
|
|
60
|
-
"dev": true,
|
|
61
|
-
"license": "MIT",
|
|
62
|
-
"dependencies": {
|
|
63
|
-
"@types/unist": "*"
|
|
64
|
-
}
|
|
65
|
-
},
|
|
66
|
-
"node_modules/@types/unist": {
|
|
67
|
-
"version": "3.0.3",
|
|
68
|
-
"resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
|
|
69
|
-
"integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
|
|
18
|
+
"node_modules/ansi-sequence-parser": {
|
|
19
|
+
"version": "1.1.3",
|
|
20
|
+
"resolved": "https://registry.npmjs.org/ansi-sequence-parser/-/ansi-sequence-parser-1.1.3.tgz",
|
|
21
|
+
"integrity": "sha512-+fksAx9eG3Ab6LDnLs3ZqZa8KVJ/jYnX+D4Qe1azX+LFGFAXqynCQLOdLpNYN/l9e7l6hMWwZbrnctqr6eSQSw==",
|
|
70
22
|
"dev": true,
|
|
71
23
|
"license": "MIT"
|
|
72
24
|
},
|
|
73
|
-
"node_modules/argparse": {
|
|
74
|
-
"version": "2.0.1",
|
|
75
|
-
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
|
76
|
-
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
|
77
|
-
"dev": true,
|
|
78
|
-
"license": "Python-2.0"
|
|
79
|
-
},
|
|
80
25
|
"node_modules/balanced-match": {
|
|
81
26
|
"version": "1.0.2",
|
|
82
27
|
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
|
@@ -85,37 +30,21 @@
|
|
|
85
30
|
"license": "MIT"
|
|
86
31
|
},
|
|
87
32
|
"node_modules/brace-expansion": {
|
|
88
|
-
"version": "2.0.
|
|
89
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.
|
|
90
|
-
"integrity": "sha512-
|
|
33
|
+
"version": "2.0.2",
|
|
34
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz",
|
|
35
|
+
"integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==",
|
|
91
36
|
"dev": true,
|
|
92
37
|
"license": "MIT",
|
|
93
38
|
"dependencies": {
|
|
94
39
|
"balanced-match": "^1.0.0"
|
|
95
40
|
}
|
|
96
41
|
},
|
|
97
|
-
"node_modules/
|
|
98
|
-
"version": "
|
|
99
|
-
"resolved": "https://registry.npmjs.org/
|
|
100
|
-
"integrity": "sha512-
|
|
101
|
-
"dev": true,
|
|
102
|
-
"license": "BSD-2-Clause",
|
|
103
|
-
"engines": {
|
|
104
|
-
"node": ">=0.12"
|
|
105
|
-
},
|
|
106
|
-
"funding": {
|
|
107
|
-
"url": "https://github.com/fb55/entities?sponsor=1"
|
|
108
|
-
}
|
|
109
|
-
},
|
|
110
|
-
"node_modules/linkify-it": {
|
|
111
|
-
"version": "5.0.0",
|
|
112
|
-
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz",
|
|
113
|
-
"integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==",
|
|
42
|
+
"node_modules/jsonc-parser": {
|
|
43
|
+
"version": "3.3.1",
|
|
44
|
+
"resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.3.1.tgz",
|
|
45
|
+
"integrity": "sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==",
|
|
114
46
|
"dev": true,
|
|
115
|
-
"license": "MIT"
|
|
116
|
-
"dependencies": {
|
|
117
|
-
"uc.micro": "^2.0.0"
|
|
118
|
-
}
|
|
47
|
+
"license": "MIT"
|
|
119
48
|
},
|
|
120
49
|
"node_modules/lunr": {
|
|
121
50
|
"version": "2.3.9",
|
|
@@ -124,39 +53,27 @@
|
|
|
124
53
|
"dev": true,
|
|
125
54
|
"license": "MIT"
|
|
126
55
|
},
|
|
127
|
-
"node_modules/
|
|
128
|
-
"version": "
|
|
129
|
-
"resolved": "https://registry.npmjs.org/
|
|
130
|
-
"integrity": "sha512-
|
|
56
|
+
"node_modules/marked": {
|
|
57
|
+
"version": "4.3.0",
|
|
58
|
+
"resolved": "https://registry.npmjs.org/marked/-/marked-4.3.0.tgz",
|
|
59
|
+
"integrity": "sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A==",
|
|
131
60
|
"dev": true,
|
|
132
61
|
"license": "MIT",
|
|
133
|
-
"dependencies": {
|
|
134
|
-
"argparse": "^2.0.1",
|
|
135
|
-
"entities": "^4.4.0",
|
|
136
|
-
"linkify-it": "^5.0.0",
|
|
137
|
-
"mdurl": "^2.0.0",
|
|
138
|
-
"punycode.js": "^2.3.1",
|
|
139
|
-
"uc.micro": "^2.1.0"
|
|
140
|
-
},
|
|
141
62
|
"bin": {
|
|
142
|
-
"
|
|
63
|
+
"marked": "bin/marked.js"
|
|
64
|
+
},
|
|
65
|
+
"engines": {
|
|
66
|
+
"node": ">= 12"
|
|
143
67
|
}
|
|
144
68
|
},
|
|
145
|
-
"node_modules/mdurl": {
|
|
146
|
-
"version": "2.0.0",
|
|
147
|
-
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz",
|
|
148
|
-
"integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==",
|
|
149
|
-
"dev": true,
|
|
150
|
-
"license": "MIT"
|
|
151
|
-
},
|
|
152
69
|
"node_modules/minimatch": {
|
|
153
|
-
"version": "9.0.
|
|
154
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.
|
|
155
|
-
"integrity": "sha512-
|
|
70
|
+
"version": "9.0.9",
|
|
71
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.9.tgz",
|
|
72
|
+
"integrity": "sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==",
|
|
156
73
|
"dev": true,
|
|
157
74
|
"license": "ISC",
|
|
158
75
|
"dependencies": {
|
|
159
|
-
"brace-expansion": "^2.0.
|
|
76
|
+
"brace-expansion": "^2.0.2"
|
|
160
77
|
},
|
|
161
78
|
"engines": {
|
|
162
79
|
"node": ">=16 || 14 >=14.17"
|
|
@@ -165,44 +82,45 @@
|
|
|
165
82
|
"url": "https://github.com/sponsors/isaacs"
|
|
166
83
|
}
|
|
167
84
|
},
|
|
168
|
-
"node_modules/
|
|
169
|
-
"version": "
|
|
170
|
-
"resolved": "https://registry.npmjs.org/
|
|
171
|
-
"integrity": "sha512-
|
|
85
|
+
"node_modules/shiki": {
|
|
86
|
+
"version": "0.14.7",
|
|
87
|
+
"resolved": "https://registry.npmjs.org/shiki/-/shiki-0.14.7.tgz",
|
|
88
|
+
"integrity": "sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg==",
|
|
172
89
|
"dev": true,
|
|
173
90
|
"license": "MIT",
|
|
174
|
-
"
|
|
175
|
-
"
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"ansi-sequence-parser": "^1.1.0",
|
|
93
|
+
"jsonc-parser": "^3.2.0",
|
|
94
|
+
"vscode-oniguruma": "^1.7.0",
|
|
95
|
+
"vscode-textmate": "^8.0.0"
|
|
176
96
|
}
|
|
177
97
|
},
|
|
178
98
|
"node_modules/typedoc": {
|
|
179
|
-
"version": "0.
|
|
180
|
-
"resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.
|
|
181
|
-
"integrity": "sha512-
|
|
99
|
+
"version": "0.25.13",
|
|
100
|
+
"resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.25.13.tgz",
|
|
101
|
+
"integrity": "sha512-pQqiwiJ+Z4pigfOnnysObszLiU3mVLWAExSPf+Mu06G/qsc3wzbuM56SZQvONhHLncLUhYzOVkjFFpFfL5AzhQ==",
|
|
182
102
|
"dev": true,
|
|
183
103
|
"license": "Apache-2.0",
|
|
184
104
|
"dependencies": {
|
|
185
|
-
"@gerrit0/mini-shiki": "^3.2.1",
|
|
186
105
|
"lunr": "^2.3.9",
|
|
187
|
-
"
|
|
188
|
-
"minimatch": "^9.0.
|
|
189
|
-
"
|
|
106
|
+
"marked": "^4.3.0",
|
|
107
|
+
"minimatch": "^9.0.3",
|
|
108
|
+
"shiki": "^0.14.7"
|
|
190
109
|
},
|
|
191
110
|
"bin": {
|
|
192
111
|
"typedoc": "bin/typedoc"
|
|
193
112
|
},
|
|
194
113
|
"engines": {
|
|
195
|
-
"node": ">=
|
|
196
|
-
"pnpm": ">= 10"
|
|
114
|
+
"node": ">= 16"
|
|
197
115
|
},
|
|
198
116
|
"peerDependencies": {
|
|
199
|
-
"typescript": "
|
|
117
|
+
"typescript": "4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x"
|
|
200
118
|
}
|
|
201
119
|
},
|
|
202
120
|
"node_modules/typescript": {
|
|
203
|
-
"version": "5.
|
|
204
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.
|
|
205
|
-
"integrity": "sha512-
|
|
121
|
+
"version": "5.4.5",
|
|
122
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz",
|
|
123
|
+
"integrity": "sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==",
|
|
206
124
|
"dev": true,
|
|
207
125
|
"license": "Apache-2.0",
|
|
208
126
|
"bin": {
|
|
@@ -213,25 +131,19 @@
|
|
|
213
131
|
"node": ">=14.17"
|
|
214
132
|
}
|
|
215
133
|
},
|
|
216
|
-
"node_modules/
|
|
217
|
-
"version": "
|
|
218
|
-
"resolved": "https://registry.npmjs.org/
|
|
219
|
-
"integrity": "sha512-
|
|
134
|
+
"node_modules/vscode-oniguruma": {
|
|
135
|
+
"version": "1.7.0",
|
|
136
|
+
"resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz",
|
|
137
|
+
"integrity": "sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==",
|
|
220
138
|
"dev": true,
|
|
221
139
|
"license": "MIT"
|
|
222
140
|
},
|
|
223
|
-
"node_modules/
|
|
224
|
-
"version": "
|
|
225
|
-
"resolved": "https://registry.npmjs.org/
|
|
226
|
-
"integrity": "sha512
|
|
141
|
+
"node_modules/vscode-textmate": {
|
|
142
|
+
"version": "8.0.0",
|
|
143
|
+
"resolved": "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-8.0.0.tgz",
|
|
144
|
+
"integrity": "sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg==",
|
|
227
145
|
"dev": true,
|
|
228
|
-
"license": "
|
|
229
|
-
"bin": {
|
|
230
|
-
"yaml": "bin.mjs"
|
|
231
|
-
},
|
|
232
|
-
"engines": {
|
|
233
|
-
"node": ">= 14"
|
|
234
|
-
}
|
|
146
|
+
"license": "MIT"
|
|
235
147
|
}
|
|
236
148
|
}
|
|
237
149
|
}
|