create-young-proj 1.6.2 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +110 -0
- package/README.md +6 -1
- package/dist/index.mjs +19 -19
- package/package.json +1 -1
- package/src/index.ts +6 -1
- package/template-admin-server/src/service/role.service.ts +5 -3
- package/template-big-screen/.editorconfig +14 -0
- package/template-big-screen/.nvmrc +1 -0
- package/template-big-screen/.vscode/extensions.json +12 -0
- package/template-big-screen/.vscode/settings.json +39 -0
- package/template-big-screen/Dockerfile +49 -0
- package/template-big-screen/README.md +20 -0
- package/template-big-screen/_gitignore +23 -0
- package/template-big-screen/_npmrc +2 -0
- package/template-big-screen/_nvmrc +1 -0
- package/template-big-screen/boot.mjs +16 -0
- package/template-big-screen/config/.devrc +1 -0
- package/template-big-screen/config/.onlinerc +1 -0
- package/template-big-screen/config/.testrc +1 -0
- package/template-big-screen/eslint.config.js +34 -0
- package/template-big-screen/index.html +48 -0
- package/template-big-screen/nitro.config.ts +23 -0
- package/template-big-screen/package.json +66 -0
- package/template-big-screen/plugins/init.ts +57 -0
- package/template-big-screen/public/favicon.svg +3 -0
- package/template-big-screen/routes/api/[...all].ts +19 -0
- package/template-big-screen/routes/get/env.ts +13 -0
- package/template-big-screen/src/App.vue +24 -0
- package/template-big-screen/src/apis/get.ts +77 -0
- package/template-big-screen/src/apis/index.ts +53 -0
- package/template-big-screen/src/apis/post.ts +14 -0
- package/template-big-screen/src/assets/data/china.json +1 -0
- package/template-big-screen/src/components/YoungCountUp.vue +29 -0
- package/template-big-screen/src/components/YoungECharts/config.ts +56 -0
- package/template-big-screen/src/components/YoungECharts/index.vue +111 -0
- package/template-big-screen/src/components/YoungHeader.vue +54 -0
- package/template-big-screen/src/components/YoungSectionContainer.vue +55 -0
- package/template-big-screen/src/components/YoungSectionHeader.vue +23 -0
- package/template-big-screen/src/composables/breakPoint.ts +20 -0
- package/template-big-screen/src/composables/dark.ts +52 -0
- package/template-big-screen/src/composables/echarts.ts +17 -0
- package/template-big-screen/src/composables/loadData.ts +38 -0
- package/template-big-screen/src/directives/ellipsis.ts +20 -0
- package/template-big-screen/src/directives/index.ts +13 -0
- package/template-big-screen/src/enums/breakpointEnum.ts +9 -0
- package/template-big-screen/src/layouts/404.vue +19 -0
- package/template-big-screen/src/layouts/blank.vue +9 -0
- package/template-big-screen/src/layouts/default.vue +17 -0
- package/template-big-screen/src/main.ts +59 -0
- package/template-big-screen/src/modules/index.ts +8 -0
- package/template-big-screen/src/modules/pinia.ts +11 -0
- package/template-big-screen/src/modules/router.ts +28 -0
- package/template-big-screen/src/pages/[...all].vue +16 -0
- package/template-big-screen/src/pages/electricity/build.vue +135 -0
- package/template-big-screen/src/pages/electricity/reliability.vue +137 -0
- package/template-big-screen/src/pages/electricity/sale-and-cost.vue +158 -0
- package/template-big-screen/src/pages/index.vue +59 -0
- package/template-big-screen/src/pages/kpi.vue +129 -0
- package/template-big-screen/src/pages/manage-improve.vue +114 -0
- package/template-big-screen/src/pages/social/condition.vue +202 -0
- package/template-big-screen/src/pages/social/electricity-usage.vue +140 -0
- package/template-big-screen/src/styles/index.scss +82 -0
- package/template-big-screen/tsconfig.json +38 -0
- package/template-big-screen/types/auto-imports.d.ts +949 -0
- package/template-big-screen/types/components.d.ts +19 -0
- package/template-big-screen/types/echarts.d.ts +36 -0
- package/template-big-screen/types/index.d.ts +45 -0
- package/template-big-screen/types/type.d.ts +38 -0
- package/template-big-screen/uno.config.ts +68 -0
- package/template-big-screen/vite.config.ts +131 -0
- package/template-big-screen/yarn.lock +7443 -0
- package/template-nuxt-admin/README.md +3 -3
- package/template-nuxt-admin/boot.mjs +4 -1
- package/template-nuxt-admin/composables/config.ts +2 -2
- package/template-nuxt-admin/config/.devrc +1 -1
- package/template-nuxt-admin/config/.onlinerc +1 -1
- package/template-nuxt-admin/config/.testrc +1 -1
- package/template-nuxt-admin/nuxt.config.ts +14 -5
- package/template-nuxt-admin/package.json +12 -11
- package/template-nuxt-admin/pages/system/api.vue +6 -6
- package/template-nuxt-admin/pages/system/role.vue +4 -4
- package/template-nuxt-admin/pages/system/user.vue +4 -4
- package/template-nuxt-admin/server/api/[...all].ts +10 -3
- package/template-nuxt-admin/server/plugins/env.ts +5 -4
- package/template-nuxt-admin/uno.config.ts +1 -9
- package/template-nuxt-admin/yarn.lock +3659 -3363
- package/template-nuxt-mobile/package.json +1 -0
- package/template-nuxt-mobile/server/utils/proxy.ts +1 -30
- package/template-nuxt-mobile/yarn.lock +9 -0
- package/template-nuxt-website/package.json +1 -0
- package/template-nuxt-website/server/utils/proxy.ts +1 -30
- package/template-nuxt-website/yarn.lock +9 -0
- package/template-uni-app/README.md +6 -1
- package/template-uni-app/_env +2 -1
- package/template-uni-app/auto-imports.d.ts +0 -4
- package/template-uni-app/custom-plugins/multiconf.ts +13 -1
- package/template-uni-app/package.json +17 -17
- package/template-uni-app/pnpm-lock.yaml +565 -985
- package/template-uni-app/src/App.vue +11 -1
- package/template-uni-app/src/apis/index.ts +9 -2
- package/template-uni-app/src/components/young-loading/young-loading.vue +4 -2
- package/template-uni-app/src/env.d.ts +7 -2
- package/template-uni-app/src/utils/auth.ts +24 -1
- package/template-uni-app/src/utils/index.ts +1 -2
- package/template-uni-app/src/utils/system.ts +6 -1
- package/template-nuxt-admin/server/utils/index.ts +0 -36
- package/template-uni-app/src/utils/map.ts +0 -98
@@ -12,44 +12,44 @@ dependencies:
|
|
12
12
|
specifier: ^0.2.1
|
13
13
|
version: 0.2.1
|
14
14
|
'@dcloudio/uni-app':
|
15
|
-
specifier: 3.0.0-
|
16
|
-
version: 3.0.0-
|
15
|
+
specifier: 3.0.0-3090920231225001
|
16
|
+
version: 3.0.0-3090920231225001(@dcloudio/types@3.4.3)(postcss@8.4.31)(vue@3.3.8)
|
17
17
|
'@dcloudio/uni-app-plus':
|
18
|
-
specifier: 3.0.0-
|
19
|
-
version: 3.0.0-
|
18
|
+
specifier: 3.0.0-3090920231225001
|
19
|
+
version: 3.0.0-3090920231225001(@vueuse/core@9.13.0)(postcss@8.4.31)(vite@4.5.0)(vue@3.3.8)
|
20
20
|
'@dcloudio/uni-components':
|
21
|
-
specifier: 3.0.0-
|
22
|
-
version: 3.0.0-
|
21
|
+
specifier: 3.0.0-3090920231225001
|
22
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
23
23
|
'@dcloudio/uni-h5':
|
24
|
-
specifier: 3.0.0-
|
25
|
-
version: 3.0.0-
|
24
|
+
specifier: 3.0.0-3090920231225001
|
25
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
26
26
|
'@dcloudio/uni-mp-alipay':
|
27
|
-
specifier: 3.0.0-
|
28
|
-
version: 3.0.0-
|
27
|
+
specifier: 3.0.0-3090920231225001
|
28
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
29
29
|
'@dcloudio/uni-mp-baidu':
|
30
|
-
specifier: 3.0.0-
|
31
|
-
version: 3.0.0-
|
30
|
+
specifier: 3.0.0-3090920231225001
|
31
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
32
32
|
'@dcloudio/uni-mp-jd':
|
33
|
-
specifier: 3.0.0-
|
34
|
-
version: 3.0.0-
|
33
|
+
specifier: 3.0.0-3090920231225001
|
34
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
35
35
|
'@dcloudio/uni-mp-kuaishou':
|
36
|
-
specifier: 3.0.0-
|
37
|
-
version: 3.0.0-
|
36
|
+
specifier: 3.0.0-3090920231225001
|
37
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
38
38
|
'@dcloudio/uni-mp-lark':
|
39
|
-
specifier: 3.0.0-
|
40
|
-
version: 3.0.0-
|
39
|
+
specifier: 3.0.0-3090920231225001
|
40
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
41
41
|
'@dcloudio/uni-mp-qq':
|
42
|
-
specifier: 3.0.0-
|
43
|
-
version: 3.0.0-
|
42
|
+
specifier: 3.0.0-3090920231225001
|
43
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
44
44
|
'@dcloudio/uni-mp-toutiao':
|
45
|
-
specifier: 3.0.0-
|
46
|
-
version: 3.0.0-
|
45
|
+
specifier: 3.0.0-3090920231225001
|
46
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
47
47
|
'@dcloudio/uni-mp-weixin':
|
48
|
-
specifier: 3.0.0-
|
49
|
-
version: 3.0.0-
|
48
|
+
specifier: 3.0.0-3090920231225001
|
49
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
50
50
|
'@dcloudio/uni-quickapp-webview':
|
51
|
-
specifier: 3.0.0-
|
52
|
-
version: 3.0.0-
|
51
|
+
specifier: 3.0.0-3090920231225001
|
52
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
53
53
|
'@uni-helper/uni-use':
|
54
54
|
specifier: ^0.17.1
|
55
55
|
version: 0.17.1(@vueuse/core@9.13.0)(postcss@8.4.31)(typescript@5.2.2)(vue@3.3.8)
|
@@ -101,20 +101,20 @@ devDependencies:
|
|
101
101
|
specifier: ^3.4.3
|
102
102
|
version: 3.4.3
|
103
103
|
'@dcloudio/uni-automator':
|
104
|
-
specifier: 3.0.0-
|
105
|
-
version: 3.0.0-
|
104
|
+
specifier: 3.0.0-3090920231225001
|
105
|
+
version: 3.0.0-3090920231225001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.31)(vue@3.3.8)
|
106
106
|
'@dcloudio/uni-cli-shared':
|
107
|
-
specifier: 3.0.0-
|
108
|
-
version: 3.0.0-
|
107
|
+
specifier: 3.0.0-3090920231225001
|
108
|
+
version: 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
109
109
|
'@dcloudio/uni-stacktracey':
|
110
|
-
specifier: 3.0.0-
|
111
|
-
version: 3.0.0-
|
110
|
+
specifier: 3.0.0-3090920231225001
|
111
|
+
version: 3.0.0-3090920231225001
|
112
112
|
'@dcloudio/uni-ui':
|
113
113
|
specifier: ^1.4.28
|
114
114
|
version: 1.4.28
|
115
115
|
'@dcloudio/vite-plugin-uni':
|
116
|
-
specifier: 3.0.0-
|
117
|
-
version: 3.0.0-
|
116
|
+
specifier: 3.0.0-3090920231225001
|
117
|
+
version: 3.0.0-3090920231225001(@vueuse/core@9.13.0)(postcss@8.4.31)(vite@4.5.0)(vue@3.3.8)
|
118
118
|
'@types/md5':
|
119
119
|
specifier: ^2.3.5
|
120
120
|
version: 2.3.5
|
@@ -168,7 +168,7 @@ devDependencies:
|
|
168
168
|
version: 0.25.2(vue@3.3.8)
|
169
169
|
vite:
|
170
170
|
specifier: 4.5.0
|
171
|
-
version: 4.5.0(sass@1.69.5)(terser@5.
|
171
|
+
version: 4.5.0(sass@1.69.5)(terser@5.24.0)
|
172
172
|
|
173
173
|
packages:
|
174
174
|
|
@@ -182,7 +182,7 @@ packages:
|
|
182
182
|
engines: {node: '>=6.0.0'}
|
183
183
|
dependencies:
|
184
184
|
'@jridgewell/gen-mapping': 0.3.3
|
185
|
-
'@jridgewell/trace-mapping': 0.3.
|
185
|
+
'@jridgewell/trace-mapping': 0.3.20
|
186
186
|
|
187
187
|
/@antfu/eslint-config@1.1.2(eslint@8.53.0)(typescript@5.2.2):
|
188
188
|
resolution: {integrity: sha512-5wOOd7hgPFvSeeJB5BcQxzuEdfI3L2/nvUxPhdkNGCuUUXKbmH9dC5jAi32psIhYwwzH5WHHi/rRumfyrGmh/w==}
|
@@ -248,7 +248,6 @@ packages:
|
|
248
248
|
|
249
249
|
/@antfu/utils@0.7.6:
|
250
250
|
resolution: {integrity: sha512-pvFiLP2BeOKA/ZOS6jxx4XhKzdVLHDhGlFEaZ2flWWYf2xOqVniqpk38I04DFRyz+L0ASggl7SkItTc+ZLju4w==}
|
251
|
-
dev: true
|
252
251
|
|
253
252
|
/@babel/code-frame@7.22.13:
|
254
253
|
resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==}
|
@@ -257,42 +256,10 @@ packages:
|
|
257
256
|
'@babel/highlight': 7.22.20
|
258
257
|
chalk: 2.4.2
|
259
258
|
|
260
|
-
/@babel/code-frame@7.22.5:
|
261
|
-
resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==}
|
262
|
-
engines: {node: '>=6.9.0'}
|
263
|
-
dependencies:
|
264
|
-
'@babel/highlight': 7.22.5
|
265
|
-
|
266
|
-
/@babel/compat-data@7.22.9:
|
267
|
-
resolution: {integrity: sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==}
|
268
|
-
engines: {node: '>=6.9.0'}
|
269
|
-
|
270
259
|
/@babel/compat-data@7.23.3:
|
271
260
|
resolution: {integrity: sha512-BmR4bWbDIoFJmJ9z2cZ8Gmm2MXgEDgjdWgpKmKWUt54UGFJdlj31ECtbaDvCG/qVdG3AQ1SfpZEs01lUFbzLOQ==}
|
272
261
|
engines: {node: '>=6.9.0'}
|
273
262
|
|
274
|
-
/@babel/core@7.22.9:
|
275
|
-
resolution: {integrity: sha512-G2EgeufBcYw27U4hhoIwFcgc1XU7TlXJ3mv04oOv1WCuo900U/anZSPzEqNjwdjgffkk2Gs0AN0dW1CKVLcG7w==}
|
276
|
-
engines: {node: '>=6.9.0'}
|
277
|
-
dependencies:
|
278
|
-
'@ampproject/remapping': 2.2.1
|
279
|
-
'@babel/code-frame': 7.22.5
|
280
|
-
'@babel/generator': 7.22.9
|
281
|
-
'@babel/helper-compilation-targets': 7.22.9(@babel/core@7.22.9)
|
282
|
-
'@babel/helper-module-transforms': 7.22.9(@babel/core@7.22.9)
|
283
|
-
'@babel/helpers': 7.22.6
|
284
|
-
'@babel/parser': 7.22.7
|
285
|
-
'@babel/template': 7.22.5
|
286
|
-
'@babel/traverse': 7.22.8
|
287
|
-
'@babel/types': 7.22.5
|
288
|
-
convert-source-map: 1.9.0
|
289
|
-
debug: 4.3.4
|
290
|
-
gensync: 1.0.0-beta.2
|
291
|
-
json5: 2.2.3
|
292
|
-
semver: 6.3.1
|
293
|
-
transitivePeerDependencies:
|
294
|
-
- supports-color
|
295
|
-
|
296
263
|
/@babel/core@7.23.3:
|
297
264
|
resolution: {integrity: sha512-Jg+msLuNuCJDyBvFv5+OKOUjWMZgd85bKjbICd3zWrKAo+bJ49HJufi7CQE0q0uR8NGyO6xkCACScNqyjHSZew==}
|
298
265
|
engines: {node: '>=6.9.0'}
|
@@ -315,15 +282,6 @@ packages:
|
|
315
282
|
transitivePeerDependencies:
|
316
283
|
- supports-color
|
317
284
|
|
318
|
-
/@babel/generator@7.22.9:
|
319
|
-
resolution: {integrity: sha512-KtLMbmicyuK2Ak/FTCJVbDnkN1SlT8/kceFTiuDiiRUUSMnHMidxSCdG4ndkTOHHpoomWe/4xkvHkEOncwjYIw==}
|
320
|
-
engines: {node: '>=6.9.0'}
|
321
|
-
dependencies:
|
322
|
-
'@babel/types': 7.22.5
|
323
|
-
'@jridgewell/gen-mapping': 0.3.3
|
324
|
-
'@jridgewell/trace-mapping': 0.3.18
|
325
|
-
jsesc: 2.5.2
|
326
|
-
|
327
285
|
/@babel/generator@7.23.3:
|
328
286
|
resolution: {integrity: sha512-keeZWAV4LU3tW0qRi19HRpabC/ilM0HRBBzf9/k8FFiG4KVpiv0FIy4hHfLfFQZNhziCTPTmd59zoyv6DNISzg==}
|
329
287
|
engines: {node: '>=6.9.0'}
|
@@ -337,14 +295,14 @@ packages:
|
|
337
295
|
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
|
338
296
|
engines: {node: '>=6.9.0'}
|
339
297
|
dependencies:
|
340
|
-
'@babel/types': 7.
|
298
|
+
'@babel/types': 7.23.3
|
341
299
|
dev: true
|
342
300
|
|
343
301
|
/@babel/helper-builder-binary-assignment-operator-visitor@7.22.5:
|
344
302
|
resolution: {integrity: sha512-m1EP3lVOPptR+2DwD125gziZNcmoNSHGmJROKoy87loWUQyJaVXDgpmruWqDARZSmtYQ+Dl25okU8+qhVzuykw==}
|
345
303
|
engines: {node: '>=6.9.0'}
|
346
304
|
dependencies:
|
347
|
-
'@babel/types': 7.
|
305
|
+
'@babel/types': 7.23.3
|
348
306
|
dev: true
|
349
307
|
|
350
308
|
/@babel/helper-compilation-targets@7.22.15:
|
@@ -357,60 +315,47 @@ packages:
|
|
357
315
|
lru-cache: 5.1.1
|
358
316
|
semver: 6.3.1
|
359
317
|
|
360
|
-
/@babel/helper-
|
361
|
-
resolution: {integrity: sha512-7qYrNM6HjpnPHJbopxmb8hSPoZ0gsX8IvUS32JGVoy+pU9e5N0nLr1VjJoR6kA4d9dmGLxNYOjeB8sUDal2WMw==}
|
362
|
-
engines: {node: '>=6.9.0'}
|
363
|
-
peerDependencies:
|
364
|
-
'@babel/core': ^7.0.0
|
365
|
-
dependencies:
|
366
|
-
'@babel/compat-data': 7.22.9
|
367
|
-
'@babel/core': 7.22.9
|
368
|
-
'@babel/helper-validator-option': 7.22.5
|
369
|
-
browserslist: 4.21.10
|
370
|
-
lru-cache: 5.1.1
|
371
|
-
semver: 6.3.1
|
372
|
-
|
373
|
-
/@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.22.9):
|
318
|
+
/@babel/helper-create-class-features-plugin@7.22.9(@babel/core@7.23.3):
|
374
319
|
resolution: {integrity: sha512-Pwyi89uO4YrGKxL/eNJ8lfEH55DnRloGPOseaA8NFNL6jAUnn+KccaISiFazCj5IolPPDjGSdzQzXVzODVRqUQ==}
|
375
320
|
engines: {node: '>=6.9.0'}
|
376
321
|
peerDependencies:
|
377
322
|
'@babel/core': ^7.0.0
|
378
323
|
dependencies:
|
379
|
-
'@babel/core': 7.
|
324
|
+
'@babel/core': 7.23.3
|
380
325
|
'@babel/helper-annotate-as-pure': 7.22.5
|
381
|
-
'@babel/helper-environment-visitor': 7.22.
|
382
|
-
'@babel/helper-function-name': 7.
|
326
|
+
'@babel/helper-environment-visitor': 7.22.20
|
327
|
+
'@babel/helper-function-name': 7.23.0
|
383
328
|
'@babel/helper-member-expression-to-functions': 7.22.5
|
384
329
|
'@babel/helper-optimise-call-expression': 7.22.5
|
385
|
-
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.
|
330
|
+
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.3)
|
386
331
|
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
|
387
332
|
'@babel/helper-split-export-declaration': 7.22.6
|
388
333
|
semver: 6.3.1
|
389
334
|
dev: true
|
390
335
|
|
391
|
-
/@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.
|
336
|
+
/@babel/helper-create-regexp-features-plugin@7.22.9(@babel/core@7.23.3):
|
392
337
|
resolution: {integrity: sha512-+svjVa/tFwsNSG4NEy1h85+HQ5imbT92Q5/bgtS7P0GTQlP8WuFdqsiABmQouhiFGyV66oGxZFpeYHza1rNsKw==}
|
393
338
|
engines: {node: '>=6.9.0'}
|
394
339
|
peerDependencies:
|
395
340
|
'@babel/core': ^7.0.0
|
396
341
|
dependencies:
|
397
|
-
'@babel/core': 7.
|
342
|
+
'@babel/core': 7.23.3
|
398
343
|
'@babel/helper-annotate-as-pure': 7.22.5
|
399
344
|
regexpu-core: 5.3.2
|
400
345
|
semver: 6.3.1
|
401
346
|
dev: true
|
402
347
|
|
403
|
-
/@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.
|
348
|
+
/@babel/helper-define-polyfill-provider@0.4.2(@babel/core@7.23.3):
|
404
349
|
resolution: {integrity: sha512-k0qnnOqHn5dK9pZpfD5XXZ9SojAITdCKRn2Lp6rnDGzIbaP0rHyMPk/4wsSxVBVz4RfN0q6VpXWP2pDGIoQ7hw==}
|
405
350
|
peerDependencies:
|
406
351
|
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
407
352
|
dependencies:
|
408
|
-
'@babel/core': 7.
|
409
|
-
'@babel/helper-compilation-targets': 7.22.
|
353
|
+
'@babel/core': 7.23.3
|
354
|
+
'@babel/helper-compilation-targets': 7.22.15
|
410
355
|
'@babel/helper-plugin-utils': 7.22.5
|
411
356
|
debug: 4.3.4
|
412
357
|
lodash.debounce: 4.0.8
|
413
|
-
resolve: 1.22.
|
358
|
+
resolve: 1.22.8
|
414
359
|
transitivePeerDependencies:
|
415
360
|
- supports-color
|
416
361
|
dev: true
|
@@ -419,17 +364,6 @@ packages:
|
|
419
364
|
resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
|
420
365
|
engines: {node: '>=6.9.0'}
|
421
366
|
|
422
|
-
/@babel/helper-environment-visitor@7.22.5:
|
423
|
-
resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
|
424
|
-
engines: {node: '>=6.9.0'}
|
425
|
-
|
426
|
-
/@babel/helper-function-name@7.22.5:
|
427
|
-
resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
|
428
|
-
engines: {node: '>=6.9.0'}
|
429
|
-
dependencies:
|
430
|
-
'@babel/template': 7.22.5
|
431
|
-
'@babel/types': 7.22.5
|
432
|
-
|
433
367
|
/@babel/helper-function-name@7.23.0:
|
434
368
|
resolution: {integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==}
|
435
369
|
engines: {node: '>=6.9.0'}
|
@@ -441,13 +375,13 @@ packages:
|
|
441
375
|
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
|
442
376
|
engines: {node: '>=6.9.0'}
|
443
377
|
dependencies:
|
444
|
-
'@babel/types': 7.
|
378
|
+
'@babel/types': 7.23.3
|
445
379
|
|
446
380
|
/@babel/helper-member-expression-to-functions@7.22.5:
|
447
381
|
resolution: {integrity: sha512-aBiH1NKMG0H2cGZqspNvsaBe6wNGjbJjuLy29aU+eDZjSbbN53BaxlpB02xm9v34pLTZ1nIQPFYn2qMZoa5BQQ==}
|
448
382
|
engines: {node: '>=6.9.0'}
|
449
383
|
dependencies:
|
450
|
-
'@babel/types': 7.
|
384
|
+
'@babel/types': 7.23.3
|
451
385
|
dev: true
|
452
386
|
|
453
387
|
/@babel/helper-module-imports@7.22.15:
|
@@ -456,25 +390,6 @@ packages:
|
|
456
390
|
dependencies:
|
457
391
|
'@babel/types': 7.23.3
|
458
392
|
|
459
|
-
/@babel/helper-module-imports@7.22.5:
|
460
|
-
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
|
461
|
-
engines: {node: '>=6.9.0'}
|
462
|
-
dependencies:
|
463
|
-
'@babel/types': 7.22.5
|
464
|
-
|
465
|
-
/@babel/helper-module-transforms@7.22.9(@babel/core@7.22.9):
|
466
|
-
resolution: {integrity: sha512-t+WA2Xn5K+rTeGtC8jCsdAH52bjggG5TKRuRrAGNM/mjIbO4GxvlLMFOEz9wXY5I2XQ60PMFsAG2WIcG82dQMQ==}
|
467
|
-
engines: {node: '>=6.9.0'}
|
468
|
-
peerDependencies:
|
469
|
-
'@babel/core': ^7.0.0
|
470
|
-
dependencies:
|
471
|
-
'@babel/core': 7.22.9
|
472
|
-
'@babel/helper-environment-visitor': 7.22.5
|
473
|
-
'@babel/helper-module-imports': 7.22.5
|
474
|
-
'@babel/helper-simple-access': 7.22.5
|
475
|
-
'@babel/helper-split-export-declaration': 7.22.6
|
476
|
-
'@babel/helper-validator-identifier': 7.22.5
|
477
|
-
|
478
393
|
/@babel/helper-module-transforms@7.23.3(@babel/core@7.23.3):
|
479
394
|
resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
|
480
395
|
engines: {node: '>=6.9.0'}
|
@@ -492,7 +407,7 @@ packages:
|
|
492
407
|
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
|
493
408
|
engines: {node: '>=6.9.0'}
|
494
409
|
dependencies:
|
495
|
-
'@babel/types': 7.
|
410
|
+
'@babel/types': 7.23.3
|
496
411
|
dev: true
|
497
412
|
|
498
413
|
/@babel/helper-plugin-utils@7.22.5:
|
@@ -500,26 +415,26 @@ packages:
|
|
500
415
|
engines: {node: '>=6.9.0'}
|
501
416
|
dev: true
|
502
417
|
|
503
|
-
/@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.
|
418
|
+
/@babel/helper-remap-async-to-generator@7.22.9(@babel/core@7.23.3):
|
504
419
|
resolution: {integrity: sha512-8WWC4oR4Px+tr+Fp0X3RHDVfINGpF3ad1HIbrc8A77epiR6eMMc6jsgozkzT2uDiOOdoS9cLIQ+XD2XvI2WSmQ==}
|
505
420
|
engines: {node: '>=6.9.0'}
|
506
421
|
peerDependencies:
|
507
422
|
'@babel/core': ^7.0.0
|
508
423
|
dependencies:
|
509
|
-
'@babel/core': 7.
|
424
|
+
'@babel/core': 7.23.3
|
510
425
|
'@babel/helper-annotate-as-pure': 7.22.5
|
511
|
-
'@babel/helper-environment-visitor': 7.22.
|
426
|
+
'@babel/helper-environment-visitor': 7.22.20
|
512
427
|
'@babel/helper-wrap-function': 7.22.9
|
513
428
|
dev: true
|
514
429
|
|
515
|
-
/@babel/helper-replace-supers@7.22.9(@babel/core@7.
|
430
|
+
/@babel/helper-replace-supers@7.22.9(@babel/core@7.23.3):
|
516
431
|
resolution: {integrity: sha512-LJIKvvpgPOPUThdYqcX6IXRuIcTkcAub0IaDRGCZH0p5GPUp7PhRU9QVgFcDDd51BaPkk77ZjqFwh6DZTAEmGg==}
|
517
432
|
engines: {node: '>=6.9.0'}
|
518
433
|
peerDependencies:
|
519
434
|
'@babel/core': ^7.0.0
|
520
435
|
dependencies:
|
521
|
-
'@babel/core': 7.
|
522
|
-
'@babel/helper-environment-visitor': 7.22.
|
436
|
+
'@babel/core': 7.23.3
|
437
|
+
'@babel/helper-environment-visitor': 7.22.20
|
523
438
|
'@babel/helper-member-expression-to-functions': 7.22.5
|
524
439
|
'@babel/helper-optimise-call-expression': 7.22.5
|
525
440
|
dev: true
|
@@ -528,20 +443,20 @@ packages:
|
|
528
443
|
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
|
529
444
|
engines: {node: '>=6.9.0'}
|
530
445
|
dependencies:
|
531
|
-
'@babel/types': 7.
|
446
|
+
'@babel/types': 7.23.3
|
532
447
|
|
533
448
|
/@babel/helper-skip-transparent-expression-wrappers@7.22.5:
|
534
449
|
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
|
535
450
|
engines: {node: '>=6.9.0'}
|
536
451
|
dependencies:
|
537
|
-
'@babel/types': 7.
|
452
|
+
'@babel/types': 7.23.3
|
538
453
|
dev: true
|
539
454
|
|
540
455
|
/@babel/helper-split-export-declaration@7.22.6:
|
541
456
|
resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
|
542
457
|
engines: {node: '>=6.9.0'}
|
543
458
|
dependencies:
|
544
|
-
'@babel/types': 7.
|
459
|
+
'@babel/types': 7.23.3
|
545
460
|
|
546
461
|
/@babel/helper-string-parser@7.22.5:
|
547
462
|
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
|
@@ -551,37 +466,19 @@ packages:
|
|
551
466
|
resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
|
552
467
|
engines: {node: '>=6.9.0'}
|
553
468
|
|
554
|
-
/@babel/helper-validator-identifier@7.22.5:
|
555
|
-
resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
|
556
|
-
engines: {node: '>=6.9.0'}
|
557
|
-
|
558
469
|
/@babel/helper-validator-option@7.22.15:
|
559
470
|
resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
|
560
471
|
engines: {node: '>=6.9.0'}
|
561
472
|
|
562
|
-
/@babel/helper-validator-option@7.22.5:
|
563
|
-
resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
|
564
|
-
engines: {node: '>=6.9.0'}
|
565
|
-
|
566
473
|
/@babel/helper-wrap-function@7.22.9:
|
567
474
|
resolution: {integrity: sha512-sZ+QzfauuUEfxSEjKFmi3qDSHgLsTPK/pEpoD/qonZKOtTPTLbf59oabPQ4rKekt9lFcj/hTZaOhWwFYrgjk+Q==}
|
568
475
|
engines: {node: '>=6.9.0'}
|
569
476
|
dependencies:
|
570
|
-
'@babel/helper-function-name': 7.
|
571
|
-
'@babel/template': 7.22.
|
572
|
-
'@babel/types': 7.
|
477
|
+
'@babel/helper-function-name': 7.23.0
|
478
|
+
'@babel/template': 7.22.15
|
479
|
+
'@babel/types': 7.23.3
|
573
480
|
dev: true
|
574
481
|
|
575
|
-
/@babel/helpers@7.22.6:
|
576
|
-
resolution: {integrity: sha512-YjDs6y/fVOYFV8hAf1rxd1QvR9wJe1pDBZ2AREKq/SDayfPzgk0PBnVuTCE5X1acEpMMNOVUqoe+OwiZGJ+OaA==}
|
577
|
-
engines: {node: '>=6.9.0'}
|
578
|
-
dependencies:
|
579
|
-
'@babel/template': 7.22.5
|
580
|
-
'@babel/traverse': 7.22.8
|
581
|
-
'@babel/types': 7.22.5
|
582
|
-
transitivePeerDependencies:
|
583
|
-
- supports-color
|
584
|
-
|
585
482
|
/@babel/helpers@7.23.2:
|
586
483
|
resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==}
|
587
484
|
engines: {node: '>=6.9.0'}
|
@@ -600,21 +497,6 @@ packages:
|
|
600
497
|
chalk: 2.4.2
|
601
498
|
js-tokens: 4.0.0
|
602
499
|
|
603
|
-
/@babel/highlight@7.22.5:
|
604
|
-
resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
|
605
|
-
engines: {node: '>=6.9.0'}
|
606
|
-
dependencies:
|
607
|
-
'@babel/helper-validator-identifier': 7.22.5
|
608
|
-
chalk: 2.4.2
|
609
|
-
js-tokens: 4.0.0
|
610
|
-
|
611
|
-
/@babel/parser@7.22.7:
|
612
|
-
resolution: {integrity: sha512-7NF8pOkHP5o2vpmGgNGcfAeCvOYhGLyA3Z4eBQkT1RJlWu47n63bCs93QfJ2hIAFCil7L5P2IWhs1oToVgrL0Q==}
|
613
|
-
engines: {node: '>=6.0.0'}
|
614
|
-
hasBin: true
|
615
|
-
dependencies:
|
616
|
-
'@babel/types': 7.22.5
|
617
|
-
|
618
500
|
/@babel/parser@7.23.0:
|
619
501
|
resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==}
|
620
502
|
engines: {node: '>=6.0.0'}
|
@@ -629,54 +511,46 @@ packages:
|
|
629
511
|
dependencies:
|
630
512
|
'@babel/types': 7.23.3
|
631
513
|
|
632
|
-
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.
|
514
|
+
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.22.5(@babel/core@7.23.3):
|
633
515
|
resolution: {integrity: sha512-NP1M5Rf+u2Gw9qfSO4ihjcTGW5zXTi36ITLd4/EoAcEhIZ0yjMqmftDNl3QC19CX7olhrjpyU454g/2W7X0jvQ==}
|
634
516
|
engines: {node: '>=6.9.0'}
|
635
517
|
peerDependencies:
|
636
518
|
'@babel/core': ^7.0.0
|
637
519
|
dependencies:
|
638
|
-
'@babel/core': 7.
|
520
|
+
'@babel/core': 7.23.3
|
639
521
|
'@babel/helper-plugin-utils': 7.22.5
|
640
522
|
dev: true
|
641
523
|
|
642
|
-
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.
|
524
|
+
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.22.5(@babel/core@7.23.3):
|
643
525
|
resolution: {integrity: sha512-31Bb65aZaUwqCbWMnZPduIZxCBngHFlzyN6Dq6KAJjtx+lx6ohKHubc61OomYi7XwVD4Ol0XCVz4h+pYFR048g==}
|
644
526
|
engines: {node: '>=6.9.0'}
|
645
527
|
peerDependencies:
|
646
528
|
'@babel/core': ^7.13.0
|
647
529
|
dependencies:
|
648
|
-
'@babel/core': 7.
|
530
|
+
'@babel/core': 7.23.3
|
649
531
|
'@babel/helper-plugin-utils': 7.22.5
|
650
532
|
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
|
651
|
-
'@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.
|
533
|
+
'@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.23.3)
|
652
534
|
dev: true
|
653
535
|
|
654
|
-
/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.
|
536
|
+
/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3):
|
655
537
|
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
|
656
538
|
engines: {node: '>=6.9.0'}
|
657
539
|
peerDependencies:
|
658
540
|
'@babel/core': ^7.0.0-0
|
659
541
|
dependencies:
|
660
|
-
'@babel/core': 7.
|
542
|
+
'@babel/core': 7.23.3
|
661
543
|
dev: true
|
662
544
|
|
663
|
-
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.
|
545
|
+
/@babel/plugin-proposal-unicode-property-regex@7.18.6(@babel/core@7.23.3):
|
664
546
|
resolution: {integrity: sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==}
|
665
547
|
engines: {node: '>=4'}
|
548
|
+
deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-unicode-property-regex instead.
|
666
549
|
peerDependencies:
|
667
550
|
'@babel/core': ^7.0.0-0
|
668
551
|
dependencies:
|
669
|
-
'@babel/core': 7.
|
670
|
-
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.
|
671
|
-
'@babel/helper-plugin-utils': 7.22.5
|
672
|
-
dev: true
|
673
|
-
|
674
|
-
/@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.9):
|
675
|
-
resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
|
676
|
-
peerDependencies:
|
677
|
-
'@babel/core': ^7.0.0-0
|
678
|
-
dependencies:
|
679
|
-
'@babel/core': 7.22.9
|
552
|
+
'@babel/core': 7.23.3
|
553
|
+
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
|
680
554
|
'@babel/helper-plugin-utils': 7.22.5
|
681
555
|
dev: true
|
682
556
|
|
@@ -698,15 +572,6 @@ packages:
|
|
698
572
|
'@babel/helper-plugin-utils': 7.22.5
|
699
573
|
dev: true
|
700
574
|
|
701
|
-
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.9):
|
702
|
-
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
|
703
|
-
peerDependencies:
|
704
|
-
'@babel/core': ^7.0.0-0
|
705
|
-
dependencies:
|
706
|
-
'@babel/core': 7.22.9
|
707
|
-
'@babel/helper-plugin-utils': 7.22.5
|
708
|
-
dev: true
|
709
|
-
|
710
575
|
/@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.3):
|
711
576
|
resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
|
712
577
|
peerDependencies:
|
@@ -716,60 +581,51 @@ packages:
|
|
716
581
|
'@babel/helper-plugin-utils': 7.22.5
|
717
582
|
dev: true
|
718
583
|
|
719
|
-
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.
|
584
|
+
/@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.23.3):
|
720
585
|
resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
|
721
586
|
engines: {node: '>=6.9.0'}
|
722
587
|
peerDependencies:
|
723
588
|
'@babel/core': ^7.0.0-0
|
724
589
|
dependencies:
|
725
|
-
'@babel/core': 7.
|
590
|
+
'@babel/core': 7.23.3
|
726
591
|
'@babel/helper-plugin-utils': 7.22.5
|
727
592
|
dev: true
|
728
593
|
|
729
|
-
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.
|
594
|
+
/@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.23.3):
|
730
595
|
resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
|
731
596
|
peerDependencies:
|
732
597
|
'@babel/core': ^7.0.0-0
|
733
598
|
dependencies:
|
734
|
-
'@babel/core': 7.
|
599
|
+
'@babel/core': 7.23.3
|
735
600
|
'@babel/helper-plugin-utils': 7.22.5
|
736
601
|
dev: true
|
737
602
|
|
738
|
-
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.
|
603
|
+
/@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.23.3):
|
739
604
|
resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
|
740
605
|
peerDependencies:
|
741
606
|
'@babel/core': ^7.0.0-0
|
742
607
|
dependencies:
|
743
|
-
'@babel/core': 7.
|
608
|
+
'@babel/core': 7.23.3
|
744
609
|
'@babel/helper-plugin-utils': 7.22.5
|
745
610
|
dev: true
|
746
611
|
|
747
|
-
/@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.
|
612
|
+
/@babel/plugin-syntax-import-assertions@7.22.5(@babel/core@7.23.3):
|
748
613
|
resolution: {integrity: sha512-rdV97N7KqsRzeNGoWUOK6yUsWarLjE5Su/Snk9IYPU9CwkWHs4t+rTGOvffTR8XGkJMTAdLfO0xVnXm8wugIJg==}
|
749
614
|
engines: {node: '>=6.9.0'}
|
750
615
|
peerDependencies:
|
751
616
|
'@babel/core': ^7.0.0-0
|
752
617
|
dependencies:
|
753
|
-
'@babel/core': 7.
|
618
|
+
'@babel/core': 7.23.3
|
754
619
|
'@babel/helper-plugin-utils': 7.22.5
|
755
620
|
dev: true
|
756
621
|
|
757
|
-
/@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.
|
622
|
+
/@babel/plugin-syntax-import-attributes@7.22.5(@babel/core@7.23.3):
|
758
623
|
resolution: {integrity: sha512-KwvoWDeNKPETmozyFE0P2rOLqh39EoQHNjqizrI5B8Vt0ZNS7M56s7dAiAqbYfiAYOuIzIh96z3iR2ktgu3tEg==}
|
759
624
|
engines: {node: '>=6.9.0'}
|
760
625
|
peerDependencies:
|
761
626
|
'@babel/core': ^7.0.0-0
|
762
627
|
dependencies:
|
763
|
-
'@babel/core': 7.
|
764
|
-
'@babel/helper-plugin-utils': 7.22.5
|
765
|
-
dev: true
|
766
|
-
|
767
|
-
/@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.9):
|
768
|
-
resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
|
769
|
-
peerDependencies:
|
770
|
-
'@babel/core': ^7.0.0-0
|
771
|
-
dependencies:
|
772
|
-
'@babel/core': 7.22.9
|
628
|
+
'@babel/core': 7.23.3
|
773
629
|
'@babel/helper-plugin-utils': 7.22.5
|
774
630
|
dev: true
|
775
631
|
|
@@ -782,15 +638,6 @@ packages:
|
|
782
638
|
'@babel/helper-plugin-utils': 7.22.5
|
783
639
|
dev: true
|
784
640
|
|
785
|
-
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.9):
|
786
|
-
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
|
787
|
-
peerDependencies:
|
788
|
-
'@babel/core': ^7.0.0-0
|
789
|
-
dependencies:
|
790
|
-
'@babel/core': 7.22.9
|
791
|
-
'@babel/helper-plugin-utils': 7.22.5
|
792
|
-
dev: true
|
793
|
-
|
794
641
|
/@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.3):
|
795
642
|
resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
|
796
643
|
peerDependencies:
|
@@ -800,22 +647,13 @@ packages:
|
|
800
647
|
'@babel/helper-plugin-utils': 7.22.5
|
801
648
|
dev: true
|
802
649
|
|
803
|
-
/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.
|
650
|
+
/@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.3):
|
804
651
|
resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
|
805
652
|
engines: {node: '>=6.9.0'}
|
806
653
|
peerDependencies:
|
807
654
|
'@babel/core': ^7.0.0-0
|
808
655
|
dependencies:
|
809
|
-
'@babel/core': 7.
|
810
|
-
'@babel/helper-plugin-utils': 7.22.5
|
811
|
-
dev: true
|
812
|
-
|
813
|
-
/@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.9):
|
814
|
-
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
|
815
|
-
peerDependencies:
|
816
|
-
'@babel/core': ^7.0.0-0
|
817
|
-
dependencies:
|
818
|
-
'@babel/core': 7.22.9
|
656
|
+
'@babel/core': 7.23.3
|
819
657
|
'@babel/helper-plugin-utils': 7.22.5
|
820
658
|
dev: true
|
821
659
|
|
@@ -828,15 +666,6 @@ packages:
|
|
828
666
|
'@babel/helper-plugin-utils': 7.22.5
|
829
667
|
dev: true
|
830
668
|
|
831
|
-
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.9):
|
832
|
-
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
|
833
|
-
peerDependencies:
|
834
|
-
'@babel/core': ^7.0.0-0
|
835
|
-
dependencies:
|
836
|
-
'@babel/core': 7.22.9
|
837
|
-
'@babel/helper-plugin-utils': 7.22.5
|
838
|
-
dev: true
|
839
|
-
|
840
669
|
/@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.3):
|
841
670
|
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
|
842
671
|
peerDependencies:
|
@@ -846,15 +675,6 @@ packages:
|
|
846
675
|
'@babel/helper-plugin-utils': 7.22.5
|
847
676
|
dev: true
|
848
677
|
|
849
|
-
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.9):
|
850
|
-
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
|
851
|
-
peerDependencies:
|
852
|
-
'@babel/core': ^7.0.0-0
|
853
|
-
dependencies:
|
854
|
-
'@babel/core': 7.22.9
|
855
|
-
'@babel/helper-plugin-utils': 7.22.5
|
856
|
-
dev: true
|
857
|
-
|
858
678
|
/@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.3):
|
859
679
|
resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
|
860
680
|
peerDependencies:
|
@@ -864,15 +684,6 @@ packages:
|
|
864
684
|
'@babel/helper-plugin-utils': 7.22.5
|
865
685
|
dev: true
|
866
686
|
|
867
|
-
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.9):
|
868
|
-
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
|
869
|
-
peerDependencies:
|
870
|
-
'@babel/core': ^7.0.0-0
|
871
|
-
dependencies:
|
872
|
-
'@babel/core': 7.22.9
|
873
|
-
'@babel/helper-plugin-utils': 7.22.5
|
874
|
-
dev: true
|
875
|
-
|
876
687
|
/@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.3):
|
877
688
|
resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
|
878
689
|
peerDependencies:
|
@@ -882,15 +693,6 @@ packages:
|
|
882
693
|
'@babel/helper-plugin-utils': 7.22.5
|
883
694
|
dev: true
|
884
695
|
|
885
|
-
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.9):
|
886
|
-
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
|
887
|
-
peerDependencies:
|
888
|
-
'@babel/core': ^7.0.0-0
|
889
|
-
dependencies:
|
890
|
-
'@babel/core': 7.22.9
|
891
|
-
'@babel/helper-plugin-utils': 7.22.5
|
892
|
-
dev: true
|
893
|
-
|
894
696
|
/@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.3):
|
895
697
|
resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
|
896
698
|
peerDependencies:
|
@@ -900,15 +702,6 @@ packages:
|
|
900
702
|
'@babel/helper-plugin-utils': 7.22.5
|
901
703
|
dev: true
|
902
704
|
|
903
|
-
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.9):
|
904
|
-
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
|
905
|
-
peerDependencies:
|
906
|
-
'@babel/core': ^7.0.0-0
|
907
|
-
dependencies:
|
908
|
-
'@babel/core': 7.22.9
|
909
|
-
'@babel/helper-plugin-utils': 7.22.5
|
910
|
-
dev: true
|
911
|
-
|
912
705
|
/@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.3):
|
913
706
|
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
|
914
707
|
peerDependencies:
|
@@ -918,23 +711,13 @@ packages:
|
|
918
711
|
'@babel/helper-plugin-utils': 7.22.5
|
919
712
|
dev: true
|
920
713
|
|
921
|
-
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.
|
714
|
+
/@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.23.3):
|
922
715
|
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
|
923
716
|
engines: {node: '>=6.9.0'}
|
924
717
|
peerDependencies:
|
925
718
|
'@babel/core': ^7.0.0-0
|
926
719
|
dependencies:
|
927
|
-
'@babel/core': 7.
|
928
|
-
'@babel/helper-plugin-utils': 7.22.5
|
929
|
-
dev: true
|
930
|
-
|
931
|
-
/@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.9):
|
932
|
-
resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
|
933
|
-
engines: {node: '>=6.9.0'}
|
934
|
-
peerDependencies:
|
935
|
-
'@babel/core': ^7.0.0-0
|
936
|
-
dependencies:
|
937
|
-
'@babel/core': 7.22.9
|
720
|
+
'@babel/core': 7.23.3
|
938
721
|
'@babel/helper-plugin-utils': 7.22.5
|
939
722
|
dev: true
|
940
723
|
|
@@ -948,16 +731,6 @@ packages:
|
|
948
731
|
'@babel/helper-plugin-utils': 7.22.5
|
949
732
|
dev: true
|
950
733
|
|
951
|
-
/@babel/plugin-syntax-typescript@7.22.5(@babel/core@7.22.9):
|
952
|
-
resolution: {integrity: sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==}
|
953
|
-
engines: {node: '>=6.9.0'}
|
954
|
-
peerDependencies:
|
955
|
-
'@babel/core': ^7.0.0-0
|
956
|
-
dependencies:
|
957
|
-
'@babel/core': 7.22.9
|
958
|
-
'@babel/helper-plugin-utils': 7.22.5
|
959
|
-
dev: true
|
960
|
-
|
961
734
|
/@babel/plugin-syntax-typescript@7.23.3(@babel/core@7.23.3):
|
962
735
|
resolution: {integrity: sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==}
|
963
736
|
engines: {node: '>=6.9.0'}
|
@@ -968,663 +741,663 @@ packages:
|
|
968
741
|
'@babel/helper-plugin-utils': 7.22.5
|
969
742
|
dev: true
|
970
743
|
|
971
|
-
/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.
|
744
|
+
/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.23.3):
|
972
745
|
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
|
973
746
|
engines: {node: '>=6.9.0'}
|
974
747
|
peerDependencies:
|
975
748
|
'@babel/core': ^7.0.0
|
976
749
|
dependencies:
|
977
|
-
'@babel/core': 7.
|
978
|
-
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.
|
750
|
+
'@babel/core': 7.23.3
|
751
|
+
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
|
979
752
|
'@babel/helper-plugin-utils': 7.22.5
|
980
753
|
dev: true
|
981
754
|
|
982
|
-
/@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.
|
755
|
+
/@babel/plugin-transform-arrow-functions@7.22.5(@babel/core@7.23.3):
|
983
756
|
resolution: {integrity: sha512-26lTNXoVRdAnsaDXPpvCNUq+OVWEVC6bx7Vvz9rC53F2bagUWW4u4ii2+h8Fejfh7RYqPxn+libeFBBck9muEw==}
|
984
757
|
engines: {node: '>=6.9.0'}
|
985
758
|
peerDependencies:
|
986
759
|
'@babel/core': ^7.0.0-0
|
987
760
|
dependencies:
|
988
|
-
'@babel/core': 7.
|
761
|
+
'@babel/core': 7.23.3
|
989
762
|
'@babel/helper-plugin-utils': 7.22.5
|
990
763
|
dev: true
|
991
764
|
|
992
|
-
/@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.
|
765
|
+
/@babel/plugin-transform-async-generator-functions@7.22.7(@babel/core@7.23.3):
|
993
766
|
resolution: {integrity: sha512-7HmE7pk/Fmke45TODvxvkxRMV9RazV+ZZzhOL9AG8G29TLrr3jkjwF7uJfxZ30EoXpO+LJkq4oA8NjO2DTnEDg==}
|
994
767
|
engines: {node: '>=6.9.0'}
|
995
768
|
peerDependencies:
|
996
769
|
'@babel/core': ^7.0.0-0
|
997
770
|
dependencies:
|
998
|
-
'@babel/core': 7.
|
999
|
-
'@babel/helper-environment-visitor': 7.22.
|
771
|
+
'@babel/core': 7.23.3
|
772
|
+
'@babel/helper-environment-visitor': 7.22.20
|
1000
773
|
'@babel/helper-plugin-utils': 7.22.5
|
1001
|
-
'@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.
|
1002
|
-
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.
|
774
|
+
'@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.23.3)
|
775
|
+
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3)
|
1003
776
|
dev: true
|
1004
777
|
|
1005
|
-
/@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.
|
778
|
+
/@babel/plugin-transform-async-to-generator@7.22.5(@babel/core@7.23.3):
|
1006
779
|
resolution: {integrity: sha512-b1A8D8ZzE/VhNDoV1MSJTnpKkCG5bJo+19R4o4oy03zM7ws8yEMK755j61Dc3EyvdysbqH5BOOTquJ7ZX9C6vQ==}
|
1007
780
|
engines: {node: '>=6.9.0'}
|
1008
781
|
peerDependencies:
|
1009
782
|
'@babel/core': ^7.0.0-0
|
1010
783
|
dependencies:
|
1011
|
-
'@babel/core': 7.
|
1012
|
-
'@babel/helper-module-imports': 7.22.
|
784
|
+
'@babel/core': 7.23.3
|
785
|
+
'@babel/helper-module-imports': 7.22.15
|
1013
786
|
'@babel/helper-plugin-utils': 7.22.5
|
1014
|
-
'@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.
|
787
|
+
'@babel/helper-remap-async-to-generator': 7.22.9(@babel/core@7.23.3)
|
1015
788
|
dev: true
|
1016
789
|
|
1017
|
-
/@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.
|
790
|
+
/@babel/plugin-transform-block-scoped-functions@7.22.5(@babel/core@7.23.3):
|
1018
791
|
resolution: {integrity: sha512-tdXZ2UdknEKQWKJP1KMNmuF5Lx3MymtMN/pvA+p/VEkhK8jVcQ1fzSy8KM9qRYhAf2/lV33hoMPKI/xaI9sADA==}
|
1019
792
|
engines: {node: '>=6.9.0'}
|
1020
793
|
peerDependencies:
|
1021
794
|
'@babel/core': ^7.0.0-0
|
1022
795
|
dependencies:
|
1023
|
-
'@babel/core': 7.
|
796
|
+
'@babel/core': 7.23.3
|
1024
797
|
'@babel/helper-plugin-utils': 7.22.5
|
1025
798
|
dev: true
|
1026
799
|
|
1027
|
-
/@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.
|
800
|
+
/@babel/plugin-transform-block-scoping@7.22.5(@babel/core@7.23.3):
|
1028
801
|
resolution: {integrity: sha512-EcACl1i5fSQ6bt+YGuU/XGCeZKStLmyVGytWkpyhCLeQVA0eu6Wtiw92V+I1T/hnezUv7j74dA/Ro69gWcU+hg==}
|
1029
802
|
engines: {node: '>=6.9.0'}
|
1030
803
|
peerDependencies:
|
1031
804
|
'@babel/core': ^7.0.0-0
|
1032
805
|
dependencies:
|
1033
|
-
'@babel/core': 7.
|
806
|
+
'@babel/core': 7.23.3
|
1034
807
|
'@babel/helper-plugin-utils': 7.22.5
|
1035
808
|
dev: true
|
1036
809
|
|
1037
|
-
/@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.
|
810
|
+
/@babel/plugin-transform-class-properties@7.22.5(@babel/core@7.23.3):
|
1038
811
|
resolution: {integrity: sha512-nDkQ0NfkOhPTq8YCLiWNxp1+f9fCobEjCb0n8WdbNUBc4IB5V7P1QnX9IjpSoquKrXF5SKojHleVNs2vGeHCHQ==}
|
1039
812
|
engines: {node: '>=6.9.0'}
|
1040
813
|
peerDependencies:
|
1041
814
|
'@babel/core': ^7.0.0-0
|
1042
815
|
dependencies:
|
1043
|
-
'@babel/core': 7.
|
1044
|
-
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.
|
816
|
+
'@babel/core': 7.23.3
|
817
|
+
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1045
818
|
'@babel/helper-plugin-utils': 7.22.5
|
1046
819
|
dev: true
|
1047
820
|
|
1048
|
-
/@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.
|
821
|
+
/@babel/plugin-transform-class-static-block@7.22.5(@babel/core@7.23.3):
|
1049
822
|
resolution: {integrity: sha512-SPToJ5eYZLxlnp1UzdARpOGeC2GbHvr9d/UV0EukuVx8atktg194oe+C5BqQ8jRTkgLRVOPYeXRSBg1IlMoVRA==}
|
1050
823
|
engines: {node: '>=6.9.0'}
|
1051
824
|
peerDependencies:
|
1052
825
|
'@babel/core': ^7.12.0
|
1053
826
|
dependencies:
|
1054
|
-
'@babel/core': 7.
|
1055
|
-
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.
|
827
|
+
'@babel/core': 7.23.3
|
828
|
+
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1056
829
|
'@babel/helper-plugin-utils': 7.22.5
|
1057
|
-
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.
|
830
|
+
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3)
|
1058
831
|
dev: true
|
1059
832
|
|
1060
|
-
/@babel/plugin-transform-classes@7.22.6(@babel/core@7.
|
833
|
+
/@babel/plugin-transform-classes@7.22.6(@babel/core@7.23.3):
|
1061
834
|
resolution: {integrity: sha512-58EgM6nuPNG6Py4Z3zSuu0xWu2VfodiMi72Jt5Kj2FECmaYk1RrTXA45z6KBFsu9tRgwQDwIiY4FXTt+YsSFAQ==}
|
1062
835
|
engines: {node: '>=6.9.0'}
|
1063
836
|
peerDependencies:
|
1064
837
|
'@babel/core': ^7.0.0-0
|
1065
838
|
dependencies:
|
1066
|
-
'@babel/core': 7.
|
839
|
+
'@babel/core': 7.23.3
|
1067
840
|
'@babel/helper-annotate-as-pure': 7.22.5
|
1068
|
-
'@babel/helper-compilation-targets': 7.22.
|
1069
|
-
'@babel/helper-environment-visitor': 7.22.
|
1070
|
-
'@babel/helper-function-name': 7.
|
841
|
+
'@babel/helper-compilation-targets': 7.22.15
|
842
|
+
'@babel/helper-environment-visitor': 7.22.20
|
843
|
+
'@babel/helper-function-name': 7.23.0
|
1071
844
|
'@babel/helper-optimise-call-expression': 7.22.5
|
1072
845
|
'@babel/helper-plugin-utils': 7.22.5
|
1073
|
-
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.
|
846
|
+
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.3)
|
1074
847
|
'@babel/helper-split-export-declaration': 7.22.6
|
1075
848
|
globals: 11.12.0
|
1076
849
|
dev: true
|
1077
850
|
|
1078
|
-
/@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.
|
851
|
+
/@babel/plugin-transform-computed-properties@7.22.5(@babel/core@7.23.3):
|
1079
852
|
resolution: {integrity: sha512-4GHWBgRf0krxPX+AaPtgBAlTgTeZmqDynokHOX7aqqAB4tHs3U2Y02zH6ETFdLZGcg9UQSD1WCmkVrE9ErHeOg==}
|
1080
853
|
engines: {node: '>=6.9.0'}
|
1081
854
|
peerDependencies:
|
1082
855
|
'@babel/core': ^7.0.0-0
|
1083
856
|
dependencies:
|
1084
|
-
'@babel/core': 7.
|
857
|
+
'@babel/core': 7.23.3
|
1085
858
|
'@babel/helper-plugin-utils': 7.22.5
|
1086
|
-
'@babel/template': 7.22.
|
859
|
+
'@babel/template': 7.22.15
|
1087
860
|
dev: true
|
1088
861
|
|
1089
|
-
/@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.
|
862
|
+
/@babel/plugin-transform-destructuring@7.22.5(@babel/core@7.23.3):
|
1090
863
|
resolution: {integrity: sha512-GfqcFuGW8vnEqTUBM7UtPd5A4q797LTvvwKxXTgRsFjoqaJiEg9deBG6kWeQYkVEL569NpnmpC0Pkr/8BLKGnQ==}
|
1091
864
|
engines: {node: '>=6.9.0'}
|
1092
865
|
peerDependencies:
|
1093
866
|
'@babel/core': ^7.0.0-0
|
1094
867
|
dependencies:
|
1095
|
-
'@babel/core': 7.
|
868
|
+
'@babel/core': 7.23.3
|
1096
869
|
'@babel/helper-plugin-utils': 7.22.5
|
1097
870
|
dev: true
|
1098
871
|
|
1099
|
-
/@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.
|
872
|
+
/@babel/plugin-transform-dotall-regex@7.22.5(@babel/core@7.23.3):
|
1100
873
|
resolution: {integrity: sha512-5/Yk9QxCQCl+sOIB1WelKnVRxTJDSAIxtJLL2/pqL14ZVlbH0fUQUZa/T5/UnQtBNgghR7mfB8ERBKyKPCi7Vw==}
|
1101
874
|
engines: {node: '>=6.9.0'}
|
1102
875
|
peerDependencies:
|
1103
876
|
'@babel/core': ^7.0.0-0
|
1104
877
|
dependencies:
|
1105
|
-
'@babel/core': 7.
|
1106
|
-
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.
|
878
|
+
'@babel/core': 7.23.3
|
879
|
+
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1107
880
|
'@babel/helper-plugin-utils': 7.22.5
|
1108
881
|
dev: true
|
1109
882
|
|
1110
|
-
/@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.
|
883
|
+
/@babel/plugin-transform-duplicate-keys@7.22.5(@babel/core@7.23.3):
|
1111
884
|
resolution: {integrity: sha512-dEnYD+9BBgld5VBXHnF/DbYGp3fqGMsyxKbtD1mDyIA7AkTSpKXFhCVuj/oQVOoALfBs77DudA0BE4d5mcpmqw==}
|
1112
885
|
engines: {node: '>=6.9.0'}
|
1113
886
|
peerDependencies:
|
1114
887
|
'@babel/core': ^7.0.0-0
|
1115
888
|
dependencies:
|
1116
|
-
'@babel/core': 7.
|
889
|
+
'@babel/core': 7.23.3
|
1117
890
|
'@babel/helper-plugin-utils': 7.22.5
|
1118
891
|
dev: true
|
1119
892
|
|
1120
|
-
/@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.
|
893
|
+
/@babel/plugin-transform-dynamic-import@7.22.5(@babel/core@7.23.3):
|
1121
894
|
resolution: {integrity: sha512-0MC3ppTB1AMxd8fXjSrbPa7LT9hrImt+/fcj+Pg5YMD7UQyWp/02+JWpdnCymmsXwIx5Z+sYn1bwCn4ZJNvhqQ==}
|
1122
895
|
engines: {node: '>=6.9.0'}
|
1123
896
|
peerDependencies:
|
1124
897
|
'@babel/core': ^7.0.0-0
|
1125
898
|
dependencies:
|
1126
|
-
'@babel/core': 7.
|
899
|
+
'@babel/core': 7.23.3
|
1127
900
|
'@babel/helper-plugin-utils': 7.22.5
|
1128
|
-
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.
|
901
|
+
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
|
1129
902
|
dev: true
|
1130
903
|
|
1131
|
-
/@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.
|
904
|
+
/@babel/plugin-transform-exponentiation-operator@7.22.5(@babel/core@7.23.3):
|
1132
905
|
resolution: {integrity: sha512-vIpJFNM/FjZ4rh1myqIya9jXwrwwgFRHPjT3DkUA9ZLHuzox8jiXkOLvwm1H+PQIP3CqfC++WPKeuDi0Sjdj1g==}
|
1133
906
|
engines: {node: '>=6.9.0'}
|
1134
907
|
peerDependencies:
|
1135
908
|
'@babel/core': ^7.0.0-0
|
1136
909
|
dependencies:
|
1137
|
-
'@babel/core': 7.
|
910
|
+
'@babel/core': 7.23.3
|
1138
911
|
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.5
|
1139
912
|
'@babel/helper-plugin-utils': 7.22.5
|
1140
913
|
dev: true
|
1141
914
|
|
1142
|
-
/@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.
|
915
|
+
/@babel/plugin-transform-export-namespace-from@7.22.5(@babel/core@7.23.3):
|
1143
916
|
resolution: {integrity: sha512-X4hhm7FRnPgd4nDA4b/5V280xCx6oL7Oob5+9qVS5C13Zq4bh1qq7LU0GgRU6b5dBWBvhGaXYVB4AcN6+ol6vg==}
|
1144
917
|
engines: {node: '>=6.9.0'}
|
1145
918
|
peerDependencies:
|
1146
919
|
'@babel/core': ^7.0.0-0
|
1147
920
|
dependencies:
|
1148
|
-
'@babel/core': 7.
|
921
|
+
'@babel/core': 7.23.3
|
1149
922
|
'@babel/helper-plugin-utils': 7.22.5
|
1150
|
-
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.
|
923
|
+
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3)
|
1151
924
|
dev: true
|
1152
925
|
|
1153
|
-
/@babel/plugin-transform-for-of@7.22.5(@babel/core@7.
|
926
|
+
/@babel/plugin-transform-for-of@7.22.5(@babel/core@7.23.3):
|
1154
927
|
resolution: {integrity: sha512-3kxQjX1dU9uudwSshyLeEipvrLjBCVthCgeTp6CzE/9JYrlAIaeekVxRpCWsDDfYTfRZRoCeZatCQvwo+wvK8A==}
|
1155
928
|
engines: {node: '>=6.9.0'}
|
1156
929
|
peerDependencies:
|
1157
930
|
'@babel/core': ^7.0.0-0
|
1158
931
|
dependencies:
|
1159
|
-
'@babel/core': 7.
|
932
|
+
'@babel/core': 7.23.3
|
1160
933
|
'@babel/helper-plugin-utils': 7.22.5
|
1161
934
|
dev: true
|
1162
935
|
|
1163
|
-
/@babel/plugin-transform-function-name@7.22.5(@babel/core@7.
|
936
|
+
/@babel/plugin-transform-function-name@7.22.5(@babel/core@7.23.3):
|
1164
937
|
resolution: {integrity: sha512-UIzQNMS0p0HHiQm3oelztj+ECwFnj+ZRV4KnguvlsD2of1whUeM6o7wGNj6oLwcDoAXQ8gEqfgC24D+VdIcevg==}
|
1165
938
|
engines: {node: '>=6.9.0'}
|
1166
939
|
peerDependencies:
|
1167
940
|
'@babel/core': ^7.0.0-0
|
1168
941
|
dependencies:
|
1169
|
-
'@babel/core': 7.
|
1170
|
-
'@babel/helper-compilation-targets': 7.22.
|
1171
|
-
'@babel/helper-function-name': 7.
|
942
|
+
'@babel/core': 7.23.3
|
943
|
+
'@babel/helper-compilation-targets': 7.22.15
|
944
|
+
'@babel/helper-function-name': 7.23.0
|
1172
945
|
'@babel/helper-plugin-utils': 7.22.5
|
1173
946
|
dev: true
|
1174
947
|
|
1175
|
-
/@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.
|
948
|
+
/@babel/plugin-transform-json-strings@7.22.5(@babel/core@7.23.3):
|
1176
949
|
resolution: {integrity: sha512-DuCRB7fu8MyTLbEQd1ew3R85nx/88yMoqo2uPSjevMj3yoN7CDM8jkgrY0wmVxfJZyJ/B9fE1iq7EQppWQmR5A==}
|
1177
950
|
engines: {node: '>=6.9.0'}
|
1178
951
|
peerDependencies:
|
1179
952
|
'@babel/core': ^7.0.0-0
|
1180
953
|
dependencies:
|
1181
|
-
'@babel/core': 7.
|
954
|
+
'@babel/core': 7.23.3
|
1182
955
|
'@babel/helper-plugin-utils': 7.22.5
|
1183
|
-
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.
|
956
|
+
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3)
|
1184
957
|
dev: true
|
1185
958
|
|
1186
|
-
/@babel/plugin-transform-literals@7.22.5(@babel/core@7.
|
959
|
+
/@babel/plugin-transform-literals@7.22.5(@babel/core@7.23.3):
|
1187
960
|
resolution: {integrity: sha512-fTLj4D79M+mepcw3dgFBTIDYpbcB9Sm0bpm4ppXPaO+U+PKFFyV9MGRvS0gvGw62sd10kT5lRMKXAADb9pWy8g==}
|
1188
961
|
engines: {node: '>=6.9.0'}
|
1189
962
|
peerDependencies:
|
1190
963
|
'@babel/core': ^7.0.0-0
|
1191
964
|
dependencies:
|
1192
|
-
'@babel/core': 7.
|
965
|
+
'@babel/core': 7.23.3
|
1193
966
|
'@babel/helper-plugin-utils': 7.22.5
|
1194
967
|
dev: true
|
1195
968
|
|
1196
|
-
/@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.
|
969
|
+
/@babel/plugin-transform-logical-assignment-operators@7.22.5(@babel/core@7.23.3):
|
1197
970
|
resolution: {integrity: sha512-MQQOUW1KL8X0cDWfbwYP+TbVbZm16QmQXJQ+vndPtH/BoO0lOKpVoEDMI7+PskYxH+IiE0tS8xZye0qr1lGzSA==}
|
1198
971
|
engines: {node: '>=6.9.0'}
|
1199
972
|
peerDependencies:
|
1200
973
|
'@babel/core': ^7.0.0-0
|
1201
974
|
dependencies:
|
1202
|
-
'@babel/core': 7.
|
975
|
+
'@babel/core': 7.23.3
|
1203
976
|
'@babel/helper-plugin-utils': 7.22.5
|
1204
|
-
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.
|
977
|
+
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3)
|
1205
978
|
dev: true
|
1206
979
|
|
1207
|
-
/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.
|
980
|
+
/@babel/plugin-transform-member-expression-literals@7.22.5(@babel/core@7.23.3):
|
1208
981
|
resolution: {integrity: sha512-RZEdkNtzzYCFl9SE9ATaUMTj2hqMb4StarOJLrZRbqqU4HSBE7UlBw9WBWQiDzrJZJdUWiMTVDI6Gv/8DPvfew==}
|
1209
982
|
engines: {node: '>=6.9.0'}
|
1210
983
|
peerDependencies:
|
1211
984
|
'@babel/core': ^7.0.0-0
|
1212
985
|
dependencies:
|
1213
|
-
'@babel/core': 7.
|
986
|
+
'@babel/core': 7.23.3
|
1214
987
|
'@babel/helper-plugin-utils': 7.22.5
|
1215
988
|
dev: true
|
1216
989
|
|
1217
|
-
/@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.
|
990
|
+
/@babel/plugin-transform-modules-amd@7.22.5(@babel/core@7.23.3):
|
1218
991
|
resolution: {integrity: sha512-R+PTfLTcYEmb1+kK7FNkhQ1gP4KgjpSO6HfH9+f8/yfp2Nt3ggBjiVpRwmwTlfqZLafYKJACy36yDXlEmI9HjQ==}
|
1219
992
|
engines: {node: '>=6.9.0'}
|
1220
993
|
peerDependencies:
|
1221
994
|
'@babel/core': ^7.0.0-0
|
1222
995
|
dependencies:
|
1223
|
-
'@babel/core': 7.
|
1224
|
-
'@babel/helper-module-transforms': 7.
|
996
|
+
'@babel/core': 7.23.3
|
997
|
+
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
|
1225
998
|
'@babel/helper-plugin-utils': 7.22.5
|
1226
999
|
dev: true
|
1227
1000
|
|
1228
|
-
/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.
|
1001
|
+
/@babel/plugin-transform-modules-commonjs@7.22.5(@babel/core@7.23.3):
|
1229
1002
|
resolution: {integrity: sha512-B4pzOXj+ONRmuaQTg05b3y/4DuFz3WcCNAXPLb2Q0GT0TrGKGxNKV4jwsXts+StaM0LQczZbOpj8o1DLPDJIiA==}
|
1230
1003
|
engines: {node: '>=6.9.0'}
|
1231
1004
|
peerDependencies:
|
1232
1005
|
'@babel/core': ^7.0.0-0
|
1233
1006
|
dependencies:
|
1234
|
-
'@babel/core': 7.
|
1235
|
-
'@babel/helper-module-transforms': 7.
|
1007
|
+
'@babel/core': 7.23.3
|
1008
|
+
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
|
1236
1009
|
'@babel/helper-plugin-utils': 7.22.5
|
1237
1010
|
'@babel/helper-simple-access': 7.22.5
|
1238
1011
|
dev: true
|
1239
1012
|
|
1240
|
-
/@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.
|
1013
|
+
/@babel/plugin-transform-modules-systemjs@7.22.5(@babel/core@7.23.3):
|
1241
1014
|
resolution: {integrity: sha512-emtEpoaTMsOs6Tzz+nbmcePl6AKVtS1yC4YNAeMun9U8YCsgadPNxnOPQ8GhHFB2qdx+LZu9LgoC0Lthuu05DQ==}
|
1242
1015
|
engines: {node: '>=6.9.0'}
|
1243
1016
|
peerDependencies:
|
1244
1017
|
'@babel/core': ^7.0.0-0
|
1245
1018
|
dependencies:
|
1246
|
-
'@babel/core': 7.
|
1019
|
+
'@babel/core': 7.23.3
|
1247
1020
|
'@babel/helper-hoist-variables': 7.22.5
|
1248
|
-
'@babel/helper-module-transforms': 7.
|
1021
|
+
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
|
1249
1022
|
'@babel/helper-plugin-utils': 7.22.5
|
1250
|
-
'@babel/helper-validator-identifier': 7.22.
|
1023
|
+
'@babel/helper-validator-identifier': 7.22.20
|
1251
1024
|
dev: true
|
1252
1025
|
|
1253
|
-
/@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.
|
1026
|
+
/@babel/plugin-transform-modules-umd@7.22.5(@babel/core@7.23.3):
|
1254
1027
|
resolution: {integrity: sha512-+S6kzefN/E1vkSsKx8kmQuqeQsvCKCd1fraCM7zXm4SFoggI099Tr4G8U81+5gtMdUeMQ4ipdQffbKLX0/7dBQ==}
|
1255
1028
|
engines: {node: '>=6.9.0'}
|
1256
1029
|
peerDependencies:
|
1257
1030
|
'@babel/core': ^7.0.0-0
|
1258
1031
|
dependencies:
|
1259
|
-
'@babel/core': 7.
|
1260
|
-
'@babel/helper-module-transforms': 7.
|
1032
|
+
'@babel/core': 7.23.3
|
1033
|
+
'@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.3)
|
1261
1034
|
'@babel/helper-plugin-utils': 7.22.5
|
1262
1035
|
dev: true
|
1263
1036
|
|
1264
|
-
/@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.
|
1037
|
+
/@babel/plugin-transform-named-capturing-groups-regex@7.22.5(@babel/core@7.23.3):
|
1265
1038
|
resolution: {integrity: sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==}
|
1266
1039
|
engines: {node: '>=6.9.0'}
|
1267
1040
|
peerDependencies:
|
1268
1041
|
'@babel/core': ^7.0.0
|
1269
1042
|
dependencies:
|
1270
|
-
'@babel/core': 7.
|
1271
|
-
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.
|
1043
|
+
'@babel/core': 7.23.3
|
1044
|
+
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1272
1045
|
'@babel/helper-plugin-utils': 7.22.5
|
1273
1046
|
dev: true
|
1274
1047
|
|
1275
|
-
/@babel/plugin-transform-new-target@7.22.5(@babel/core@7.
|
1048
|
+
/@babel/plugin-transform-new-target@7.22.5(@babel/core@7.23.3):
|
1276
1049
|
resolution: {integrity: sha512-AsF7K0Fx/cNKVyk3a+DW0JLo+Ua598/NxMRvxDnkpCIGFh43+h/v2xyhRUYf6oD8gE4QtL83C7zZVghMjHd+iw==}
|
1277
1050
|
engines: {node: '>=6.9.0'}
|
1278
1051
|
peerDependencies:
|
1279
1052
|
'@babel/core': ^7.0.0-0
|
1280
1053
|
dependencies:
|
1281
|
-
'@babel/core': 7.
|
1054
|
+
'@babel/core': 7.23.3
|
1282
1055
|
'@babel/helper-plugin-utils': 7.22.5
|
1283
1056
|
dev: true
|
1284
1057
|
|
1285
|
-
/@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.
|
1058
|
+
/@babel/plugin-transform-nullish-coalescing-operator@7.22.5(@babel/core@7.23.3):
|
1286
1059
|
resolution: {integrity: sha512-6CF8g6z1dNYZ/VXok5uYkkBBICHZPiGEl7oDnAx2Mt1hlHVHOSIKWJaXHjQJA5VB43KZnXZDIexMchY4y2PGdA==}
|
1287
1060
|
engines: {node: '>=6.9.0'}
|
1288
1061
|
peerDependencies:
|
1289
1062
|
'@babel/core': ^7.0.0-0
|
1290
1063
|
dependencies:
|
1291
|
-
'@babel/core': 7.
|
1064
|
+
'@babel/core': 7.23.3
|
1292
1065
|
'@babel/helper-plugin-utils': 7.22.5
|
1293
|
-
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.
|
1066
|
+
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
|
1294
1067
|
dev: true
|
1295
1068
|
|
1296
|
-
/@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.
|
1069
|
+
/@babel/plugin-transform-numeric-separator@7.22.5(@babel/core@7.23.3):
|
1297
1070
|
resolution: {integrity: sha512-NbslED1/6M+sXiwwtcAB/nieypGw02Ejf4KtDeMkCEpP6gWFMX1wI9WKYua+4oBneCCEmulOkRpwywypVZzs/g==}
|
1298
1071
|
engines: {node: '>=6.9.0'}
|
1299
1072
|
peerDependencies:
|
1300
1073
|
'@babel/core': ^7.0.0-0
|
1301
1074
|
dependencies:
|
1302
|
-
'@babel/core': 7.
|
1075
|
+
'@babel/core': 7.23.3
|
1303
1076
|
'@babel/helper-plugin-utils': 7.22.5
|
1304
|
-
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.
|
1077
|
+
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
|
1305
1078
|
dev: true
|
1306
1079
|
|
1307
|
-
/@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.
|
1080
|
+
/@babel/plugin-transform-object-rest-spread@7.22.5(@babel/core@7.23.3):
|
1308
1081
|
resolution: {integrity: sha512-Kk3lyDmEslH9DnvCDA1s1kkd3YWQITiBOHngOtDL9Pt6BZjzqb6hiOlb8VfjiiQJ2unmegBqZu0rx5RxJb5vmQ==}
|
1309
1082
|
engines: {node: '>=6.9.0'}
|
1310
1083
|
peerDependencies:
|
1311
1084
|
'@babel/core': ^7.0.0-0
|
1312
1085
|
dependencies:
|
1313
|
-
'@babel/compat-data': 7.
|
1314
|
-
'@babel/core': 7.
|
1315
|
-
'@babel/helper-compilation-targets': 7.22.
|
1086
|
+
'@babel/compat-data': 7.23.3
|
1087
|
+
'@babel/core': 7.23.3
|
1088
|
+
'@babel/helper-compilation-targets': 7.22.15
|
1316
1089
|
'@babel/helper-plugin-utils': 7.22.5
|
1317
|
-
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.
|
1318
|
-
'@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.
|
1090
|
+
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
|
1091
|
+
'@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.3)
|
1319
1092
|
dev: true
|
1320
1093
|
|
1321
|
-
/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.
|
1094
|
+
/@babel/plugin-transform-object-super@7.22.5(@babel/core@7.23.3):
|
1322
1095
|
resolution: {integrity: sha512-klXqyaT9trSjIUrcsYIfETAzmOEZL3cBYqOYLJxBHfMFFggmXOv+NYSX/Jbs9mzMVESw/WycLFPRx8ba/b2Ipw==}
|
1323
1096
|
engines: {node: '>=6.9.0'}
|
1324
1097
|
peerDependencies:
|
1325
1098
|
'@babel/core': ^7.0.0-0
|
1326
1099
|
dependencies:
|
1327
|
-
'@babel/core': 7.
|
1100
|
+
'@babel/core': 7.23.3
|
1328
1101
|
'@babel/helper-plugin-utils': 7.22.5
|
1329
|
-
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.
|
1102
|
+
'@babel/helper-replace-supers': 7.22.9(@babel/core@7.23.3)
|
1330
1103
|
dev: true
|
1331
1104
|
|
1332
|
-
/@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.
|
1105
|
+
/@babel/plugin-transform-optional-catch-binding@7.22.5(@babel/core@7.23.3):
|
1333
1106
|
resolution: {integrity: sha512-pH8orJahy+hzZje5b8e2QIlBWQvGpelS76C63Z+jhZKsmzfNaPQ+LaW6dcJ9bxTpo1mtXbgHwy765Ro3jftmUg==}
|
1334
1107
|
engines: {node: '>=6.9.0'}
|
1335
1108
|
peerDependencies:
|
1336
1109
|
'@babel/core': ^7.0.0-0
|
1337
1110
|
dependencies:
|
1338
|
-
'@babel/core': 7.
|
1111
|
+
'@babel/core': 7.23.3
|
1339
1112
|
'@babel/helper-plugin-utils': 7.22.5
|
1340
|
-
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.
|
1113
|
+
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
|
1341
1114
|
dev: true
|
1342
1115
|
|
1343
|
-
/@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.
|
1116
|
+
/@babel/plugin-transform-optional-chaining@7.22.6(@babel/core@7.23.3):
|
1344
1117
|
resolution: {integrity: sha512-Vd5HiWml0mDVtcLHIoEU5sw6HOUW/Zk0acLs/SAeuLzkGNOPc9DB4nkUajemhCmTIz3eiaKREZn2hQQqF79YTg==}
|
1345
1118
|
engines: {node: '>=6.9.0'}
|
1346
1119
|
peerDependencies:
|
1347
1120
|
'@babel/core': ^7.0.0-0
|
1348
1121
|
dependencies:
|
1349
|
-
'@babel/core': 7.
|
1122
|
+
'@babel/core': 7.23.3
|
1350
1123
|
'@babel/helper-plugin-utils': 7.22.5
|
1351
1124
|
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
|
1352
|
-
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.
|
1125
|
+
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
|
1353
1126
|
dev: true
|
1354
1127
|
|
1355
|
-
/@babel/plugin-transform-parameters@7.22.5(@babel/core@7.
|
1128
|
+
/@babel/plugin-transform-parameters@7.22.5(@babel/core@7.23.3):
|
1356
1129
|
resolution: {integrity: sha512-AVkFUBurORBREOmHRKo06FjHYgjrabpdqRSwq6+C7R5iTCZOsM4QbcB27St0a4U6fffyAOqh3s/qEfybAhfivg==}
|
1357
1130
|
engines: {node: '>=6.9.0'}
|
1358
1131
|
peerDependencies:
|
1359
1132
|
'@babel/core': ^7.0.0-0
|
1360
1133
|
dependencies:
|
1361
|
-
'@babel/core': 7.
|
1134
|
+
'@babel/core': 7.23.3
|
1362
1135
|
'@babel/helper-plugin-utils': 7.22.5
|
1363
1136
|
dev: true
|
1364
1137
|
|
1365
|
-
/@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.
|
1138
|
+
/@babel/plugin-transform-private-methods@7.22.5(@babel/core@7.23.3):
|
1366
1139
|
resolution: {integrity: sha512-PPjh4gyrQnGe97JTalgRGMuU4icsZFnWkzicB/fUtzlKUqvsWBKEpPPfr5a2JiyirZkHxnAqkQMO5Z5B2kK3fA==}
|
1367
1140
|
engines: {node: '>=6.9.0'}
|
1368
1141
|
peerDependencies:
|
1369
1142
|
'@babel/core': ^7.0.0-0
|
1370
1143
|
dependencies:
|
1371
|
-
'@babel/core': 7.
|
1372
|
-
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.
|
1144
|
+
'@babel/core': 7.23.3
|
1145
|
+
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1373
1146
|
'@babel/helper-plugin-utils': 7.22.5
|
1374
1147
|
dev: true
|
1375
1148
|
|
1376
|
-
/@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.
|
1149
|
+
/@babel/plugin-transform-private-property-in-object@7.22.5(@babel/core@7.23.3):
|
1377
1150
|
resolution: {integrity: sha512-/9xnaTTJcVoBtSSmrVyhtSvO3kbqS2ODoh2juEU72c3aYonNF0OMGiaz2gjukyKM2wBBYJP38S4JiE0Wfb5VMQ==}
|
1378
1151
|
engines: {node: '>=6.9.0'}
|
1379
1152
|
peerDependencies:
|
1380
1153
|
'@babel/core': ^7.0.0-0
|
1381
1154
|
dependencies:
|
1382
|
-
'@babel/core': 7.
|
1155
|
+
'@babel/core': 7.23.3
|
1383
1156
|
'@babel/helper-annotate-as-pure': 7.22.5
|
1384
|
-
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.
|
1157
|
+
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1385
1158
|
'@babel/helper-plugin-utils': 7.22.5
|
1386
|
-
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.
|
1159
|
+
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3)
|
1387
1160
|
dev: true
|
1388
1161
|
|
1389
|
-
/@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.
|
1162
|
+
/@babel/plugin-transform-property-literals@7.22.5(@babel/core@7.23.3):
|
1390
1163
|
resolution: {integrity: sha512-TiOArgddK3mK/x1Qwf5hay2pxI6wCZnvQqrFSqbtg1GLl2JcNMitVH/YnqjP+M31pLUeTfzY1HAXFDnUBV30rQ==}
|
1391
1164
|
engines: {node: '>=6.9.0'}
|
1392
1165
|
peerDependencies:
|
1393
1166
|
'@babel/core': ^7.0.0-0
|
1394
1167
|
dependencies:
|
1395
|
-
'@babel/core': 7.
|
1168
|
+
'@babel/core': 7.23.3
|
1396
1169
|
'@babel/helper-plugin-utils': 7.22.5
|
1397
1170
|
dev: true
|
1398
1171
|
|
1399
|
-
/@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.
|
1172
|
+
/@babel/plugin-transform-regenerator@7.22.5(@babel/core@7.23.3):
|
1400
1173
|
resolution: {integrity: sha512-rR7KePOE7gfEtNTh9Qw+iO3Q/e4DEsoQ+hdvM6QUDH7JRJ5qxq5AA52ZzBWbI5i9lfNuvySgOGP8ZN7LAmaiPw==}
|
1401
1174
|
engines: {node: '>=6.9.0'}
|
1402
1175
|
peerDependencies:
|
1403
1176
|
'@babel/core': ^7.0.0-0
|
1404
1177
|
dependencies:
|
1405
|
-
'@babel/core': 7.
|
1178
|
+
'@babel/core': 7.23.3
|
1406
1179
|
'@babel/helper-plugin-utils': 7.22.5
|
1407
1180
|
regenerator-transform: 0.15.1
|
1408
1181
|
dev: true
|
1409
1182
|
|
1410
|
-
/@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.
|
1183
|
+
/@babel/plugin-transform-reserved-words@7.22.5(@babel/core@7.23.3):
|
1411
1184
|
resolution: {integrity: sha512-DTtGKFRQUDm8svigJzZHzb/2xatPc6TzNvAIJ5GqOKDsGFYgAskjRulbR/vGsPKq3OPqtexnz327qYpP57RFyA==}
|
1412
1185
|
engines: {node: '>=6.9.0'}
|
1413
1186
|
peerDependencies:
|
1414
1187
|
'@babel/core': ^7.0.0-0
|
1415
1188
|
dependencies:
|
1416
|
-
'@babel/core': 7.
|
1189
|
+
'@babel/core': 7.23.3
|
1417
1190
|
'@babel/helper-plugin-utils': 7.22.5
|
1418
1191
|
dev: true
|
1419
1192
|
|
1420
|
-
/@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.
|
1193
|
+
/@babel/plugin-transform-shorthand-properties@7.22.5(@babel/core@7.23.3):
|
1421
1194
|
resolution: {integrity: sha512-vM4fq9IXHscXVKzDv5itkO1X52SmdFBFcMIBZ2FRn2nqVYqw6dBexUgMvAjHW+KXpPPViD/Yo3GrDEBaRC0QYA==}
|
1422
1195
|
engines: {node: '>=6.9.0'}
|
1423
1196
|
peerDependencies:
|
1424
1197
|
'@babel/core': ^7.0.0-0
|
1425
1198
|
dependencies:
|
1426
|
-
'@babel/core': 7.
|
1199
|
+
'@babel/core': 7.23.3
|
1427
1200
|
'@babel/helper-plugin-utils': 7.22.5
|
1428
1201
|
dev: true
|
1429
1202
|
|
1430
|
-
/@babel/plugin-transform-spread@7.22.5(@babel/core@7.
|
1203
|
+
/@babel/plugin-transform-spread@7.22.5(@babel/core@7.23.3):
|
1431
1204
|
resolution: {integrity: sha512-5ZzDQIGyvN4w8+dMmpohL6MBo+l2G7tfC/O2Dg7/hjpgeWvUx8FzfeOKxGog9IimPa4YekaQ9PlDqTLOljkcxg==}
|
1432
1205
|
engines: {node: '>=6.9.0'}
|
1433
1206
|
peerDependencies:
|
1434
1207
|
'@babel/core': ^7.0.0-0
|
1435
1208
|
dependencies:
|
1436
|
-
'@babel/core': 7.
|
1209
|
+
'@babel/core': 7.23.3
|
1437
1210
|
'@babel/helper-plugin-utils': 7.22.5
|
1438
1211
|
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
|
1439
1212
|
dev: true
|
1440
1213
|
|
1441
|
-
/@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.
|
1214
|
+
/@babel/plugin-transform-sticky-regex@7.22.5(@babel/core@7.23.3):
|
1442
1215
|
resolution: {integrity: sha512-zf7LuNpHG0iEeiyCNwX4j3gDg1jgt1k3ZdXBKbZSoA3BbGQGvMiSvfbZRR3Dr3aeJe3ooWFZxOOG3IRStYp2Bw==}
|
1443
1216
|
engines: {node: '>=6.9.0'}
|
1444
1217
|
peerDependencies:
|
1445
1218
|
'@babel/core': ^7.0.0-0
|
1446
1219
|
dependencies:
|
1447
|
-
'@babel/core': 7.
|
1220
|
+
'@babel/core': 7.23.3
|
1448
1221
|
'@babel/helper-plugin-utils': 7.22.5
|
1449
1222
|
dev: true
|
1450
1223
|
|
1451
|
-
/@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.
|
1224
|
+
/@babel/plugin-transform-template-literals@7.22.5(@babel/core@7.23.3):
|
1452
1225
|
resolution: {integrity: sha512-5ciOehRNf+EyUeewo8NkbQiUs4d6ZxiHo6BcBcnFlgiJfu16q0bQUw9Jvo0b0gBKFG1SMhDSjeKXSYuJLeFSMA==}
|
1453
1226
|
engines: {node: '>=6.9.0'}
|
1454
1227
|
peerDependencies:
|
1455
1228
|
'@babel/core': ^7.0.0-0
|
1456
1229
|
dependencies:
|
1457
|
-
'@babel/core': 7.
|
1230
|
+
'@babel/core': 7.23.3
|
1458
1231
|
'@babel/helper-plugin-utils': 7.22.5
|
1459
1232
|
dev: true
|
1460
1233
|
|
1461
|
-
/@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.
|
1234
|
+
/@babel/plugin-transform-typeof-symbol@7.22.5(@babel/core@7.23.3):
|
1462
1235
|
resolution: {integrity: sha512-bYkI5lMzL4kPii4HHEEChkD0rkc+nvnlR6+o/qdqR6zrm0Sv/nodmyLhlq2DO0YKLUNd2VePmPRjJXSBh9OIdA==}
|
1463
1236
|
engines: {node: '>=6.9.0'}
|
1464
1237
|
peerDependencies:
|
1465
1238
|
'@babel/core': ^7.0.0-0
|
1466
1239
|
dependencies:
|
1467
|
-
'@babel/core': 7.
|
1240
|
+
'@babel/core': 7.23.3
|
1468
1241
|
'@babel/helper-plugin-utils': 7.22.5
|
1469
1242
|
dev: true
|
1470
1243
|
|
1471
|
-
/@babel/plugin-transform-typescript@7.22.9(@babel/core@7.
|
1244
|
+
/@babel/plugin-transform-typescript@7.22.9(@babel/core@7.23.3):
|
1472
1245
|
resolution: {integrity: sha512-BnVR1CpKiuD0iobHPaM1iLvcwPYN2uVFAqoLVSpEDKWuOikoCv5HbKLxclhKYUXlWkX86DoZGtqI4XhbOsyrMg==}
|
1473
1246
|
engines: {node: '>=6.9.0'}
|
1474
1247
|
peerDependencies:
|
1475
1248
|
'@babel/core': ^7.0.0-0
|
1476
1249
|
dependencies:
|
1477
|
-
'@babel/core': 7.
|
1250
|
+
'@babel/core': 7.23.3
|
1478
1251
|
'@babel/helper-annotate-as-pure': 7.22.5
|
1479
|
-
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.
|
1252
|
+
'@babel/helper-create-class-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1480
1253
|
'@babel/helper-plugin-utils': 7.22.5
|
1481
|
-
'@babel/plugin-syntax-typescript': 7.
|
1254
|
+
'@babel/plugin-syntax-typescript': 7.23.3(@babel/core@7.23.3)
|
1482
1255
|
dev: true
|
1483
1256
|
|
1484
|
-
/@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.
|
1257
|
+
/@babel/plugin-transform-unicode-escapes@7.22.5(@babel/core@7.23.3):
|
1485
1258
|
resolution: {integrity: sha512-biEmVg1IYB/raUO5wT1tgfacCef15Fbzhkx493D3urBI++6hpJ+RFG4SrWMn0NEZLfvilqKf3QDrRVZHo08FYg==}
|
1486
1259
|
engines: {node: '>=6.9.0'}
|
1487
1260
|
peerDependencies:
|
1488
1261
|
'@babel/core': ^7.0.0-0
|
1489
1262
|
dependencies:
|
1490
|
-
'@babel/core': 7.
|
1263
|
+
'@babel/core': 7.23.3
|
1491
1264
|
'@babel/helper-plugin-utils': 7.22.5
|
1492
1265
|
dev: true
|
1493
1266
|
|
1494
|
-
/@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.
|
1267
|
+
/@babel/plugin-transform-unicode-property-regex@7.22.5(@babel/core@7.23.3):
|
1495
1268
|
resolution: {integrity: sha512-HCCIb+CbJIAE6sXn5CjFQXMwkCClcOfPCzTlilJ8cUatfzwHlWQkbtV0zD338u9dZskwvuOYTuuaMaA8J5EI5A==}
|
1496
1269
|
engines: {node: '>=6.9.0'}
|
1497
1270
|
peerDependencies:
|
1498
1271
|
'@babel/core': ^7.0.0-0
|
1499
1272
|
dependencies:
|
1500
|
-
'@babel/core': 7.
|
1501
|
-
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.
|
1273
|
+
'@babel/core': 7.23.3
|
1274
|
+
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1502
1275
|
'@babel/helper-plugin-utils': 7.22.5
|
1503
1276
|
dev: true
|
1504
1277
|
|
1505
|
-
/@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.
|
1278
|
+
/@babel/plugin-transform-unicode-regex@7.22.5(@babel/core@7.23.3):
|
1506
1279
|
resolution: {integrity: sha512-028laaOKptN5vHJf9/Arr/HiJekMd41hOEZYvNsrsXqJ7YPYuX2bQxh31fkZzGmq3YqHRJzYFFAVYvKfMPKqyg==}
|
1507
1280
|
engines: {node: '>=6.9.0'}
|
1508
1281
|
peerDependencies:
|
1509
1282
|
'@babel/core': ^7.0.0-0
|
1510
1283
|
dependencies:
|
1511
|
-
'@babel/core': 7.
|
1512
|
-
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.
|
1284
|
+
'@babel/core': 7.23.3
|
1285
|
+
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1513
1286
|
'@babel/helper-plugin-utils': 7.22.5
|
1514
1287
|
dev: true
|
1515
1288
|
|
1516
|
-
/@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.
|
1289
|
+
/@babel/plugin-transform-unicode-sets-regex@7.22.5(@babel/core@7.23.3):
|
1517
1290
|
resolution: {integrity: sha512-lhMfi4FC15j13eKrh3DnYHjpGj6UKQHtNKTbtc1igvAhRy4+kLhV07OpLcsN0VgDEw/MjAvJO4BdMJsHwMhzCg==}
|
1518
1291
|
engines: {node: '>=6.9.0'}
|
1519
1292
|
peerDependencies:
|
1520
1293
|
'@babel/core': ^7.0.0
|
1521
1294
|
dependencies:
|
1522
|
-
'@babel/core': 7.
|
1523
|
-
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.
|
1295
|
+
'@babel/core': 7.23.3
|
1296
|
+
'@babel/helper-create-regexp-features-plugin': 7.22.9(@babel/core@7.23.3)
|
1524
1297
|
'@babel/helper-plugin-utils': 7.22.5
|
1525
1298
|
dev: true
|
1526
1299
|
|
1527
|
-
/@babel/preset-env@7.22.9(@babel/core@7.
|
1300
|
+
/@babel/preset-env@7.22.9(@babel/core@7.23.3):
|
1528
1301
|
resolution: {integrity: sha512-wNi5H/Emkhll/bqPjsjQorSykrlfY5OWakd6AulLvMEytpKasMVUpVy8RL4qBIBs5Ac6/5i0/Rv0b/Fg6Eag/g==}
|
1529
1302
|
engines: {node: '>=6.9.0'}
|
1530
1303
|
peerDependencies:
|
1531
1304
|
'@babel/core': ^7.0.0-0
|
1532
1305
|
dependencies:
|
1533
|
-
'@babel/compat-data': 7.
|
1534
|
-
'@babel/core': 7.
|
1535
|
-
'@babel/helper-compilation-targets': 7.22.
|
1306
|
+
'@babel/compat-data': 7.23.3
|
1307
|
+
'@babel/core': 7.23.3
|
1308
|
+
'@babel/helper-compilation-targets': 7.22.15
|
1536
1309
|
'@babel/helper-plugin-utils': 7.22.5
|
1537
|
-
'@babel/helper-validator-option': 7.22.
|
1538
|
-
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.
|
1539
|
-
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.
|
1540
|
-
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.
|
1541
|
-
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.
|
1542
|
-
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.
|
1543
|
-
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.
|
1544
|
-
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.
|
1545
|
-
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.
|
1546
|
-
'@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.
|
1547
|
-
'@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.
|
1548
|
-
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.
|
1549
|
-
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.
|
1550
|
-
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.
|
1551
|
-
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.
|
1552
|
-
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.
|
1553
|
-
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.
|
1554
|
-
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.
|
1555
|
-
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.
|
1556
|
-
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.
|
1557
|
-
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.
|
1558
|
-
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.
|
1559
|
-
'@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.
|
1560
|
-
'@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.
|
1561
|
-
'@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.
|
1562
|
-
'@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.
|
1563
|
-
'@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.
|
1564
|
-
'@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.
|
1565
|
-
'@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.
|
1566
|
-
'@babel/plugin-transform-classes': 7.22.6(@babel/core@7.
|
1567
|
-
'@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.
|
1568
|
-
'@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.
|
1569
|
-
'@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.
|
1570
|
-
'@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.
|
1571
|
-
'@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.
|
1572
|
-
'@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.
|
1573
|
-
'@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.
|
1574
|
-
'@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.
|
1575
|
-
'@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.
|
1576
|
-
'@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.
|
1577
|
-
'@babel/plugin-transform-literals': 7.22.5(@babel/core@7.
|
1578
|
-
'@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.
|
1579
|
-
'@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.
|
1580
|
-
'@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.
|
1581
|
-
'@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.
|
1582
|
-
'@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.
|
1583
|
-
'@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.
|
1584
|
-
'@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.
|
1585
|
-
'@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.
|
1586
|
-
'@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.
|
1587
|
-
'@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.
|
1588
|
-
'@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.
|
1589
|
-
'@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.
|
1590
|
-
'@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.
|
1591
|
-
'@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.
|
1592
|
-
'@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.
|
1593
|
-
'@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.
|
1594
|
-
'@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.
|
1595
|
-
'@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.
|
1596
|
-
'@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.
|
1597
|
-
'@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.
|
1598
|
-
'@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.
|
1599
|
-
'@babel/plugin-transform-spread': 7.22.5(@babel/core@7.
|
1600
|
-
'@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.
|
1601
|
-
'@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.
|
1602
|
-
'@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.
|
1603
|
-
'@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.
|
1604
|
-
'@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.
|
1605
|
-
'@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.
|
1606
|
-
'@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.
|
1607
|
-
'@babel/preset-modules': 0.1.6(@babel/core@7.
|
1608
|
-
'@babel/types': 7.
|
1609
|
-
babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.
|
1610
|
-
babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.
|
1611
|
-
babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.
|
1310
|
+
'@babel/helper-validator-option': 7.22.15
|
1311
|
+
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.22.5(@babel/core@7.23.3)
|
1312
|
+
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.22.5(@babel/core@7.23.3)
|
1313
|
+
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.23.3)
|
1314
|
+
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.3)
|
1315
|
+
'@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.3)
|
1316
|
+
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.23.3)
|
1317
|
+
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.23.3)
|
1318
|
+
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.23.3)
|
1319
|
+
'@babel/plugin-syntax-import-assertions': 7.22.5(@babel/core@7.23.3)
|
1320
|
+
'@babel/plugin-syntax-import-attributes': 7.22.5(@babel/core@7.23.3)
|
1321
|
+
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3)
|
1322
|
+
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.3)
|
1323
|
+
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.3)
|
1324
|
+
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.3)
|
1325
|
+
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.3)
|
1326
|
+
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.3)
|
1327
|
+
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.3)
|
1328
|
+
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.3)
|
1329
|
+
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.23.3)
|
1330
|
+
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.3)
|
1331
|
+
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.23.3)
|
1332
|
+
'@babel/plugin-transform-arrow-functions': 7.22.5(@babel/core@7.23.3)
|
1333
|
+
'@babel/plugin-transform-async-generator-functions': 7.22.7(@babel/core@7.23.3)
|
1334
|
+
'@babel/plugin-transform-async-to-generator': 7.22.5(@babel/core@7.23.3)
|
1335
|
+
'@babel/plugin-transform-block-scoped-functions': 7.22.5(@babel/core@7.23.3)
|
1336
|
+
'@babel/plugin-transform-block-scoping': 7.22.5(@babel/core@7.23.3)
|
1337
|
+
'@babel/plugin-transform-class-properties': 7.22.5(@babel/core@7.23.3)
|
1338
|
+
'@babel/plugin-transform-class-static-block': 7.22.5(@babel/core@7.23.3)
|
1339
|
+
'@babel/plugin-transform-classes': 7.22.6(@babel/core@7.23.3)
|
1340
|
+
'@babel/plugin-transform-computed-properties': 7.22.5(@babel/core@7.23.3)
|
1341
|
+
'@babel/plugin-transform-destructuring': 7.22.5(@babel/core@7.23.3)
|
1342
|
+
'@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.3)
|
1343
|
+
'@babel/plugin-transform-duplicate-keys': 7.22.5(@babel/core@7.23.3)
|
1344
|
+
'@babel/plugin-transform-dynamic-import': 7.22.5(@babel/core@7.23.3)
|
1345
|
+
'@babel/plugin-transform-exponentiation-operator': 7.22.5(@babel/core@7.23.3)
|
1346
|
+
'@babel/plugin-transform-export-namespace-from': 7.22.5(@babel/core@7.23.3)
|
1347
|
+
'@babel/plugin-transform-for-of': 7.22.5(@babel/core@7.23.3)
|
1348
|
+
'@babel/plugin-transform-function-name': 7.22.5(@babel/core@7.23.3)
|
1349
|
+
'@babel/plugin-transform-json-strings': 7.22.5(@babel/core@7.23.3)
|
1350
|
+
'@babel/plugin-transform-literals': 7.22.5(@babel/core@7.23.3)
|
1351
|
+
'@babel/plugin-transform-logical-assignment-operators': 7.22.5(@babel/core@7.23.3)
|
1352
|
+
'@babel/plugin-transform-member-expression-literals': 7.22.5(@babel/core@7.23.3)
|
1353
|
+
'@babel/plugin-transform-modules-amd': 7.22.5(@babel/core@7.23.3)
|
1354
|
+
'@babel/plugin-transform-modules-commonjs': 7.22.5(@babel/core@7.23.3)
|
1355
|
+
'@babel/plugin-transform-modules-systemjs': 7.22.5(@babel/core@7.23.3)
|
1356
|
+
'@babel/plugin-transform-modules-umd': 7.22.5(@babel/core@7.23.3)
|
1357
|
+
'@babel/plugin-transform-named-capturing-groups-regex': 7.22.5(@babel/core@7.23.3)
|
1358
|
+
'@babel/plugin-transform-new-target': 7.22.5(@babel/core@7.23.3)
|
1359
|
+
'@babel/plugin-transform-nullish-coalescing-operator': 7.22.5(@babel/core@7.23.3)
|
1360
|
+
'@babel/plugin-transform-numeric-separator': 7.22.5(@babel/core@7.23.3)
|
1361
|
+
'@babel/plugin-transform-object-rest-spread': 7.22.5(@babel/core@7.23.3)
|
1362
|
+
'@babel/plugin-transform-object-super': 7.22.5(@babel/core@7.23.3)
|
1363
|
+
'@babel/plugin-transform-optional-catch-binding': 7.22.5(@babel/core@7.23.3)
|
1364
|
+
'@babel/plugin-transform-optional-chaining': 7.22.6(@babel/core@7.23.3)
|
1365
|
+
'@babel/plugin-transform-parameters': 7.22.5(@babel/core@7.23.3)
|
1366
|
+
'@babel/plugin-transform-private-methods': 7.22.5(@babel/core@7.23.3)
|
1367
|
+
'@babel/plugin-transform-private-property-in-object': 7.22.5(@babel/core@7.23.3)
|
1368
|
+
'@babel/plugin-transform-property-literals': 7.22.5(@babel/core@7.23.3)
|
1369
|
+
'@babel/plugin-transform-regenerator': 7.22.5(@babel/core@7.23.3)
|
1370
|
+
'@babel/plugin-transform-reserved-words': 7.22.5(@babel/core@7.23.3)
|
1371
|
+
'@babel/plugin-transform-shorthand-properties': 7.22.5(@babel/core@7.23.3)
|
1372
|
+
'@babel/plugin-transform-spread': 7.22.5(@babel/core@7.23.3)
|
1373
|
+
'@babel/plugin-transform-sticky-regex': 7.22.5(@babel/core@7.23.3)
|
1374
|
+
'@babel/plugin-transform-template-literals': 7.22.5(@babel/core@7.23.3)
|
1375
|
+
'@babel/plugin-transform-typeof-symbol': 7.22.5(@babel/core@7.23.3)
|
1376
|
+
'@babel/plugin-transform-unicode-escapes': 7.22.5(@babel/core@7.23.3)
|
1377
|
+
'@babel/plugin-transform-unicode-property-regex': 7.22.5(@babel/core@7.23.3)
|
1378
|
+
'@babel/plugin-transform-unicode-regex': 7.22.5(@babel/core@7.23.3)
|
1379
|
+
'@babel/plugin-transform-unicode-sets-regex': 7.22.5(@babel/core@7.23.3)
|
1380
|
+
'@babel/preset-modules': 0.1.6(@babel/core@7.23.3)
|
1381
|
+
'@babel/types': 7.23.3
|
1382
|
+
babel-plugin-polyfill-corejs2: 0.4.5(@babel/core@7.23.3)
|
1383
|
+
babel-plugin-polyfill-corejs3: 0.8.3(@babel/core@7.23.3)
|
1384
|
+
babel-plugin-polyfill-regenerator: 0.5.2(@babel/core@7.23.3)
|
1612
1385
|
core-js-compat: 3.32.0
|
1613
1386
|
semver: 6.3.1
|
1614
1387
|
transitivePeerDependencies:
|
1615
1388
|
- supports-color
|
1616
1389
|
dev: true
|
1617
1390
|
|
1618
|
-
/@babel/preset-modules@0.1.6(@babel/core@7.
|
1391
|
+
/@babel/preset-modules@0.1.6(@babel/core@7.23.3):
|
1619
1392
|
resolution: {integrity: sha512-ID2yj6K/4lKfhuU3+EX4UvNbIt7eACFbHmNUjzA+ep+B5971CknnA/9DEWKbRokfbbtblxxxXFJJrH47UEAMVg==}
|
1620
1393
|
peerDependencies:
|
1621
1394
|
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
|
1622
1395
|
dependencies:
|
1623
|
-
'@babel/core': 7.
|
1396
|
+
'@babel/core': 7.23.3
|
1624
1397
|
'@babel/helper-plugin-utils': 7.22.5
|
1625
|
-
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.
|
1626
|
-
'@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.
|
1627
|
-
'@babel/types': 7.
|
1398
|
+
'@babel/plugin-proposal-unicode-property-regex': 7.18.6(@babel/core@7.23.3)
|
1399
|
+
'@babel/plugin-transform-dotall-regex': 7.22.5(@babel/core@7.23.3)
|
1400
|
+
'@babel/types': 7.23.3
|
1628
1401
|
esutils: 2.0.3
|
1629
1402
|
dev: true
|
1630
1403
|
|
@@ -1646,31 +1419,6 @@ packages:
|
|
1646
1419
|
'@babel/parser': 7.23.3
|
1647
1420
|
'@babel/types': 7.23.3
|
1648
1421
|
|
1649
|
-
/@babel/template@7.22.5:
|
1650
|
-
resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
|
1651
|
-
engines: {node: '>=6.9.0'}
|
1652
|
-
dependencies:
|
1653
|
-
'@babel/code-frame': 7.22.5
|
1654
|
-
'@babel/parser': 7.22.7
|
1655
|
-
'@babel/types': 7.22.5
|
1656
|
-
|
1657
|
-
/@babel/traverse@7.22.8:
|
1658
|
-
resolution: {integrity: sha512-y6LPR+wpM2I3qJrsheCTwhIinzkETbplIgPBbwvqPKc+uljeA5gP+3nP8irdYt1mjQaDnlIcG+dw8OjAco4GXw==}
|
1659
|
-
engines: {node: '>=6.9.0'}
|
1660
|
-
dependencies:
|
1661
|
-
'@babel/code-frame': 7.22.5
|
1662
|
-
'@babel/generator': 7.22.9
|
1663
|
-
'@babel/helper-environment-visitor': 7.22.5
|
1664
|
-
'@babel/helper-function-name': 7.22.5
|
1665
|
-
'@babel/helper-hoist-variables': 7.22.5
|
1666
|
-
'@babel/helper-split-export-declaration': 7.22.6
|
1667
|
-
'@babel/parser': 7.22.7
|
1668
|
-
'@babel/types': 7.22.5
|
1669
|
-
debug: 4.3.4
|
1670
|
-
globals: 11.12.0
|
1671
|
-
transitivePeerDependencies:
|
1672
|
-
- supports-color
|
1673
|
-
|
1674
1422
|
/@babel/traverse@7.23.3:
|
1675
1423
|
resolution: {integrity: sha512-+K0yF1/9yR0oHdE0StHuEj3uTPzwwbrLGfNOndVJVV2TqA5+j3oljJUb4nmB954FLGjNem976+B+eDuLIjesiQ==}
|
1676
1424
|
engines: {node: '>=6.9.0'}
|
@@ -1688,14 +1436,6 @@ packages:
|
|
1688
1436
|
transitivePeerDependencies:
|
1689
1437
|
- supports-color
|
1690
1438
|
|
1691
|
-
/@babel/types@7.22.5:
|
1692
|
-
resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==}
|
1693
|
-
engines: {node: '>=6.9.0'}
|
1694
|
-
dependencies:
|
1695
|
-
'@babel/helper-string-parser': 7.22.5
|
1696
|
-
'@babel/helper-validator-identifier': 7.22.5
|
1697
|
-
to-fast-properties: 2.0.0
|
1698
|
-
|
1699
1439
|
/@babel/types@7.23.0:
|
1700
1440
|
resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==}
|
1701
1441
|
engines: {node: '>=6.9.0'}
|
@@ -1733,18 +1473,21 @@ packages:
|
|
1733
1473
|
/@dcloudio/types@3.4.3:
|
1734
1474
|
resolution: {integrity: sha512-WzQGX06z2+HU3HnOO+/DxX37jyUECSXCuI7GVjFXs10+ZExTbdouwQXZvH8hR7k/FjuXFjQKHV9fuvfexyXluw==}
|
1735
1475
|
|
1736
|
-
/@dcloudio/uni-app-plus@3.0.0-
|
1737
|
-
resolution: {integrity: sha512-
|
1476
|
+
/@dcloudio/uni-app-plus@3.0.0-3090920231225001(@vueuse/core@9.13.0)(postcss@8.4.31)(vite@4.5.0)(vue@3.3.8):
|
1477
|
+
resolution: {integrity: sha512-TCzWHbwuheEBSzpTqpHh/imhj4Rkwdg48m9C7ZLqun5runI056TEUdrpfuLBVuwsttk5NSpqm11ywS7GSSM7Mg==}
|
1738
1478
|
dependencies:
|
1739
|
-
'@dcloudio/uni-app-uts': 3.0.0-
|
1740
|
-
'@dcloudio/uni-app-vite': 3.0.0-
|
1741
|
-
'@dcloudio/uni-app-vue': 3.0.0-
|
1479
|
+
'@dcloudio/uni-app-uts': 3.0.0-3090920231225001(@vueuse/core@9.13.0)(postcss@8.4.31)(vue@3.3.8)
|
1480
|
+
'@dcloudio/uni-app-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vite@4.5.0)(vue@3.3.8)
|
1481
|
+
'@dcloudio/uni-app-vue': 3.0.0-3090920231225001
|
1742
1482
|
debug: 4.3.4
|
1743
1483
|
fs-extra: 10.1.0
|
1744
1484
|
licia: 1.38.2
|
1745
1485
|
postcss-selector-parser: 6.0.13
|
1746
1486
|
transitivePeerDependencies:
|
1487
|
+
- '@nuxt/kit'
|
1488
|
+
- '@vueuse/core'
|
1747
1489
|
- postcss
|
1490
|
+
- rollup
|
1748
1491
|
- supports-color
|
1749
1492
|
- ts-node
|
1750
1493
|
- vite
|
@@ -1769,26 +1512,33 @@ packages:
|
|
1769
1512
|
- vue
|
1770
1513
|
dev: false
|
1771
1514
|
|
1772
|
-
/@dcloudio/uni-app-uts@3.0.0-
|
1773
|
-
resolution: {integrity: sha512-
|
1515
|
+
/@dcloudio/uni-app-uts@3.0.0-3090920231225001(@vueuse/core@9.13.0)(postcss@8.4.31)(vue@3.3.8):
|
1516
|
+
resolution: {integrity: sha512-61At6ZKh9SpHMuewxtZEOuDS1hkwFs5AecqavFAZWovVQR30it2e5zSN4kwq/ZM1An/HFs0TLXV3YBnx9Q07oA==}
|
1774
1517
|
dependencies:
|
1775
|
-
'@babel/parser': 7.
|
1776
|
-
'@babel/types': 7.
|
1777
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
1778
|
-
'@dcloudio/uni-i18n': 3.0.0-
|
1779
|
-
'@dcloudio/uni-nvue-styler': 3.0.0-
|
1780
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1518
|
+
'@babel/parser': 7.23.3
|
1519
|
+
'@babel/types': 7.23.3
|
1520
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1521
|
+
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
|
1522
|
+
'@dcloudio/uni-nvue-styler': 3.0.0-3090920231225001
|
1523
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
1524
|
+
'@jridgewell/gen-mapping': 0.3.3
|
1525
|
+
'@jridgewell/trace-mapping': 0.3.20
|
1781
1526
|
'@rollup/pluginutils': 4.2.1
|
1782
1527
|
'@vue/compiler-core': 3.2.47
|
1783
1528
|
'@vue/compiler-sfc': 3.2.47
|
1784
1529
|
'@vue/shared': 3.2.47
|
1785
1530
|
debug: 4.3.4
|
1786
|
-
es-module-lexer: 1.
|
1531
|
+
es-module-lexer: 1.4.1
|
1532
|
+
estree-walker: 2.0.2
|
1787
1533
|
fs-extra: 10.1.0
|
1788
1534
|
picocolors: 1.0.0
|
1789
|
-
source-map: 0.
|
1535
|
+
source-map-js: 1.0.2
|
1536
|
+
unplugin-auto-import: 0.16.7(@vueuse/core@9.13.0)
|
1790
1537
|
transitivePeerDependencies:
|
1538
|
+
- '@nuxt/kit'
|
1539
|
+
- '@vueuse/core'
|
1791
1540
|
- postcss
|
1541
|
+
- rollup
|
1792
1542
|
- supports-color
|
1793
1543
|
- ts-node
|
1794
1544
|
- vue
|
@@ -1819,15 +1569,15 @@ packages:
|
|
1819
1569
|
- vue
|
1820
1570
|
dev: false
|
1821
1571
|
|
1822
|
-
/@dcloudio/uni-app-vite@3.0.0-
|
1823
|
-
resolution: {integrity: sha512-
|
1572
|
+
/@dcloudio/uni-app-vite@3.0.0-3090920231225001(postcss@8.4.31)(vite@4.5.0)(vue@3.3.8):
|
1573
|
+
resolution: {integrity: sha512-MkmI3qzsGYrT787lRMyhb/DdIF9mE/BbhrExwM/RBshnVzl6rjQIKx5lIG94t58WIaP7Jcl/pJw+IPAe1FTQyQ==}
|
1824
1574
|
dependencies:
|
1825
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
1826
|
-
'@dcloudio/uni-i18n': 3.0.0-
|
1827
|
-
'@dcloudio/uni-nvue-styler': 3.0.0-
|
1828
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1575
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1576
|
+
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
|
1577
|
+
'@dcloudio/uni-nvue-styler': 3.0.0-3090920231225001
|
1578
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
1829
1579
|
'@rollup/pluginutils': 4.2.1
|
1830
|
-
'@vitejs/plugin-vue': 4.
|
1580
|
+
'@vitejs/plugin-vue': 4.4.1(vite@4.5.0)(vue@3.3.8)
|
1831
1581
|
'@vue/compiler-dom': 3.2.47
|
1832
1582
|
'@vue/compiler-sfc': 3.2.47
|
1833
1583
|
debug: 4.3.4
|
@@ -1863,26 +1613,26 @@ packages:
|
|
1863
1613
|
- vue
|
1864
1614
|
dev: false
|
1865
1615
|
|
1866
|
-
/@dcloudio/uni-app-vue@3.0.0-
|
1867
|
-
resolution: {integrity: sha512-
|
1616
|
+
/@dcloudio/uni-app-vue@3.0.0-3090920231225001:
|
1617
|
+
resolution: {integrity: sha512-D7I4jGSnpBihSXXeckRSD152Da2N2vKDtGF1sbNe2m1R04W36AkVUtzFGpSOml4MNIedCGtzGWXKaX7rIU+mFA==}
|
1868
1618
|
dev: false
|
1869
1619
|
|
1870
1620
|
/@dcloudio/uni-app-vue@3.0.0-alpha-3080720230627002:
|
1871
1621
|
resolution: {integrity: sha512-ENT0jIbR5ZNdxhOGn/GzibKG8UB/UjwWiSO926+u+m07r4dAbe9doPJL4J6D4tOIs0ZC0vm0DJBwodpiFjIxVA==}
|
1872
1622
|
dev: false
|
1873
1623
|
|
1874
|
-
/@dcloudio/uni-app@3.0.0-
|
1875
|
-
resolution: {integrity: sha512-
|
1624
|
+
/@dcloudio/uni-app@3.0.0-3090920231225001(@dcloudio/types@3.4.3)(postcss@8.4.31)(vue@3.3.8):
|
1625
|
+
resolution: {integrity: sha512-NsGrGjNmHc2zH1c5eqnHwSxuMNse+RknCQWIIWnnz+Q8lqHc1I9zf2mzxYXyNBHy4VhGRY2zblhkUyWLtGRaaA==}
|
1876
1626
|
peerDependencies:
|
1877
1627
|
'@dcloudio/types': ^3.3.2
|
1878
1628
|
dependencies:
|
1879
1629
|
'@dcloudio/types': 3.4.3
|
1880
|
-
'@dcloudio/uni-cloud': 3.0.0-
|
1881
|
-
'@dcloudio/uni-components': 3.0.0-
|
1882
|
-
'@dcloudio/uni-i18n': 3.0.0-
|
1883
|
-
'@dcloudio/uni-push': 3.0.0-
|
1884
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1885
|
-
'@dcloudio/uni-stat': 3.0.0-
|
1630
|
+
'@dcloudio/uni-cloud': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1631
|
+
'@dcloudio/uni-components': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1632
|
+
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
|
1633
|
+
'@dcloudio/uni-push': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1634
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
1635
|
+
'@dcloudio/uni-stat': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1886
1636
|
'@vue/shared': 3.2.47
|
1887
1637
|
transitivePeerDependencies:
|
1888
1638
|
- postcss
|
@@ -1911,13 +1661,13 @@ packages:
|
|
1911
1661
|
- vue
|
1912
1662
|
dev: false
|
1913
1663
|
|
1914
|
-
/@dcloudio/uni-automator@3.0.0-
|
1915
|
-
resolution: {integrity: sha512-
|
1664
|
+
/@dcloudio/uni-automator@3.0.0-3090920231225001(jest-environment-node@27.5.1)(jest@27.0.4)(postcss@8.4.31)(vue@3.3.8):
|
1665
|
+
resolution: {integrity: sha512-6PKcEJK6VAARpEtsFUypFEu6DeAminijHJb63x6oK1lIt0VlJFGjXuCTBbFQTf6uLFSsUGMV4wcCmh2NswXxmg==}
|
1916
1666
|
peerDependencies:
|
1917
1667
|
jest: 27.0.4
|
1918
1668
|
jest-environment-node: 27.5.1
|
1919
1669
|
dependencies:
|
1920
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
1670
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1921
1671
|
address: 1.2.2
|
1922
1672
|
cross-env: 7.0.3
|
1923
1673
|
debug: 4.3.4
|
@@ -1927,9 +1677,10 @@ packages:
|
|
1927
1677
|
jest-environment-node: 27.5.1
|
1928
1678
|
jsonc-parser: 3.2.0
|
1929
1679
|
licia: 1.38.2
|
1680
|
+
merge: 2.1.1
|
1930
1681
|
qrcode-reader: 1.0.4
|
1931
1682
|
qrcode-terminal: 0.12.0
|
1932
|
-
ws: 8.
|
1683
|
+
ws: 8.14.2
|
1933
1684
|
transitivePeerDependencies:
|
1934
1685
|
- bufferutil
|
1935
1686
|
- postcss
|
@@ -1939,16 +1690,16 @@ packages:
|
|
1939
1690
|
- vue
|
1940
1691
|
dev: true
|
1941
1692
|
|
1942
|
-
/@dcloudio/uni-cli-shared@3.0.0-
|
1943
|
-
resolution: {integrity: sha512-
|
1693
|
+
/@dcloudio/uni-cli-shared@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
1694
|
+
resolution: {integrity: sha512-6Pt2nCRI57OwIoqBNctPTQ05oJPTZGlocylmrbpUy8Q5Z2eyQNlnA/jTm9L5tM6nnfJKzBE/yOBMOgJDsVWNYw==}
|
1944
1695
|
engines: {node: ^14.18.0 || >=16.0.0}
|
1945
1696
|
dependencies:
|
1946
1697
|
'@ampproject/remapping': 2.2.1
|
1947
|
-
'@babel/core': 7.
|
1948
|
-
'@babel/parser': 7.
|
1949
|
-
'@babel/types': 7.
|
1950
|
-
'@dcloudio/uni-i18n': 3.0.0-
|
1951
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1698
|
+
'@babel/core': 7.23.3
|
1699
|
+
'@babel/parser': 7.23.3
|
1700
|
+
'@babel/types': 7.23.3
|
1701
|
+
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
|
1702
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
1952
1703
|
'@intlify/core-base': 9.1.9
|
1953
1704
|
'@intlify/shared': 9.1.9
|
1954
1705
|
'@intlify/vue-devtools': 9.1.9
|
@@ -1958,19 +1709,19 @@ packages:
|
|
1958
1709
|
'@vue/compiler-sfc': 3.2.47
|
1959
1710
|
'@vue/server-renderer': 3.2.47(vue@3.3.8)
|
1960
1711
|
'@vue/shared': 3.2.47
|
1961
|
-
autoprefixer: 10.4.
|
1712
|
+
autoprefixer: 10.4.16(postcss@8.4.31)
|
1962
1713
|
base64url: 3.0.1
|
1963
1714
|
chokidar: 3.5.3
|
1964
1715
|
compare-versions: 3.6.0
|
1965
1716
|
debug: 4.3.4
|
1966
|
-
es-module-lexer: 1.
|
1717
|
+
es-module-lexer: 1.4.1
|
1967
1718
|
esbuild: 0.17.19
|
1968
1719
|
estree-walker: 2.0.2
|
1969
|
-
fast-glob: 3.3.
|
1720
|
+
fast-glob: 3.3.2
|
1970
1721
|
fs-extra: 10.1.0
|
1971
1722
|
hash-sum: 2.0.0
|
1972
1723
|
jsonc-parser: 3.2.0
|
1973
|
-
magic-string: 0.30.
|
1724
|
+
magic-string: 0.30.5
|
1974
1725
|
merge: 2.1.1
|
1975
1726
|
mime: 3.0.0
|
1976
1727
|
module-alias: 2.2.3
|
@@ -1980,7 +1731,7 @@ packages:
|
|
1980
1731
|
postcss-load-config: 3.1.4(postcss@8.4.31)
|
1981
1732
|
postcss-modules: 4.3.1(postcss@8.4.31)
|
1982
1733
|
postcss-selector-parser: 6.0.13
|
1983
|
-
resolve: 1.22.
|
1734
|
+
resolve: 1.22.8
|
1984
1735
|
tapable: 2.2.1
|
1985
1736
|
xregexp: 3.1.0
|
1986
1737
|
transitivePeerDependencies:
|
@@ -2040,14 +1791,14 @@ packages:
|
|
2040
1791
|
- vue
|
2041
1792
|
dev: false
|
2042
1793
|
|
2043
|
-
/@dcloudio/uni-cloud@3.0.0-
|
2044
|
-
resolution: {integrity: sha512
|
1794
|
+
/@dcloudio/uni-cloud@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
1795
|
+
resolution: {integrity: sha512-+k8cnrQZlBYbY01Li9rR5PBcxxvn/i8sHpj+i3rbzJioks4nneR64ZP14Zisu07v5VwLcjuZNdI8Ato7KZjyUA==}
|
2045
1796
|
dependencies:
|
2046
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2047
|
-
'@dcloudio/uni-i18n': 3.0.0-
|
2048
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1797
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1798
|
+
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
|
1799
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2049
1800
|
'@vue/shared': 3.2.47
|
2050
|
-
fast-glob: 3.3.
|
1801
|
+
fast-glob: 3.3.2
|
2051
1802
|
transitivePeerDependencies:
|
2052
1803
|
- postcss
|
2053
1804
|
- supports-color
|
@@ -2070,12 +1821,12 @@ packages:
|
|
2070
1821
|
- vue
|
2071
1822
|
dev: false
|
2072
1823
|
|
2073
|
-
/@dcloudio/uni-components@3.0.0-
|
2074
|
-
resolution: {integrity: sha512-
|
1824
|
+
/@dcloudio/uni-components@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
1825
|
+
resolution: {integrity: sha512-fyqPOzmEjgfhwrElZH+yTBjqbCzefgZTkbZrgPaQkvXRT8sJpsTpcjF8wNPLo0dB+9XppkNAJDy+c9EkDJGeKQ==}
|
2075
1826
|
dependencies:
|
2076
|
-
'@dcloudio/uni-cloud': 3.0.0-
|
2077
|
-
'@dcloudio/uni-h5': 3.0.0-
|
2078
|
-
'@dcloudio/uni-i18n': 3.0.0-
|
1827
|
+
'@dcloudio/uni-cloud': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1828
|
+
'@dcloudio/uni-h5': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1829
|
+
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
|
2079
1830
|
transitivePeerDependencies:
|
2080
1831
|
- postcss
|
2081
1832
|
- supports-color
|
@@ -2096,11 +1847,11 @@ packages:
|
|
2096
1847
|
- vue
|
2097
1848
|
dev: false
|
2098
1849
|
|
2099
|
-
/@dcloudio/uni-h5-vite@3.0.0-
|
2100
|
-
resolution: {integrity: sha512-
|
1850
|
+
/@dcloudio/uni-h5-vite@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
1851
|
+
resolution: {integrity: sha512-gyhFfI77gL2saPef0+3nQ9+mi//Vk/N7PeZCSxq6oRpHIUE3TkpB3xvQrPkciJPG8ivHX5BGcqcOdZt36qgBtA==}
|
2101
1852
|
dependencies:
|
2102
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2103
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1853
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1854
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2104
1855
|
'@rollup/pluginutils': 4.2.1
|
2105
1856
|
'@vue/compiler-dom': 3.2.47
|
2106
1857
|
'@vue/compiler-sfc': 3.2.47
|
@@ -2138,10 +1889,10 @@ packages:
|
|
2138
1889
|
- vue
|
2139
1890
|
dev: false
|
2140
1891
|
|
2141
|
-
/@dcloudio/uni-h5-vue@3.0.0-
|
2142
|
-
resolution: {integrity: sha512-
|
1892
|
+
/@dcloudio/uni-h5-vue@3.0.0-3090920231225001(vue@3.3.8):
|
1893
|
+
resolution: {integrity: sha512-v19rnmf+V+2G07ABjViyaLqDcVJReBVuAb0xuSzNiLIezQ3GRFJAf4XEjbk56BrrRfdDRaNJ+6lrWP5j1KI8nw==}
|
2143
1894
|
dependencies:
|
2144
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1895
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2145
1896
|
'@vue/server-renderer': 3.2.47(vue@3.3.8)
|
2146
1897
|
transitivePeerDependencies:
|
2147
1898
|
- vue
|
@@ -2156,20 +1907,20 @@ packages:
|
|
2156
1907
|
- vue
|
2157
1908
|
dev: false
|
2158
1909
|
|
2159
|
-
/@dcloudio/uni-h5@3.0.0-
|
2160
|
-
resolution: {integrity: sha512-
|
1910
|
+
/@dcloudio/uni-h5@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
1911
|
+
resolution: {integrity: sha512-q3YR+wESXb9JdFOJdoX8I7ER2TTOvY23fHFMMq1wZW49WLufMMu/BKM7FUeHtX9uteqMIVJDrzrjknwLgNUJiw==}
|
2161
1912
|
dependencies:
|
2162
|
-
'@dcloudio/uni-h5-vite': 3.0.0-
|
2163
|
-
'@dcloudio/uni-h5-vue': 3.0.0-
|
2164
|
-
'@dcloudio/uni-i18n': 3.0.0-
|
2165
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1913
|
+
'@dcloudio/uni-h5-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1914
|
+
'@dcloudio/uni-h5-vue': 3.0.0-3090920231225001(vue@3.3.8)
|
1915
|
+
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
|
1916
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2166
1917
|
'@vue/server-renderer': 3.2.47(vue@3.3.8)
|
2167
1918
|
'@vue/shared': 3.2.47
|
2168
1919
|
debug: 4.3.4
|
2169
1920
|
localstorage-polyfill: 1.0.1
|
2170
1921
|
postcss-selector-parser: 6.0.13
|
2171
1922
|
safe-area-insets: 1.4.1
|
2172
|
-
vue-router: 4.2.
|
1923
|
+
vue-router: 4.2.5(vue@3.3.8)
|
2173
1924
|
xmlhttprequest: 1.8.0
|
2174
1925
|
transitivePeerDependencies:
|
2175
1926
|
- postcss
|
@@ -2200,20 +1951,20 @@ packages:
|
|
2200
1951
|
- vue
|
2201
1952
|
dev: false
|
2202
1953
|
|
2203
|
-
/@dcloudio/uni-i18n@3.0.0-
|
2204
|
-
resolution: {integrity: sha512-
|
1954
|
+
/@dcloudio/uni-i18n@3.0.0-3090920231225001:
|
1955
|
+
resolution: {integrity: sha512-GUiyXxeLvunToD2LC1FybqtrLw/cbKmtO/Q3mwue0rEurhaTrabiVoOntP4n1t4QMaL+dFsex06cRbZgafqlIw==}
|
2205
1956
|
|
2206
1957
|
/@dcloudio/uni-i18n@3.0.0-alpha-3080720230627002:
|
2207
1958
|
resolution: {integrity: sha512-Qw4dwP9316bcBnmXpp1uZtE0Gj+/YpFsSb+ueddwBftkQX2DahnfSNvmsqgQiOxMeFCp6VgTKEuhDSQub9YTVg==}
|
2208
1959
|
dev: false
|
2209
1960
|
|
2210
|
-
/@dcloudio/uni-mp-alipay@3.0.0-
|
2211
|
-
resolution: {integrity: sha512-
|
1961
|
+
/@dcloudio/uni-mp-alipay@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
1962
|
+
resolution: {integrity: sha512-zHcwqmFi9NtzW3cW9kAAjdfTbJ1YPrE8LKAbjHyp5XiytSRcTiuSqipBs4HgtVBijur8FPxrZtIYcGIQZQskBw==}
|
2212
1963
|
dependencies:
|
2213
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2214
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2215
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2216
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1964
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1965
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1966
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
1967
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2217
1968
|
'@vue/compiler-core': 3.2.47
|
2218
1969
|
'@vue/shared': 3.2.47
|
2219
1970
|
transitivePeerDependencies:
|
@@ -2239,22 +1990,22 @@ packages:
|
|
2239
1990
|
- vue
|
2240
1991
|
dev: false
|
2241
1992
|
|
2242
|
-
/@dcloudio/uni-mp-baidu@3.0.0-
|
2243
|
-
resolution: {integrity: sha512-
|
1993
|
+
/@dcloudio/uni-mp-baidu@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
1994
|
+
resolution: {integrity: sha512-zhS+I+KL7ecmni2lwy6KL5gpCqPQ/7gygkqBqdNIOq9eDB7c4rlPF6w+j7WmeBWeZPZpccYaQnsn9W7swpnmRA==}
|
2244
1995
|
dependencies:
|
2245
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2246
|
-
'@dcloudio/uni-mp-compiler': 3.0.0-
|
2247
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2248
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2249
|
-
'@dcloudio/uni-mp-weixin': 3.0.0-
|
2250
|
-
'@dcloudio/uni-shared': 3.0.0-
|
1996
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1997
|
+
'@dcloudio/uni-mp-compiler': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1998
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
1999
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2000
|
+
'@dcloudio/uni-mp-weixin': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2001
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2251
2002
|
'@vue/compiler-core': 3.2.47
|
2252
2003
|
'@vue/shared': 3.2.47
|
2253
2004
|
jimp: 0.10.3
|
2254
2005
|
licia: 1.38.2
|
2255
2006
|
qrcode-reader: 1.0.4
|
2256
2007
|
qrcode-terminal: 0.12.0
|
2257
|
-
ws: 8.
|
2008
|
+
ws: 8.14.2
|
2258
2009
|
transitivePeerDependencies:
|
2259
2010
|
- bufferutil
|
2260
2011
|
- postcss
|
@@ -2289,14 +2040,14 @@ packages:
|
|
2289
2040
|
- vue
|
2290
2041
|
dev: false
|
2291
2042
|
|
2292
|
-
/@dcloudio/uni-mp-compiler@3.0.0-
|
2293
|
-
resolution: {integrity: sha512-
|
2043
|
+
/@dcloudio/uni-mp-compiler@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2044
|
+
resolution: {integrity: sha512-q9pgXG1gtN9VMaEQj4jlmHBkKAwFsKTCsZu4FsH4kpFoQoSgdEFH8VAHTWKA9reaUVLJGInO0Nsd+t9rZJi3EA==}
|
2294
2045
|
dependencies:
|
2295
|
-
'@babel/generator': 7.
|
2296
|
-
'@babel/parser': 7.
|
2297
|
-
'@babel/types': 7.
|
2298
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2299
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2046
|
+
'@babel/generator': 7.23.3
|
2047
|
+
'@babel/parser': 7.23.3
|
2048
|
+
'@babel/types': 7.23.3
|
2049
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2050
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2300
2051
|
'@vue/compiler-core': 3.2.47
|
2301
2052
|
'@vue/compiler-dom': 3.2.47
|
2302
2053
|
'@vue/shared': 3.2.47
|
@@ -2327,14 +2078,14 @@ packages:
|
|
2327
2078
|
- vue
|
2328
2079
|
dev: false
|
2329
2080
|
|
2330
|
-
/@dcloudio/uni-mp-jd@3.0.0-
|
2331
|
-
resolution: {integrity: sha512-
|
2081
|
+
/@dcloudio/uni-mp-jd@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2082
|
+
resolution: {integrity: sha512-n+zDI+dRyVgSnp8vcLnflxs7usMEy/sfx2FWB77XswPHiMOi8Wz7SK/CQln/ScKD0pRWDPiXcLh4WXS1u3H0Hg==}
|
2332
2083
|
dependencies:
|
2333
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2334
|
-
'@dcloudio/uni-mp-compiler': 3.0.0-
|
2335
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2336
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2337
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2084
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2085
|
+
'@dcloudio/uni-mp-compiler': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2086
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2087
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2088
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2338
2089
|
'@vue/shared': 3.2.47
|
2339
2090
|
transitivePeerDependencies:
|
2340
2091
|
- postcss
|
@@ -2359,15 +2110,15 @@ packages:
|
|
2359
2110
|
- vue
|
2360
2111
|
dev: false
|
2361
2112
|
|
2362
|
-
/@dcloudio/uni-mp-kuaishou@3.0.0-
|
2363
|
-
resolution: {integrity: sha512-
|
2113
|
+
/@dcloudio/uni-mp-kuaishou@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2114
|
+
resolution: {integrity: sha512-Z3VFtDNDUEGkHOs5hzB+HiOuJWxGsLh6jQYlGLwXFNmWJFYWGaEBsAA+NztWOB4fRB2JeYSoTu78Al3MWFRwzQ==}
|
2364
2115
|
dependencies:
|
2365
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2366
|
-
'@dcloudio/uni-mp-compiler': 3.0.0-
|
2367
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2368
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2369
|
-
'@dcloudio/uni-mp-weixin': 3.0.0-
|
2370
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2116
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2117
|
+
'@dcloudio/uni-mp-compiler': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2118
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2119
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2120
|
+
'@dcloudio/uni-mp-weixin': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2121
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2371
2122
|
'@vue/compiler-core': 3.2.47
|
2372
2123
|
'@vue/shared': 3.2.47
|
2373
2124
|
transitivePeerDependencies:
|
@@ -2399,15 +2150,15 @@ packages:
|
|
2399
2150
|
- vue
|
2400
2151
|
dev: false
|
2401
2152
|
|
2402
|
-
/@dcloudio/uni-mp-lark@3.0.0-
|
2403
|
-
resolution: {integrity: sha512-
|
2153
|
+
/@dcloudio/uni-mp-lark@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2154
|
+
resolution: {integrity: sha512-LuXWe7vf2fncf1Hj0PpxKYCRWYwqhcz3kKkauNa9nVNjEwiD83UthW5oDxVWMCklIFjKw91mhe+zqq2Oc8bl1w==}
|
2404
2155
|
dependencies:
|
2405
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2406
|
-
'@dcloudio/uni-mp-compiler': 3.0.0-
|
2407
|
-
'@dcloudio/uni-mp-toutiao': 3.0.0-
|
2408
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2409
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2410
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2156
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2157
|
+
'@dcloudio/uni-mp-compiler': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2158
|
+
'@dcloudio/uni-mp-toutiao': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2159
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2160
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2161
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2411
2162
|
'@vue/compiler-core': 3.2.47
|
2412
2163
|
'@vue/shared': 3.2.47
|
2413
2164
|
transitivePeerDependencies:
|
@@ -2435,13 +2186,13 @@ packages:
|
|
2435
2186
|
- vue
|
2436
2187
|
dev: false
|
2437
2188
|
|
2438
|
-
/@dcloudio/uni-mp-qq@3.0.0-
|
2439
|
-
resolution: {integrity: sha512-
|
2189
|
+
/@dcloudio/uni-mp-qq@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2190
|
+
resolution: {integrity: sha512-f114i9LhYxfgHUFpSKcOHWL5ZqOttwbzNeK7vMRaqUSWX8VKxzXhqJ5OOKB2HeKyMZGJ50wxvyYNYiR01dBg+A==}
|
2440
2191
|
dependencies:
|
2441
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2442
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2443
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2444
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2192
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2193
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2194
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2195
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2445
2196
|
'@vue/shared': 3.2.47
|
2446
2197
|
fs-extra: 10.1.0
|
2447
2198
|
transitivePeerDependencies:
|
@@ -2467,14 +2218,14 @@ packages:
|
|
2467
2218
|
- vue
|
2468
2219
|
dev: false
|
2469
2220
|
|
2470
|
-
/@dcloudio/uni-mp-toutiao@3.0.0-
|
2471
|
-
resolution: {integrity: sha512-
|
2221
|
+
/@dcloudio/uni-mp-toutiao@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2222
|
+
resolution: {integrity: sha512-g6fpZeUS2mBDIalhQEKXnkMAKUP+xGz4poJrjABMRu6L2ayXjOCYHFC0uZEIoagcD5zb3UN4ZrPaQvFtcErqRA==}
|
2472
2223
|
dependencies:
|
2473
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2474
|
-
'@dcloudio/uni-mp-compiler': 3.0.0-
|
2475
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2476
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2477
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2224
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2225
|
+
'@dcloudio/uni-mp-compiler': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2226
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2227
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2228
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2478
2229
|
'@vue/compiler-core': 3.2.47
|
2479
2230
|
'@vue/shared': 3.2.47
|
2480
2231
|
transitivePeerDependencies:
|
@@ -2501,14 +2252,14 @@ packages:
|
|
2501
2252
|
- vue
|
2502
2253
|
dev: false
|
2503
2254
|
|
2504
|
-
/@dcloudio/uni-mp-vite@3.0.0-
|
2505
|
-
resolution: {integrity: sha512-
|
2255
|
+
/@dcloudio/uni-mp-vite@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2256
|
+
resolution: {integrity: sha512-kcw5gPzIjMonakkT1PJtBwfr3PA6YKNxB+hJw2+gEnUFHCAVASXAOO1i7AmtWSqJsRI2FigIDDw1rjeMwY/BHg==}
|
2506
2257
|
dependencies:
|
2507
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2508
|
-
'@dcloudio/uni-i18n': 3.0.0-
|
2509
|
-
'@dcloudio/uni-mp-compiler': 3.0.0-
|
2510
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2511
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2258
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2259
|
+
'@dcloudio/uni-i18n': 3.0.0-3090920231225001
|
2260
|
+
'@dcloudio/uni-mp-compiler': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2261
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2262
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2512
2263
|
'@vue/compiler-sfc': 3.2.47
|
2513
2264
|
'@vue/shared': 3.2.47
|
2514
2265
|
debug: 4.3.4
|
@@ -2537,10 +2288,10 @@ packages:
|
|
2537
2288
|
- vue
|
2538
2289
|
dev: false
|
2539
2290
|
|
2540
|
-
/@dcloudio/uni-mp-vue@3.0.0-
|
2541
|
-
resolution: {integrity: sha512-
|
2291
|
+
/@dcloudio/uni-mp-vue@3.0.0-3090920231225001:
|
2292
|
+
resolution: {integrity: sha512-oSlZ9lynhc6f8q7GRQMecZIzUrxnh0pIByDS9zOaYyXfT8oemA7ai2FSpX+McpSQ43VhJfPHzeJbeK2V7F0Csg==}
|
2542
2293
|
dependencies:
|
2543
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2294
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2544
2295
|
'@vue/shared': 3.2.47
|
2545
2296
|
dev: false
|
2546
2297
|
|
@@ -2551,19 +2302,19 @@ packages:
|
|
2551
2302
|
'@vue/shared': 3.2.47
|
2552
2303
|
dev: false
|
2553
2304
|
|
2554
|
-
/@dcloudio/uni-mp-weixin@3.0.0-
|
2555
|
-
resolution: {integrity: sha512-
|
2305
|
+
/@dcloudio/uni-mp-weixin@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2306
|
+
resolution: {integrity: sha512-XV43ox/P19pTjvjXrDeIrjmbH8VUeV/iUm7ufK77gCwSAEff2yZOd/FlmikQncQItJP1M7Sxv8DnilEbPeLoBA==}
|
2556
2307
|
dependencies:
|
2557
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2558
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2559
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2560
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2308
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2309
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2310
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2311
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2561
2312
|
'@vue/shared': 3.2.47
|
2562
2313
|
jimp: 0.10.3
|
2563
2314
|
licia: 1.38.2
|
2564
2315
|
qrcode-reader: 1.0.4
|
2565
2316
|
qrcode-terminal: 0.12.0
|
2566
|
-
ws: 8.
|
2317
|
+
ws: 8.14.2
|
2567
2318
|
transitivePeerDependencies:
|
2568
2319
|
- bufferutil
|
2569
2320
|
- postcss
|
@@ -2611,12 +2362,12 @@ packages:
|
|
2611
2362
|
- vue
|
2612
2363
|
dev: false
|
2613
2364
|
|
2614
|
-
/@dcloudio/uni-nvue-styler@3.0.0-
|
2615
|
-
resolution: {integrity: sha512-
|
2365
|
+
/@dcloudio/uni-nvue-styler@3.0.0-3090920231225001:
|
2366
|
+
resolution: {integrity: sha512-rUO12CpVcMV1pMof7w9cs6FpCKuLPhA3fU7Tfl19XVJXv0IY//rX2aucZW0kOpw45RVJyAHbPBFuQKz7kEiGlA==}
|
2616
2367
|
dependencies:
|
2617
2368
|
'@vue/shared': 3.2.47
|
2618
2369
|
parse-css-font: 4.0.0
|
2619
|
-
postcss: 8.4.
|
2370
|
+
postcss: 8.4.31
|
2620
2371
|
dev: false
|
2621
2372
|
|
2622
2373
|
/@dcloudio/uni-nvue-styler@3.0.0-alpha-3080720230627002:
|
@@ -2627,10 +2378,10 @@ packages:
|
|
2627
2378
|
postcss: 8.4.31
|
2628
2379
|
dev: false
|
2629
2380
|
|
2630
|
-
/@dcloudio/uni-push@3.0.0-
|
2631
|
-
resolution: {integrity: sha512-
|
2381
|
+
/@dcloudio/uni-push@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2382
|
+
resolution: {integrity: sha512-aqUWb1DeF9y9en3fx03eQTZzKLjUCvakJZtmQQFbj69lV2Zh/v/EWKWkF0iOOezPGBTHXJvVDQMWGkdj1ez19Q==}
|
2632
2383
|
dependencies:
|
2633
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2384
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2634
2385
|
transitivePeerDependencies:
|
2635
2386
|
- postcss
|
2636
2387
|
- supports-color
|
@@ -2649,13 +2400,13 @@ packages:
|
|
2649
2400
|
- vue
|
2650
2401
|
dev: false
|
2651
2402
|
|
2652
|
-
/@dcloudio/uni-quickapp-webview@3.0.0-
|
2653
|
-
resolution: {integrity: sha512-
|
2403
|
+
/@dcloudio/uni-quickapp-webview@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2404
|
+
resolution: {integrity: sha512-sFKH4WboIKvkVNEmxkhLvzE/Wya5YwFXdL/AoM8rxQO7DXP+eNOtMhapWz2NEKXN8XGM3WIVTjwyMINgg5+Ctw==}
|
2654
2405
|
dependencies:
|
2655
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2656
|
-
'@dcloudio/uni-mp-vite': 3.0.0-
|
2657
|
-
'@dcloudio/uni-mp-vue': 3.0.0-
|
2658
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2406
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2407
|
+
'@dcloudio/uni-mp-vite': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2408
|
+
'@dcloudio/uni-mp-vue': 3.0.0-3090920231225001
|
2409
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2659
2410
|
'@vue/shared': 3.2.47
|
2660
2411
|
transitivePeerDependencies:
|
2661
2412
|
- postcss
|
@@ -2679,8 +2430,8 @@ packages:
|
|
2679
2430
|
- vue
|
2680
2431
|
dev: false
|
2681
2432
|
|
2682
|
-
/@dcloudio/uni-shared@3.0.0-
|
2683
|
-
resolution: {integrity: sha512-
|
2433
|
+
/@dcloudio/uni-shared@3.0.0-3090920231225001:
|
2434
|
+
resolution: {integrity: sha512-OXx/KBMuxAGayThVNshnZ17qZJrxjcdFeGwWJrDeTHmCpg+/Yr5yK+ubCQjN2kc4jttwq2fIkqqNs2xe4QFlSQ==}
|
2684
2435
|
dependencies:
|
2685
2436
|
'@vue/shared': 3.2.47
|
2686
2437
|
|
@@ -2690,15 +2441,15 @@ packages:
|
|
2690
2441
|
'@vue/shared': 3.2.47
|
2691
2442
|
dev: false
|
2692
2443
|
|
2693
|
-
/@dcloudio/uni-stacktracey@3.0.0-
|
2694
|
-
resolution: {integrity: sha512-
|
2444
|
+
/@dcloudio/uni-stacktracey@3.0.0-3090920231225001:
|
2445
|
+
resolution: {integrity: sha512-UN0qPDt6uTo2M9HxD4WgJHJIrCWLpUkseBOoOseZ2QVqfFCTQvLcH3ZVr7fx4gkoc5FDCp1YI2uiiS2AnjqZtA==}
|
2695
2446
|
dev: true
|
2696
2447
|
|
2697
|
-
/@dcloudio/uni-stat@3.0.0-
|
2698
|
-
resolution: {integrity: sha512-
|
2448
|
+
/@dcloudio/uni-stat@3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8):
|
2449
|
+
resolution: {integrity: sha512-gac3rONnRtLCSTXn2QhnwjsZJTfVA8uHRFyp5Uf03rQbu82MuNVOzi7p7Q3Y/0uiCHSldZ47hhmwbqtb/qdKOQ==}
|
2699
2450
|
dependencies:
|
2700
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2701
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2451
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2452
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2702
2453
|
debug: 4.3.4
|
2703
2454
|
transitivePeerDependencies:
|
2704
2455
|
- postcss
|
@@ -2724,21 +2475,21 @@ packages:
|
|
2724
2475
|
resolution: {integrity: sha512-e/lSbvR79KH9+d3D4ueNbvD6szigjO/5IyjBNmiTqaj0PTS324fBV3L6f3s1qpkYonM4rdOl000hVOcAg6Gh/A==}
|
2725
2476
|
dev: true
|
2726
2477
|
|
2727
|
-
/@dcloudio/vite-plugin-uni@3.0.0-
|
2728
|
-
resolution: {integrity: sha512-
|
2478
|
+
/@dcloudio/vite-plugin-uni@3.0.0-3090920231225001(@vueuse/core@9.13.0)(postcss@8.4.31)(vite@4.5.0)(vue@3.3.8):
|
2479
|
+
resolution: {integrity: sha512-kV/J7yl5ojsd1NZZ1eMziRDrz+MPbjDMm6rWG3fyW1u8Kzj06jUzzi7HRlkaWiPJHAmeRWGDf/6RFoSd+8fYCg==}
|
2729
2480
|
engines: {node: ^14.18.0 || >=16.0.0}
|
2730
2481
|
hasBin: true
|
2731
2482
|
peerDependencies:
|
2732
2483
|
vite: ^4.0.0
|
2733
2484
|
dependencies:
|
2734
|
-
'@babel/core': 7.
|
2735
|
-
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.
|
2736
|
-
'@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.
|
2737
|
-
'@dcloudio/uni-cli-shared': 3.0.0-
|
2738
|
-
'@dcloudio/uni-shared': 3.0.0-
|
2485
|
+
'@babel/core': 7.23.3
|
2486
|
+
'@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.3)
|
2487
|
+
'@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.23.3)
|
2488
|
+
'@dcloudio/uni-cli-shared': 3.0.0-3090920231225001(postcss@8.4.31)(vue@3.3.8)
|
2489
|
+
'@dcloudio/uni-shared': 3.0.0-3090920231225001
|
2739
2490
|
'@rollup/pluginutils': 4.2.1
|
2740
|
-
'@vitejs/plugin-legacy': 4.1.1(terser@5.
|
2741
|
-
'@vitejs/plugin-vue': 4.
|
2491
|
+
'@vitejs/plugin-legacy': 4.1.1(terser@5.24.0)(vite@4.5.0)
|
2492
|
+
'@vitejs/plugin-vue': 4.4.1(vite@4.5.0)(vue@3.3.8)
|
2742
2493
|
'@vitejs/plugin-vue-jsx': 3.0.1(vite@4.5.0)(vue@3.3.8)
|
2743
2494
|
'@vue/compiler-core': 3.2.47
|
2744
2495
|
'@vue/compiler-dom': 3.2.47
|
@@ -2748,16 +2499,20 @@ packages:
|
|
2748
2499
|
debug: 4.3.4
|
2749
2500
|
estree-walker: 2.0.2
|
2750
2501
|
express: 4.18.2
|
2751
|
-
fast-glob: 3.3.
|
2502
|
+
fast-glob: 3.3.2
|
2752
2503
|
fs-extra: 10.1.0
|
2753
2504
|
hash-sum: 2.0.0
|
2754
2505
|
jsonc-parser: 3.2.0
|
2755
|
-
magic-string: 0.30.
|
2506
|
+
magic-string: 0.30.5
|
2756
2507
|
picocolors: 1.0.0
|
2757
|
-
terser: 5.
|
2758
|
-
|
2508
|
+
terser: 5.24.0
|
2509
|
+
unplugin-auto-import: 0.16.7(@vueuse/core@9.13.0)
|
2510
|
+
vite: 4.5.0(sass@1.69.5)(terser@5.24.0)
|
2759
2511
|
transitivePeerDependencies:
|
2512
|
+
- '@nuxt/kit'
|
2513
|
+
- '@vueuse/core'
|
2760
2514
|
- postcss
|
2515
|
+
- rollup
|
2761
2516
|
- supports-color
|
2762
2517
|
- ts-node
|
2763
2518
|
- vue
|
@@ -3898,11 +3653,7 @@ packages:
|
|
3898
3653
|
dependencies:
|
3899
3654
|
'@jridgewell/set-array': 1.1.2
|
3900
3655
|
'@jridgewell/sourcemap-codec': 1.4.15
|
3901
|
-
'@jridgewell/trace-mapping': 0.3.
|
3902
|
-
|
3903
|
-
/@jridgewell/resolve-uri@3.1.0:
|
3904
|
-
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
|
3905
|
-
engines: {node: '>=6.0.0'}
|
3656
|
+
'@jridgewell/trace-mapping': 0.3.20
|
3906
3657
|
|
3907
3658
|
/@jridgewell/resolve-uri@3.1.1:
|
3908
3659
|
resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==}
|
@@ -3916,20 +3667,11 @@ packages:
|
|
3916
3667
|
resolution: {integrity: sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==}
|
3917
3668
|
dependencies:
|
3918
3669
|
'@jridgewell/gen-mapping': 0.3.3
|
3919
|
-
'@jridgewell/trace-mapping': 0.3.
|
3920
|
-
|
3921
|
-
/@jridgewell/sourcemap-codec@1.4.14:
|
3922
|
-
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
3670
|
+
'@jridgewell/trace-mapping': 0.3.20
|
3923
3671
|
|
3924
3672
|
/@jridgewell/sourcemap-codec@1.4.15:
|
3925
3673
|
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
|
3926
3674
|
|
3927
|
-
/@jridgewell/trace-mapping@0.3.18:
|
3928
|
-
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
|
3929
|
-
dependencies:
|
3930
|
-
'@jridgewell/resolve-uri': 3.1.0
|
3931
|
-
'@jridgewell/sourcemap-codec': 1.4.14
|
3932
|
-
|
3933
3675
|
/@jridgewell/trace-mapping@0.3.20:
|
3934
3676
|
resolution: {integrity: sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==}
|
3935
3677
|
dependencies:
|
@@ -3983,7 +3725,6 @@ packages:
|
|
3983
3725
|
'@types/estree': 1.0.5
|
3984
3726
|
estree-walker: 2.0.2
|
3985
3727
|
picomatch: 2.3.1
|
3986
|
-
dev: true
|
3987
3728
|
|
3988
3729
|
/@sinonjs/commons@1.8.6:
|
3989
3730
|
resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
|
@@ -4480,7 +4221,7 @@ packages:
|
|
4480
4221
|
optional: true
|
4481
4222
|
dependencies:
|
4482
4223
|
'@dcloudio/types': 3.4.3
|
4483
|
-
'@dcloudio/uni-app': 3.0.0-
|
4224
|
+
'@dcloudio/uni-app': 3.0.0-3090920231225001(@dcloudio/types@3.4.3)(postcss@8.4.31)(vue@3.3.8)
|
4484
4225
|
'@vueuse/core': 9.13.0(vue@3.3.8)
|
4485
4226
|
typescript: 5.2.2
|
4486
4227
|
vue: 3.3.8(typescript@5.2.2)
|
@@ -4556,7 +4297,7 @@ packages:
|
|
4556
4297
|
'@unocss/core': 0.57.4
|
4557
4298
|
'@unocss/reset': 0.57.4
|
4558
4299
|
'@unocss/vite': 0.57.4(vite@4.5.0)
|
4559
|
-
vite: 4.5.0(sass@1.69.5)(terser@5.
|
4300
|
+
vite: 4.5.0(sass@1.69.5)(terser@5.24.0)
|
4560
4301
|
transitivePeerDependencies:
|
4561
4302
|
- rollup
|
4562
4303
|
dev: true
|
@@ -4749,27 +4490,27 @@ packages:
|
|
4749
4490
|
chokidar: 3.5.3
|
4750
4491
|
fast-glob: 3.3.2
|
4751
4492
|
magic-string: 0.30.5
|
4752
|
-
vite: 4.5.0(sass@1.69.5)(terser@5.
|
4493
|
+
vite: 4.5.0(sass@1.69.5)(terser@5.24.0)
|
4753
4494
|
transitivePeerDependencies:
|
4754
4495
|
- rollup
|
4755
4496
|
dev: true
|
4756
4497
|
|
4757
|
-
/@vitejs/plugin-legacy@4.1.1(terser@5.
|
4498
|
+
/@vitejs/plugin-legacy@4.1.1(terser@5.24.0)(vite@4.5.0):
|
4758
4499
|
resolution: {integrity: sha512-um3gbVouD2Q/g19C0qpDfHwveXDCAHzs8OC3e9g6aXpKoD1H14himgs7wkMnhAynBJy7QqUoZNAXDuqN8zLR2g==}
|
4759
4500
|
engines: {node: ^14.18.0 || >=16.0.0}
|
4760
4501
|
peerDependencies:
|
4761
4502
|
terser: ^5.4.0
|
4762
4503
|
vite: ^4.0.0
|
4763
4504
|
dependencies:
|
4764
|
-
'@babel/core': 7.
|
4765
|
-
'@babel/preset-env': 7.22.9(@babel/core@7.
|
4766
|
-
browserslist: 4.
|
4505
|
+
'@babel/core': 7.23.3
|
4506
|
+
'@babel/preset-env': 7.22.9(@babel/core@7.23.3)
|
4507
|
+
browserslist: 4.22.1
|
4767
4508
|
core-js: 3.32.0
|
4768
|
-
magic-string: 0.30.
|
4509
|
+
magic-string: 0.30.5
|
4769
4510
|
regenerator-runtime: 0.13.11
|
4770
4511
|
systemjs: 6.14.1
|
4771
|
-
terser: 5.
|
4772
|
-
vite: 4.5.0(sass@1.69.5)(terser@5.
|
4512
|
+
terser: 5.24.0
|
4513
|
+
vite: 4.5.0(sass@1.69.5)(terser@5.24.0)
|
4773
4514
|
transitivePeerDependencies:
|
4774
4515
|
- supports-color
|
4775
4516
|
dev: true
|
@@ -4781,25 +4522,15 @@ packages:
|
|
4781
4522
|
vite: ^4.0.0
|
4782
4523
|
vue: ^3.0.0
|
4783
4524
|
dependencies:
|
4784
|
-
'@babel/core': 7.
|
4785
|
-
'@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.
|
4786
|
-
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.
|
4787
|
-
vite: 4.5.0(sass@1.69.5)(terser@5.
|
4525
|
+
'@babel/core': 7.23.3
|
4526
|
+
'@babel/plugin-transform-typescript': 7.22.9(@babel/core@7.23.3)
|
4527
|
+
'@vue/babel-plugin-jsx': 1.1.5(@babel/core@7.23.3)
|
4528
|
+
vite: 4.5.0(sass@1.69.5)(terser@5.24.0)
|
4788
4529
|
vue: 3.3.8(typescript@5.2.2)
|
4789
4530
|
transitivePeerDependencies:
|
4790
4531
|
- supports-color
|
4791
4532
|
dev: true
|
4792
4533
|
|
4793
|
-
/@vitejs/plugin-vue@4.2.3(vite@4.5.0)(vue@3.3.8):
|
4794
|
-
resolution: {integrity: sha512-R6JDUfiZbJA9cMiguQ7jxALsgiprjBeHL5ikpXfJCH62pPHtI+JdJ5xWj6Ev73yXSlYl86+blXn1kZHQ7uElxw==}
|
4795
|
-
engines: {node: ^14.18.0 || >=16.0.0}
|
4796
|
-
peerDependencies:
|
4797
|
-
vite: ^4.0.0
|
4798
|
-
vue: ^3.2.25
|
4799
|
-
dependencies:
|
4800
|
-
vite: 4.5.0(sass@1.69.5)(terser@5.19.2)
|
4801
|
-
vue: 3.3.8(typescript@5.2.2)
|
4802
|
-
|
4803
4534
|
/@vitejs/plugin-vue@4.4.1(vite@4.5.0)(vue@3.3.8):
|
4804
4535
|
resolution: {integrity: sha512-HCQG8VDFDM7YDAdcj5QI5DvUi+r6xvo9LgvYdk7LSkUNwdpempdB5horkMSZsbdey9Ywsf5aaU8kEPw9M5kREA==}
|
4805
4536
|
engines: {node: ^14.18.0 || >=16.0.0}
|
@@ -4807,9 +4538,8 @@ packages:
|
|
4807
4538
|
vite: ^4.0.0
|
4808
4539
|
vue: ^3.2.25
|
4809
4540
|
dependencies:
|
4810
|
-
vite: 4.5.0(sass@1.69.5)(terser@5.
|
4541
|
+
vite: 4.5.0(sass@1.69.5)(terser@5.24.0)
|
4811
4542
|
vue: 3.3.8(typescript@5.2.2)
|
4812
|
-
dev: false
|
4813
4543
|
|
4814
4544
|
/@vscode/l10n@0.0.16:
|
4815
4545
|
resolution: {integrity: sha512-JT5CvrIYYCrmB+dCana8sUqJEcGB1ZDXNLMQ2+42bW995WmNoenijWMUdZfwmuQUTQcEVVIa2OecZzTYWUW9Cg==}
|
@@ -4819,17 +4549,17 @@ packages:
|
|
4819
4549
|
resolution: {integrity: sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==}
|
4820
4550
|
dev: true
|
4821
4551
|
|
4822
|
-
/@vue/babel-plugin-jsx@1.1.5(@babel/core@7.
|
4552
|
+
/@vue/babel-plugin-jsx@1.1.5(@babel/core@7.23.3):
|
4823
4553
|
resolution: {integrity: sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==}
|
4824
4554
|
peerDependencies:
|
4825
4555
|
'@babel/core': ^7.0.0-0
|
4826
4556
|
dependencies:
|
4827
|
-
'@babel/core': 7.
|
4828
|
-
'@babel/helper-module-imports': 7.22.
|
4829
|
-
'@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.
|
4830
|
-
'@babel/template': 7.22.
|
4831
|
-
'@babel/traverse': 7.
|
4832
|
-
'@babel/types': 7.
|
4557
|
+
'@babel/core': 7.23.3
|
4558
|
+
'@babel/helper-module-imports': 7.22.15
|
4559
|
+
'@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.3)
|
4560
|
+
'@babel/template': 7.22.15
|
4561
|
+
'@babel/traverse': 7.23.3
|
4562
|
+
'@babel/types': 7.23.3
|
4833
4563
|
'@vue/babel-helper-vue-transform-on': 1.1.5
|
4834
4564
|
camelcase: 6.3.0
|
4835
4565
|
html-tags: 3.3.1
|
@@ -4841,7 +4571,7 @@ packages:
|
|
4841
4571
|
/@vue/compiler-core@3.2.47:
|
4842
4572
|
resolution: {integrity: sha512-p4D7FDnQb7+YJmO2iPEv0SQNeNzcbHdGByJDsT4lynf63AFkOTFN07HsiRSvjGo0QrxR/o3d0hUyNCUnBU2Tig==}
|
4843
4573
|
dependencies:
|
4844
|
-
'@babel/parser': 7.
|
4574
|
+
'@babel/parser': 7.23.3
|
4845
4575
|
'@vue/shared': 3.2.47
|
4846
4576
|
estree-walker: 2.0.2
|
4847
4577
|
source-map: 0.6.1
|
@@ -4869,7 +4599,7 @@ packages:
|
|
4869
4599
|
/@vue/compiler-sfc@3.2.47:
|
4870
4600
|
resolution: {integrity: sha512-rog05W+2IFfxjMcFw10tM9+f7i/+FFpZJJ5XHX72NP9eC2uRD+42M3pYcQqDXVYoj74kHMSEdQ/WmCjt8JFksQ==}
|
4871
4601
|
dependencies:
|
4872
|
-
'@babel/parser': 7.
|
4602
|
+
'@babel/parser': 7.23.3
|
4873
4603
|
'@vue/compiler-core': 3.2.47
|
4874
4604
|
'@vue/compiler-dom': 3.2.47
|
4875
4605
|
'@vue/compiler-ssr': 3.2.47
|
@@ -4877,7 +4607,7 @@ packages:
|
|
4877
4607
|
'@vue/shared': 3.2.47
|
4878
4608
|
estree-walker: 2.0.2
|
4879
4609
|
magic-string: 0.25.9
|
4880
|
-
postcss: 8.4.
|
4610
|
+
postcss: 8.4.31
|
4881
4611
|
source-map: 0.6.1
|
4882
4612
|
|
4883
4613
|
/@vue/compiler-sfc@3.3.8:
|
@@ -4917,7 +4647,7 @@ packages:
|
|
4917
4647
|
/@vue/reactivity-transform@3.2.47:
|
4918
4648
|
resolution: {integrity: sha512-m8lGXw8rdnPVVIdIFhf0LeQ/ixyHkH5plYuS83yop5n7ggVJU+z5v0zecwEnX7fa7HNLBhh2qngJJkxpwEEmYA==}
|
4919
4649
|
dependencies:
|
4920
|
-
'@babel/parser': 7.
|
4650
|
+
'@babel/parser': 7.23.3
|
4921
4651
|
'@vue/compiler-core': 3.2.47
|
4922
4652
|
'@vue/shared': 3.2.47
|
4923
4653
|
estree-walker: 2.0.2
|
@@ -5116,6 +4846,7 @@ packages:
|
|
5116
4846
|
|
5117
4847
|
/abab@2.0.6:
|
5118
4848
|
resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
|
4849
|
+
deprecated: Use your platform's native atob() and btoa() methods instead
|
5119
4850
|
dev: true
|
5120
4851
|
|
5121
4852
|
/accepts@1.3.8:
|
@@ -5160,11 +4891,6 @@ packages:
|
|
5160
4891
|
hasBin: true
|
5161
4892
|
dev: true
|
5162
4893
|
|
5163
|
-
/acorn@8.10.0:
|
5164
|
-
resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==}
|
5165
|
-
engines: {node: '>=0.4.0'}
|
5166
|
-
hasBin: true
|
5167
|
-
|
5168
4894
|
/acorn@8.11.2:
|
5169
4895
|
resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
|
5170
4896
|
engines: {node: '>=0.4.0'}
|
@@ -5314,21 +5040,6 @@ packages:
|
|
5314
5040
|
/asynckit@0.4.0:
|
5315
5041
|
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
5316
5042
|
|
5317
|
-
/autoprefixer@10.4.14(postcss@8.4.31):
|
5318
|
-
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
|
5319
|
-
engines: {node: ^10 || ^12 || >=14}
|
5320
|
-
hasBin: true
|
5321
|
-
peerDependencies:
|
5322
|
-
postcss: ^8.1.0
|
5323
|
-
dependencies:
|
5324
|
-
browserslist: 4.21.10
|
5325
|
-
caniuse-lite: 1.0.30001518
|
5326
|
-
fraction.js: 4.2.0
|
5327
|
-
normalize-range: 0.1.2
|
5328
|
-
picocolors: 1.0.0
|
5329
|
-
postcss: 8.4.31
|
5330
|
-
postcss-value-parser: 4.2.0
|
5331
|
-
|
5332
5043
|
/autoprefixer@10.4.16(postcss@8.4.31):
|
5333
5044
|
resolution: {integrity: sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==}
|
5334
5045
|
engines: {node: ^10 || ^12 || >=14}
|
@@ -5343,7 +5054,6 @@ packages:
|
|
5343
5054
|
picocolors: 1.0.0
|
5344
5055
|
postcss: 8.4.31
|
5345
5056
|
postcss-value-parser: 4.2.0
|
5346
|
-
dev: false
|
5347
5057
|
|
5348
5058
|
/axios@1.6.0:
|
5349
5059
|
resolution: {integrity: sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==}
|
@@ -5397,38 +5107,38 @@ packages:
|
|
5397
5107
|
'@types/babel__traverse': 7.20.4
|
5398
5108
|
dev: true
|
5399
5109
|
|
5400
|
-
/babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.
|
5110
|
+
/babel-plugin-polyfill-corejs2@0.4.5(@babel/core@7.23.3):
|
5401
5111
|
resolution: {integrity: sha512-19hwUH5FKl49JEsvyTcoHakh6BE0wgXLLptIyKZ3PijHc/Ci521wygORCUCCred+E/twuqRyAkE02BAWPmsHOg==}
|
5402
5112
|
peerDependencies:
|
5403
5113
|
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
5404
5114
|
dependencies:
|
5405
|
-
'@babel/compat-data': 7.
|
5406
|
-
'@babel/core': 7.
|
5407
|
-
'@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.
|
5115
|
+
'@babel/compat-data': 7.23.3
|
5116
|
+
'@babel/core': 7.23.3
|
5117
|
+
'@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.3)
|
5408
5118
|
semver: 6.3.1
|
5409
5119
|
transitivePeerDependencies:
|
5410
5120
|
- supports-color
|
5411
5121
|
dev: true
|
5412
5122
|
|
5413
|
-
/babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.
|
5123
|
+
/babel-plugin-polyfill-corejs3@0.8.3(@babel/core@7.23.3):
|
5414
5124
|
resolution: {integrity: sha512-z41XaniZL26WLrvjy7soabMXrfPWARN25PZoriDEiLMxAp50AUW3t35BGQUMg5xK3UrpVTtagIDklxYa+MhiNA==}
|
5415
5125
|
peerDependencies:
|
5416
5126
|
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
5417
5127
|
dependencies:
|
5418
|
-
'@babel/core': 7.
|
5419
|
-
'@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.
|
5128
|
+
'@babel/core': 7.23.3
|
5129
|
+
'@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.3)
|
5420
5130
|
core-js-compat: 3.32.0
|
5421
5131
|
transitivePeerDependencies:
|
5422
5132
|
- supports-color
|
5423
5133
|
dev: true
|
5424
5134
|
|
5425
|
-
/babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.
|
5135
|
+
/babel-plugin-polyfill-regenerator@0.5.2(@babel/core@7.23.3):
|
5426
5136
|
resolution: {integrity: sha512-tAlOptU0Xj34V1Y2PNTL4Y0FOJMDB6bZmoW39FeCQIhigGLkqu3Fj6uiXpxIf6Ij274ENdYx64y6Au+ZKlb1IA==}
|
5427
5137
|
peerDependencies:
|
5428
5138
|
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
5429
5139
|
dependencies:
|
5430
|
-
'@babel/core': 7.
|
5431
|
-
'@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.
|
5140
|
+
'@babel/core': 7.23.3
|
5141
|
+
'@babel/helper-define-polyfill-provider': 0.4.2(@babel/core@7.23.3)
|
5432
5142
|
transitivePeerDependencies:
|
5433
5143
|
- supports-color
|
5434
5144
|
dev: true
|
@@ -5466,7 +5176,6 @@ packages:
|
|
5466
5176
|
|
5467
5177
|
/balanced-match@1.0.2:
|
5468
5178
|
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
5469
|
-
dev: true
|
5470
5179
|
|
5471
5180
|
/base64-js@1.5.1:
|
5472
5181
|
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
|
@@ -5519,7 +5228,6 @@ packages:
|
|
5519
5228
|
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
|
5520
5229
|
dependencies:
|
5521
5230
|
balanced-match: 1.0.2
|
5522
|
-
dev: true
|
5523
5231
|
|
5524
5232
|
/braces@3.0.2:
|
5525
5233
|
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
|
@@ -5531,16 +5239,6 @@ packages:
|
|
5531
5239
|
resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
|
5532
5240
|
dev: true
|
5533
5241
|
|
5534
|
-
/browserslist@4.21.10:
|
5535
|
-
resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==}
|
5536
|
-
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
5537
|
-
hasBin: true
|
5538
|
-
dependencies:
|
5539
|
-
caniuse-lite: 1.0.30001518
|
5540
|
-
electron-to-chromium: 1.4.478
|
5541
|
-
node-releases: 2.0.13
|
5542
|
-
update-browserslist-db: 1.0.11(browserslist@4.21.10)
|
5543
|
-
|
5544
5242
|
/browserslist@4.22.1:
|
5545
5243
|
resolution: {integrity: sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==}
|
5546
5244
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
@@ -5619,7 +5317,7 @@ packages:
|
|
5619
5317
|
/call-bind@1.0.2:
|
5620
5318
|
resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==}
|
5621
5319
|
dependencies:
|
5622
|
-
function-bind: 1.1.
|
5320
|
+
function-bind: 1.1.2
|
5623
5321
|
get-intrinsic: 1.2.1
|
5624
5322
|
dev: true
|
5625
5323
|
|
@@ -5638,9 +5336,6 @@ packages:
|
|
5638
5336
|
engines: {node: '>=10'}
|
5639
5337
|
dev: true
|
5640
5338
|
|
5641
|
-
/caniuse-lite@1.0.30001518:
|
5642
|
-
resolution: {integrity: sha512-rup09/e3I0BKjncL+FesTayKtPrdwKhUufQFd3riFw1hHg8JmIFoInYfB102cFcY/pPgGmdyl/iy+jgiDi2vdA==}
|
5643
|
-
|
5644
5339
|
/caniuse-lite@1.0.30001562:
|
5645
5340
|
resolution: {integrity: sha512-kfte3Hym//51EdX4239i+Rmp20EsLIYGdPkERegTgU19hQWCRhsRFGKHTliUlsry53tv17K7n077Kqa0WJU4ng==}
|
5646
5341
|
|
@@ -5835,6 +5530,7 @@ packages:
|
|
5835
5530
|
|
5836
5531
|
/convert-source-map@1.9.0:
|
5837
5532
|
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
|
5533
|
+
dev: true
|
5838
5534
|
|
5839
5535
|
/convert-source-map@2.0.0:
|
5840
5536
|
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
@@ -5851,7 +5547,7 @@ packages:
|
|
5851
5547
|
/core-js-compat@3.32.0:
|
5852
5548
|
resolution: {integrity: sha512-7a9a3D1k4UCVKnLhrgALyFcP7YCsLOQIxPd0dKjf/6GuPcgyiGP70ewWdCGrSK7evyhymi0qO4EqCmSJofDeYw==}
|
5853
5549
|
dependencies:
|
5854
|
-
browserslist: 4.
|
5550
|
+
browserslist: 4.22.1
|
5855
5551
|
dev: true
|
5856
5552
|
|
5857
5553
|
/core-js@3.32.0:
|
@@ -6062,6 +5758,7 @@ packages:
|
|
6062
5758
|
/domexception@2.0.1:
|
6063
5759
|
resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==}
|
6064
5760
|
engines: {node: '>=8'}
|
5761
|
+
deprecated: Use your platform's native DOMException instead
|
6065
5762
|
dependencies:
|
6066
5763
|
webidl-conversions: 5.0.0
|
6067
5764
|
dev: true
|
@@ -6083,9 +5780,6 @@ packages:
|
|
6083
5780
|
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
|
6084
5781
|
dev: true
|
6085
5782
|
|
6086
|
-
/electron-to-chromium@1.4.478:
|
6087
|
-
resolution: {integrity: sha512-qjTA8djMXd+ruoODDFGnRCRBpID+AAfYWCyGtYTNhsuwxI19s8q19gbjKTwRS5z/LyVf5wICaIiPQGLekmbJbA==}
|
6088
|
-
|
6089
5783
|
/electron-to-chromium@1.4.583:
|
6090
5784
|
resolution: {integrity: sha512-93y1gcONABZ7uqYe/JWDVQP/Pj/sQSunF0HVAPdlg/pfBnOyBMLlQUxWvkqcljJg1+W6cjvPuYD+r1Th9Tn8mA==}
|
6091
5785
|
|
@@ -6121,12 +5815,8 @@ packages:
|
|
6121
5815
|
is-arrayish: 0.2.1
|
6122
5816
|
dev: true
|
6123
5817
|
|
6124
|
-
/es-module-lexer@1.3.0:
|
6125
|
-
resolution: {integrity: sha512-vZK7T0N2CBmBOixhmjdqx2gWVbFZ4DXZ/NyRMZVlJXPa7CyFS+/a4QQsDGDQy9ZfEzxFuNEsMLeQJnKP2p5/JA==}
|
6126
|
-
|
6127
5818
|
/es-module-lexer@1.4.1:
|
6128
5819
|
resolution: {integrity: sha512-cXLGjP0c4T3flZJKQSuziYoq7MlT+rnvfZjfp7h+I7K9BNX54kP9nyWvdbwjQ4u1iWbOL4u96fgeZLToQlZC7w==}
|
6129
|
-
dev: false
|
6130
5820
|
|
6131
5821
|
/esbuild@0.17.19:
|
6132
5822
|
resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
|
@@ -6211,7 +5901,6 @@ packages:
|
|
6211
5901
|
/escape-string-regexp@5.0.0:
|
6212
5902
|
resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
|
6213
5903
|
engines: {node: '>=12'}
|
6214
|
-
dev: true
|
6215
5904
|
|
6216
5905
|
/escodegen@2.1.0:
|
6217
5906
|
resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
|
@@ -6745,16 +6434,6 @@ packages:
|
|
6745
6434
|
/fast-deep-equal@3.1.3:
|
6746
6435
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
6747
6436
|
|
6748
|
-
/fast-glob@3.3.1:
|
6749
|
-
resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==}
|
6750
|
-
engines: {node: '>=8.6.0'}
|
6751
|
-
dependencies:
|
6752
|
-
'@nodelib/fs.stat': 2.0.5
|
6753
|
-
'@nodelib/fs.walk': 1.2.8
|
6754
|
-
glob-parent: 5.1.2
|
6755
|
-
merge2: 1.4.1
|
6756
|
-
micromatch: 4.0.5
|
6757
|
-
|
6758
6437
|
/fast-glob@3.3.2:
|
6759
6438
|
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
|
6760
6439
|
engines: {node: '>=8.6.0'}
|
@@ -6883,12 +6562,8 @@ packages:
|
|
6883
6562
|
engines: {node: '>= 0.6'}
|
6884
6563
|
dev: true
|
6885
6564
|
|
6886
|
-
/fraction.js@4.2.0:
|
6887
|
-
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
|
6888
|
-
|
6889
6565
|
/fraction.js@4.3.7:
|
6890
6566
|
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
|
6891
|
-
dev: false
|
6892
6567
|
|
6893
6568
|
/fresh@0.5.2:
|
6894
6569
|
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
|
@@ -6921,9 +6596,6 @@ packages:
|
|
6921
6596
|
requiresBuild: true
|
6922
6597
|
optional: true
|
6923
6598
|
|
6924
|
-
/function-bind@1.1.1:
|
6925
|
-
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
|
6926
|
-
|
6927
6599
|
/function-bind@1.1.2:
|
6928
6600
|
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
6929
6601
|
|
@@ -6944,7 +6616,7 @@ packages:
|
|
6944
6616
|
/get-intrinsic@1.2.1:
|
6945
6617
|
resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==}
|
6946
6618
|
dependencies:
|
6947
|
-
function-bind: 1.1.
|
6619
|
+
function-bind: 1.1.2
|
6948
6620
|
has: 1.0.3
|
6949
6621
|
has-proto: 1.0.1
|
6950
6622
|
has-symbols: 1.0.3
|
@@ -7091,7 +6763,8 @@ packages:
|
|
7091
6763
|
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
|
7092
6764
|
engines: {node: '>= 0.4.0'}
|
7093
6765
|
dependencies:
|
7094
|
-
function-bind: 1.1.
|
6766
|
+
function-bind: 1.1.2
|
6767
|
+
dev: true
|
7095
6768
|
|
7096
6769
|
/hash-sum@2.0.0:
|
7097
6770
|
resolution: {integrity: sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==}
|
@@ -7283,11 +6956,6 @@ packages:
|
|
7283
6956
|
builtin-modules: 3.3.0
|
7284
6957
|
dev: true
|
7285
6958
|
|
7286
|
-
/is-core-module@2.13.0:
|
7287
|
-
resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==}
|
7288
|
-
dependencies:
|
7289
|
-
has: 1.0.3
|
7290
|
-
|
7291
6959
|
/is-core-module@2.13.1:
|
7292
6960
|
resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
|
7293
6961
|
dependencies:
|
@@ -8128,7 +7796,6 @@ packages:
|
|
8128
7796
|
dependencies:
|
8129
7797
|
mlly: 1.4.2
|
8130
7798
|
pkg-types: 1.0.3
|
8131
|
-
dev: true
|
8132
7799
|
|
8133
7800
|
/localstorage-polyfill@1.0.1:
|
8134
7801
|
resolution: {integrity: sha512-m4iHVZxFH5734oQcPKU08025gIz2+4bjWR9lulP8ZYxEJR0BpA0w32oJmkzh8y3UI9ci7xCBehQDc3oA1X+VHw==}
|
@@ -8207,12 +7874,6 @@ packages:
|
|
8207
7874
|
dependencies:
|
8208
7875
|
sourcemap-codec: 1.4.8
|
8209
7876
|
|
8210
|
-
/magic-string@0.30.2:
|
8211
|
-
resolution: {integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==}
|
8212
|
-
engines: {node: '>=12'}
|
8213
|
-
dependencies:
|
8214
|
-
'@jridgewell/sourcemap-codec': 1.4.15
|
8215
|
-
|
8216
7877
|
/magic-string@0.30.5:
|
8217
7878
|
resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==}
|
8218
7879
|
engines: {node: '>=12'}
|
@@ -8359,7 +8020,6 @@ packages:
|
|
8359
8020
|
engines: {node: '>=16 || 14 >=14.17'}
|
8360
8021
|
dependencies:
|
8361
8022
|
brace-expansion: 2.0.1
|
8362
|
-
dev: true
|
8363
8023
|
|
8364
8024
|
/minimist@1.2.8:
|
8365
8025
|
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
|
@@ -8435,7 +8095,6 @@ packages:
|
|
8435
8095
|
pathe: 1.1.1
|
8436
8096
|
pkg-types: 1.0.3
|
8437
8097
|
ufo: 1.3.1
|
8438
|
-
dev: true
|
8439
8098
|
|
8440
8099
|
/module-alias@2.2.3:
|
8441
8100
|
resolution: {integrity: sha512-23g5BFj4zdQL/b6tor7Ji+QY4pEfNH784BMslY9Qb0UnJWRAt+lQGLYmRaM0KDBwIG23ffEBELhZDP2rhi9f/Q==}
|
@@ -8461,11 +8120,6 @@ packages:
|
|
8461
8120
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
8462
8121
|
dev: true
|
8463
8122
|
|
8464
|
-
/nanoid@3.3.6:
|
8465
|
-
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
|
8466
|
-
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
8467
|
-
hasBin: true
|
8468
|
-
|
8469
8123
|
/nanoid@3.3.7:
|
8470
8124
|
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
|
8471
8125
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
@@ -8749,7 +8403,6 @@ packages:
|
|
8749
8403
|
|
8750
8404
|
/pathe@1.1.1:
|
8751
8405
|
resolution: {integrity: sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==}
|
8752
|
-
dev: true
|
8753
8406
|
|
8754
8407
|
/perfect-debounce@1.0.0:
|
8755
8408
|
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
|
@@ -8819,7 +8472,6 @@ packages:
|
|
8819
8472
|
jsonc-parser: 3.2.0
|
8820
8473
|
mlly: 1.4.2
|
8821
8474
|
pathe: 1.1.1
|
8822
|
-
dev: true
|
8823
8475
|
|
8824
8476
|
/pluralize@8.0.0:
|
8825
8477
|
resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==}
|
@@ -8840,7 +8492,7 @@ packages:
|
|
8840
8492
|
postcss: 8.4.31
|
8841
8493
|
postcss-value-parser: 4.2.0
|
8842
8494
|
read-cache: 1.0.0
|
8843
|
-
resolve: 1.22.
|
8495
|
+
resolve: 1.22.8
|
8844
8496
|
|
8845
8497
|
/postcss-load-config@3.1.4(postcss@8.4.31):
|
8846
8498
|
resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
|
@@ -8920,14 +8572,6 @@ packages:
|
|
8920
8572
|
/postcss-value-parser@4.2.0:
|
8921
8573
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
8922
8574
|
|
8923
|
-
/postcss@8.4.27:
|
8924
|
-
resolution: {integrity: sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==}
|
8925
|
-
engines: {node: ^10 || ^12 || >=14}
|
8926
|
-
dependencies:
|
8927
|
-
nanoid: 3.3.6
|
8928
|
-
picocolors: 1.0.0
|
8929
|
-
source-map-js: 1.0.2
|
8930
|
-
|
8931
8575
|
/postcss@8.4.31:
|
8932
8576
|
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
|
8933
8577
|
engines: {node: ^10 || ^12 || >=14}
|
@@ -9170,22 +8814,6 @@ packages:
|
|
9170
8814
|
engines: {node: '>=10'}
|
9171
8815
|
dev: true
|
9172
8816
|
|
9173
|
-
/resolve@1.22.2:
|
9174
|
-
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
|
9175
|
-
hasBin: true
|
9176
|
-
dependencies:
|
9177
|
-
is-core-module: 2.13.0
|
9178
|
-
path-parse: 1.0.7
|
9179
|
-
supports-preserve-symlinks-flag: 1.0.0
|
9180
|
-
|
9181
|
-
/resolve@1.22.4:
|
9182
|
-
resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==}
|
9183
|
-
hasBin: true
|
9184
|
-
dependencies:
|
9185
|
-
is-core-module: 2.13.0
|
9186
|
-
path-parse: 1.0.7
|
9187
|
-
supports-preserve-symlinks-flag: 1.0.0
|
9188
|
-
|
9189
8817
|
/resolve@1.22.8:
|
9190
8818
|
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
|
9191
8819
|
hasBin: true
|
@@ -9300,7 +8928,6 @@ packages:
|
|
9300
8928
|
|
9301
8929
|
/scule@1.0.0:
|
9302
8930
|
resolution: {integrity: sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ==}
|
9303
|
-
dev: true
|
9304
8931
|
|
9305
8932
|
/semver@5.7.2:
|
9306
8933
|
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
|
@@ -9563,7 +9190,6 @@ packages:
|
|
9563
9190
|
resolution: {integrity: sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==}
|
9564
9191
|
dependencies:
|
9565
9192
|
acorn: 8.11.2
|
9566
|
-
dev: true
|
9567
9193
|
|
9568
9194
|
/supports-color@5.5.0:
|
9569
9195
|
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
@@ -9661,16 +9287,6 @@ packages:
|
|
9661
9287
|
webpack: 5.89.0
|
9662
9288
|
dev: false
|
9663
9289
|
|
9664
|
-
/terser@5.19.2:
|
9665
|
-
resolution: {integrity: sha512-qC5+dmecKJA4cpYxRa5aVkKehYsQKc+AHeKl0Oe62aYjBL8ZA33tTljktDHJSaxxMnbI5ZYw+o/S2DxxLu8OfA==}
|
9666
|
-
engines: {node: '>=10'}
|
9667
|
-
hasBin: true
|
9668
|
-
dependencies:
|
9669
|
-
'@jridgewell/source-map': 0.3.5
|
9670
|
-
acorn: 8.10.0
|
9671
|
-
commander: 2.20.3
|
9672
|
-
source-map-support: 0.5.21
|
9673
|
-
|
9674
9290
|
/terser@5.24.0:
|
9675
9291
|
resolution: {integrity: sha512-ZpGR4Hy3+wBEzVEnHvstMvqpD/nABNelQn/z2r0fjVWGQsN3bpOLzQlqDxmb4CDZnXq5lpjnQ+mHQLAOpfM5iw==}
|
9676
9292
|
engines: {node: '>=10'}
|
@@ -9680,7 +9296,6 @@ packages:
|
|
9680
9296
|
acorn: 8.11.2
|
9681
9297
|
commander: 2.20.3
|
9682
9298
|
source-map-support: 0.5.21
|
9683
|
-
dev: false
|
9684
9299
|
|
9685
9300
|
/test-exclude@6.0.0:
|
9686
9301
|
resolution: {integrity: sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==}
|
@@ -9856,7 +9471,6 @@ packages:
|
|
9856
9471
|
|
9857
9472
|
/ufo@1.3.1:
|
9858
9473
|
resolution: {integrity: sha512-uY/99gMLIOlJPwATcMVYfqDSxUR9//AUcgZMzwfSTJPDKzA1S8mX4VLqa+fiAtveraQUBCz4FFcwVZBGbwBXIw==}
|
9859
|
-
dev: true
|
9860
9474
|
|
9861
9475
|
/unconfig@0.3.11:
|
9862
9476
|
resolution: {integrity: sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==}
|
@@ -9909,7 +9523,6 @@ packages:
|
|
9909
9523
|
unplugin: 1.5.0
|
9910
9524
|
transitivePeerDependencies:
|
9911
9525
|
- rollup
|
9912
|
-
dev: true
|
9913
9526
|
|
9914
9527
|
/unist-util-stringify-position@2.0.3:
|
9915
9528
|
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
|
@@ -9971,7 +9584,7 @@ packages:
|
|
9971
9584
|
'@unocss/transformer-directives': 0.57.4
|
9972
9585
|
'@unocss/transformer-variant-group': 0.57.4
|
9973
9586
|
'@unocss/vite': 0.57.4(vite@4.5.0)
|
9974
|
-
vite: 4.5.0(sass@1.69.5)(terser@5.
|
9587
|
+
vite: 4.5.0(sass@1.69.5)(terser@5.24.0)
|
9975
9588
|
transitivePeerDependencies:
|
9976
9589
|
- postcss
|
9977
9590
|
- rollup
|
@@ -10016,7 +9629,6 @@ packages:
|
|
10016
9629
|
unplugin: 1.5.0
|
10017
9630
|
transitivePeerDependencies:
|
10018
9631
|
- rollup
|
10019
|
-
dev: true
|
10020
9632
|
|
10021
9633
|
/unplugin-transform-class@0.5.1:
|
10022
9634
|
resolution: {integrity: sha512-v3TvmVFsosuq6GXyelcr1lPsgDVcAQiWE7NA6JezVjUUdiSjDvnZYQf8x6hCm1+Ouh5dg3QvCZ57o8la/svDNA==}
|
@@ -10078,16 +9690,6 @@ packages:
|
|
10078
9690
|
resolution: {integrity: sha512-vRCqFv6UhXpWxZPyGDh/F3ZpNv8/qo7w6iufLpQg9aKnQ71qM4B5KiI7Mia9COcjEhrO9LueHpMYjYzsWH3OIg==}
|
10079
9691
|
dev: false
|
10080
9692
|
|
10081
|
-
/update-browserslist-db@1.0.11(browserslist@4.21.10):
|
10082
|
-
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
|
10083
|
-
hasBin: true
|
10084
|
-
peerDependencies:
|
10085
|
-
browserslist: '>= 4.21.0'
|
10086
|
-
dependencies:
|
10087
|
-
browserslist: 4.21.10
|
10088
|
-
escalade: 3.1.1
|
10089
|
-
picocolors: 1.0.0
|
10090
|
-
|
10091
9693
|
/update-browserslist-db@1.0.13(browserslist@4.22.1):
|
10092
9694
|
resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
|
10093
9695
|
hasBin: true
|
@@ -10145,7 +9747,7 @@ packages:
|
|
10145
9747
|
engines: {node: '>= 0.8'}
|
10146
9748
|
dev: true
|
10147
9749
|
|
10148
|
-
/vite@4.5.0(sass@1.69.5)(terser@5.
|
9750
|
+
/vite@4.5.0(sass@1.69.5)(terser@5.24.0):
|
10149
9751
|
resolution: {integrity: sha512-ulr8rNLA6rkyFAlVWw2q5YJ91v098AFQ2R0PRFwPzREXOUJQPtFUG0t+/ZikhaOCDqFoDhN6/v8Sq0o4araFAw==}
|
10150
9752
|
engines: {node: ^14.18.0 || >=16.0.0}
|
10151
9753
|
hasBin: true
|
@@ -10177,7 +9779,7 @@ packages:
|
|
10177
9779
|
postcss: 8.4.31
|
10178
9780
|
rollup: 3.29.4
|
10179
9781
|
sass: 1.69.5
|
10180
|
-
terser: 5.
|
9782
|
+
terser: 5.24.0
|
10181
9783
|
optionalDependencies:
|
10182
9784
|
fsevents: 2.3.3
|
10183
9785
|
|
@@ -10285,15 +9887,6 @@ packages:
|
|
10285
9887
|
vue: 3.3.8(typescript@5.2.2)
|
10286
9888
|
dev: false
|
10287
9889
|
|
10288
|
-
/vue-router@4.2.4(vue@3.3.8):
|
10289
|
-
resolution: {integrity: sha512-9PISkmaCO02OzPVOMq2w82ilty6+xJmQrarYZDkjZBfl4RvYAlt4PKnEX21oW4KTtWfa9OuO/b3qk1Od3AEdCQ==}
|
10290
|
-
peerDependencies:
|
10291
|
-
vue: ^3.2.0
|
10292
|
-
dependencies:
|
10293
|
-
'@vue/devtools-api': 6.5.0
|
10294
|
-
vue: 3.3.8(typescript@5.2.2)
|
10295
|
-
dev: false
|
10296
|
-
|
10297
9890
|
/vue-router@4.2.5(vue@3.3.8):
|
10298
9891
|
resolution: {integrity: sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==}
|
10299
9892
|
peerDependencies:
|
@@ -10474,18 +10067,6 @@ packages:
|
|
10474
10067
|
optional: true
|
10475
10068
|
dev: true
|
10476
10069
|
|
10477
|
-
/ws@8.13.0:
|
10478
|
-
resolution: {integrity: sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA==}
|
10479
|
-
engines: {node: '>=10.0.0'}
|
10480
|
-
peerDependencies:
|
10481
|
-
bufferutil: ^4.0.1
|
10482
|
-
utf-8-validate: '>=5.0.2'
|
10483
|
-
peerDependenciesMeta:
|
10484
|
-
bufferutil:
|
10485
|
-
optional: true
|
10486
|
-
utf-8-validate:
|
10487
|
-
optional: true
|
10488
|
-
|
10489
10070
|
/ws@8.14.2:
|
10490
10071
|
resolution: {integrity: sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==}
|
10491
10072
|
engines: {node: '>=10.0.0'}
|
@@ -10497,7 +10078,6 @@ packages:
|
|
10497
10078
|
optional: true
|
10498
10079
|
utf-8-validate:
|
10499
10080
|
optional: true
|
10500
|
-
dev: false
|
10501
10081
|
|
10502
10082
|
/xhr@2.6.0:
|
10503
10083
|
resolution: {integrity: sha512-/eCGLb5rxjx5e3mF1A7s+pLlR6CGyqWN91fv1JgER5mVWg1MZmlhBvy9kjcsOdRk8RrIujotWyJamfyrp+WIcA==}
|