cloudcommerce 0.0.40 → 0.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/package.json +8 -8
- package/packages/api/lib/index.d.ts +9 -3
- package/packages/api/lib/index.js +12 -2
- package/packages/api/lib/index.js.map +1 -1
- package/packages/api/lib/types.d.ts +12 -2
- package/packages/api/package.json +1 -1
- package/packages/api/src/index.ts +28 -5
- package/packages/api/src/types.ts +13 -1
- package/packages/apps/discounts/package.json +1 -1
- package/packages/cli/package.json +1 -1
- package/packages/firebase/package.json +5 -4
- package/packages/modules/lib/firebase/ajv.js +33 -0
- package/packages/modules/lib/firebase/ajv.js.map +1 -0
- package/packages/modules/lib/firebase/call-app-module.js +70 -0
- package/packages/modules/lib/firebase/call-app-module.js.map +1 -0
- package/packages/modules/lib/firebase/checkout.js +1 -0
- package/packages/modules/lib/firebase/checkout.js.map +1 -0
- package/packages/modules/lib/firebase/handle-module.js +161 -0
- package/packages/modules/lib/firebase/handle-module.js.map +1 -0
- package/packages/modules/lib/firebase/proxy-apps.js +1 -0
- package/packages/modules/lib/firebase/proxy-apps.js.map +1 -0
- package/packages/modules/lib/firebase/serve-modules-api.js +57 -0
- package/packages/modules/lib/firebase/serve-modules-api.js.map +1 -0
- package/packages/modules/lib/firebase.js +10 -3
- package/packages/modules/lib/firebase.js.map +1 -1
- package/packages/modules/lib/index.js +11 -7
- package/packages/modules/lib/index.js.map +1 -1
- package/packages/modules/package.json +5 -2
- package/packages/modules/src/firebase/ajv.ts +38 -0
- package/packages/modules/src/firebase/call-app-module.ts +72 -0
- package/packages/modules/src/firebase/{.gitkeep → checkout.ts} +0 -0
- package/packages/modules/src/firebase/handle-module.ts +191 -0
- package/packages/modules/src/firebase/proxy-apps.ts +0 -0
- package/packages/modules/src/firebase/serve-modules-api.ts +66 -0
- package/packages/modules/src/firebase.ts +10 -3
- package/packages/modules/src/index.ts +11 -8
- package/packages/passport/package.json +2 -2
- package/packages/ssr/package.json +2 -2
- package/packages/storefront/package.json +2 -2
- package/packages/types/package.json +1 -1
- package/pnpm-lock.yaml +440 -168
package/pnpm-lock.yaml
CHANGED
|
@@ -8,40 +8,40 @@ importers:
|
|
|
8
8
|
'@commitlint/config-conventional': ^17.0.3
|
|
9
9
|
'@commitlint/rules': ^17.0.0
|
|
10
10
|
'@types/node': ^18.0.5
|
|
11
|
-
'@typescript-eslint/eslint-plugin': ^5.
|
|
12
|
-
'@typescript-eslint/parser': ^5.
|
|
13
|
-
esbuild: ^0.14.
|
|
14
|
-
eslint: ^8.
|
|
11
|
+
'@typescript-eslint/eslint-plugin': ^5.32.0
|
|
12
|
+
'@typescript-eslint/parser': ^5.32.0
|
|
13
|
+
esbuild: ^0.14.51
|
|
14
|
+
eslint: ^8.21.0
|
|
15
15
|
eslint-config-airbnb-base: ^15.0.0
|
|
16
16
|
eslint-plugin-import: ^2.26.0
|
|
17
17
|
eslint-plugin-vue: ^9.3.0
|
|
18
18
|
husky: ^8.0.1
|
|
19
|
-
node-fetch: ^3.2.
|
|
19
|
+
node-fetch: ^3.2.10
|
|
20
20
|
standard-version: ^9.5.0
|
|
21
|
-
turbo: ^1.
|
|
21
|
+
turbo: ^1.4.0
|
|
22
22
|
typescript: ^4.7.4
|
|
23
23
|
vite: '3'
|
|
24
|
-
vitest: ^0.
|
|
24
|
+
vitest: ^0.20.2
|
|
25
25
|
zx: ^7.0.7
|
|
26
26
|
devDependencies:
|
|
27
27
|
'@commitlint/cli': 17.0.3
|
|
28
28
|
'@commitlint/config-conventional': 17.0.3
|
|
29
29
|
'@commitlint/rules': 17.0.0
|
|
30
30
|
'@types/node': 18.0.6
|
|
31
|
-
'@typescript-eslint/eslint-plugin': 5.
|
|
32
|
-
'@typescript-eslint/parser': 5.
|
|
33
|
-
esbuild: 0.14.
|
|
34
|
-
eslint: 8.
|
|
35
|
-
eslint-config-airbnb-base: 15.0.
|
|
36
|
-
eslint-plugin-import: 2.26.
|
|
37
|
-
eslint-plugin-vue: 9.3.0_eslint@8.
|
|
31
|
+
'@typescript-eslint/eslint-plugin': 5.32.0_iosr3hrei2tubxveewluhu5lhy
|
|
32
|
+
'@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq
|
|
33
|
+
esbuild: 0.14.51
|
|
34
|
+
eslint: 8.21.0
|
|
35
|
+
eslint-config-airbnb-base: 15.0.0_jatgrcxl4x7ywe7ak6cnjca2ae
|
|
36
|
+
eslint-plugin-import: 2.26.0_wuikv5nqgdfyng42xxm7lklfmi
|
|
37
|
+
eslint-plugin-vue: 9.3.0_eslint@8.21.0
|
|
38
38
|
husky: 8.0.1
|
|
39
|
-
node-fetch: 3.2.
|
|
39
|
+
node-fetch: 3.2.10
|
|
40
40
|
standard-version: 9.5.0
|
|
41
|
-
turbo: 1.
|
|
41
|
+
turbo: 1.4.0
|
|
42
42
|
typescript: 4.7.4
|
|
43
43
|
vite: 3.0.2
|
|
44
|
-
vitest: 0.
|
|
44
|
+
vitest: 0.20.2
|
|
45
45
|
zx: 7.0.7
|
|
46
46
|
|
|
47
47
|
packages/__skeleton:
|
|
@@ -81,16 +81,16 @@ importers:
|
|
|
81
81
|
'@cloudcommerce/types': workspace:*
|
|
82
82
|
'@fastify/deepmerge': ^1.1.0
|
|
83
83
|
'@firebase/app-types': ^0.7.0
|
|
84
|
-
firebase-admin: ^11.0.
|
|
84
|
+
firebase-admin: ^11.0.1
|
|
85
85
|
firebase-functions: ^3.22.0
|
|
86
|
-
node-fetch: ^3.2.
|
|
86
|
+
node-fetch: ^3.2.10
|
|
87
87
|
source-map-support: ^0.5.21
|
|
88
88
|
dependencies:
|
|
89
89
|
'@cloudcommerce/api': link:../api
|
|
90
90
|
'@fastify/deepmerge': 1.1.0
|
|
91
|
-
firebase-admin: 11.0.
|
|
92
|
-
firebase-functions: 3.22.0_firebase-admin@11.0.
|
|
93
|
-
node-fetch: 3.2.
|
|
91
|
+
firebase-admin: 11.0.1_@firebase+app-types@0.7.0
|
|
92
|
+
firebase-functions: 3.22.0_firebase-admin@11.0.1
|
|
93
|
+
node-fetch: 3.2.10
|
|
94
94
|
source-map-support: 0.5.21
|
|
95
95
|
devDependencies:
|
|
96
96
|
'@cloudcommerce/types': link:../types
|
|
@@ -98,17 +98,23 @@ importers:
|
|
|
98
98
|
|
|
99
99
|
packages/modules:
|
|
100
100
|
specifiers:
|
|
101
|
+
'@cloudcommerce/api': workspace:*
|
|
101
102
|
'@cloudcommerce/firebase': workspace:*
|
|
102
103
|
'@cloudcommerce/types': workspace:*
|
|
103
104
|
'@firebase/app-types': ^0.7.0
|
|
104
|
-
|
|
105
|
+
ajv: ^8.11.0
|
|
106
|
+
axios: ^0.27.2
|
|
107
|
+
firebase-admin: ^11.0.1
|
|
105
108
|
firebase-functions: ^3.22.0
|
|
106
109
|
json-schema-to-typescript: ^11.0.1
|
|
107
110
|
source-map-support: ^0.5.21
|
|
108
111
|
dependencies:
|
|
112
|
+
'@cloudcommerce/api': link:../api
|
|
109
113
|
'@cloudcommerce/firebase': link:../firebase
|
|
110
|
-
|
|
111
|
-
|
|
114
|
+
ajv: 8.11.0
|
|
115
|
+
axios: 0.27.2
|
|
116
|
+
firebase-admin: 11.0.1_@firebase+app-types@0.7.0
|
|
117
|
+
firebase-functions: 3.22.0_firebase-admin@11.0.1
|
|
112
118
|
source-map-support: 0.5.21
|
|
113
119
|
devDependencies:
|
|
114
120
|
'@cloudcommerce/types': link:../types
|
|
@@ -121,14 +127,14 @@ importers:
|
|
|
121
127
|
'@cloudcommerce/firebase': workspace:*
|
|
122
128
|
'@cloudcommerce/types': workspace:*
|
|
123
129
|
'@firebase/app-types': ^0.7.0
|
|
124
|
-
firebase-admin: ^11.0.
|
|
130
|
+
firebase-admin: ^11.0.1
|
|
125
131
|
firebase-functions: ^3.22.0
|
|
126
132
|
source-map-support: ^0.5.21
|
|
127
133
|
dependencies:
|
|
128
134
|
'@cloudcommerce/api': link:../api
|
|
129
135
|
'@cloudcommerce/firebase': link:../firebase
|
|
130
|
-
firebase-admin: 11.0.
|
|
131
|
-
firebase-functions: 3.22.0_firebase-admin@11.0.
|
|
136
|
+
firebase-admin: 11.0.1_@firebase+app-types@0.7.0
|
|
137
|
+
firebase-functions: 3.22.0_firebase-admin@11.0.1
|
|
132
138
|
source-map-support: 0.5.21
|
|
133
139
|
devDependencies:
|
|
134
140
|
'@cloudcommerce/types': link:../types
|
|
@@ -141,15 +147,15 @@ importers:
|
|
|
141
147
|
'@cloudcommerce/storefront': workspace:*
|
|
142
148
|
'@cloudcommerce/types': workspace:*
|
|
143
149
|
'@firebase/app-types': ^0.7.0
|
|
144
|
-
firebase-admin: ^11.0.
|
|
150
|
+
firebase-admin: ^11.0.1
|
|
145
151
|
firebase-functions: ^3.22.0
|
|
146
152
|
source-map-support: ^0.5.21
|
|
147
153
|
dependencies:
|
|
148
154
|
'@cloudcommerce/api': link:../api
|
|
149
155
|
'@cloudcommerce/firebase': link:../firebase
|
|
150
156
|
'@cloudcommerce/storefront': link:../storefront
|
|
151
|
-
firebase-admin: 11.0.
|
|
152
|
-
firebase-functions: 3.22.0_firebase-admin@11.0.
|
|
157
|
+
firebase-admin: 11.0.1_@firebase+app-types@0.7.0
|
|
158
|
+
firebase-functions: 3.22.0_firebase-admin@11.0.1
|
|
153
159
|
source-map-support: 0.5.21
|
|
154
160
|
devDependencies:
|
|
155
161
|
'@cloudcommerce/types': link:../types
|
|
@@ -158,10 +164,10 @@ importers:
|
|
|
158
164
|
packages/storefront:
|
|
159
165
|
specifiers:
|
|
160
166
|
'@cloudcommerce/api': workspace:*
|
|
161
|
-
astro: 1.0.0-rc.
|
|
167
|
+
astro: 1.0.0-rc.3
|
|
162
168
|
dependencies:
|
|
163
169
|
'@cloudcommerce/api': link:../api
|
|
164
|
-
astro: 1.0.0-rc.
|
|
170
|
+
astro: 1.0.0-rc.3
|
|
165
171
|
|
|
166
172
|
packages/types:
|
|
167
173
|
specifiers:
|
|
@@ -171,36 +177,36 @@ importers:
|
|
|
171
177
|
|
|
172
178
|
store:
|
|
173
179
|
specifiers:
|
|
174
|
-
'@cloudcommerce/cli': ^0.0.
|
|
180
|
+
'@cloudcommerce/cli': ^0.0.42
|
|
175
181
|
dependencies:
|
|
176
182
|
'@cloudcommerce/cli': link:../packages/cli
|
|
177
183
|
|
|
178
184
|
store/functions/core:
|
|
179
185
|
specifiers:
|
|
180
|
-
'@cloudcommerce/firebase': ^0.0.
|
|
186
|
+
'@cloudcommerce/firebase': ^0.0.42
|
|
181
187
|
dependencies:
|
|
182
188
|
'@cloudcommerce/firebase': link:../../../packages/firebase
|
|
183
189
|
|
|
184
190
|
store/functions/modules:
|
|
185
191
|
specifiers:
|
|
186
|
-
'@cloudcommerce/firebase': ^0.0.
|
|
187
|
-
'@cloudcommerce/modules': ^0.0.
|
|
192
|
+
'@cloudcommerce/firebase': ^0.0.42
|
|
193
|
+
'@cloudcommerce/modules': ^0.0.42
|
|
188
194
|
dependencies:
|
|
189
195
|
'@cloudcommerce/firebase': link:../../../packages/firebase
|
|
190
196
|
'@cloudcommerce/modules': link:../../../packages/modules
|
|
191
197
|
|
|
192
198
|
store/functions/passport:
|
|
193
199
|
specifiers:
|
|
194
|
-
'@cloudcommerce/firebase': ^0.0.
|
|
195
|
-
'@cloudcommerce/passport': ^0.0.
|
|
200
|
+
'@cloudcommerce/firebase': ^0.0.42
|
|
201
|
+
'@cloudcommerce/passport': ^0.0.42
|
|
196
202
|
dependencies:
|
|
197
203
|
'@cloudcommerce/firebase': link:../../../packages/firebase
|
|
198
204
|
'@cloudcommerce/passport': link:../../../packages/passport
|
|
199
205
|
|
|
200
206
|
store/functions/ssr:
|
|
201
207
|
specifiers:
|
|
202
|
-
'@cloudcommerce/firebase': ^0.0.
|
|
203
|
-
'@cloudcommerce/ssr': ^0.0.
|
|
208
|
+
'@cloudcommerce/firebase': ^0.0.42
|
|
209
|
+
'@cloudcommerce/ssr': ^0.0.42
|
|
204
210
|
dependencies:
|
|
205
211
|
'@cloudcommerce/firebase': link:../../../packages/firebase
|
|
206
212
|
'@cloudcommerce/ssr': link:../../../packages/ssr
|
|
@@ -295,7 +301,7 @@ packages:
|
|
|
295
301
|
dset: 3.1.2
|
|
296
302
|
is-docker: 3.0.0
|
|
297
303
|
is-wsl: 2.2.0
|
|
298
|
-
node-fetch: 3.2.
|
|
304
|
+
node-fetch: 3.2.10
|
|
299
305
|
which-pm-runs: 1.1.0
|
|
300
306
|
transitivePeerDependencies:
|
|
301
307
|
- supports-color
|
|
@@ -304,7 +310,7 @@ packages:
|
|
|
304
310
|
/@astrojs/webapi/0.12.0:
|
|
305
311
|
resolution: {integrity: sha512-rie5SYbvXVykKYBsNFnkUtDe7/0mGmrvj7Gg5pOKV34Cg/CrCJbvUSwH2oyCG2OLGtN2ttUOLvSgnVq3eipCsQ==}
|
|
306
312
|
dependencies:
|
|
307
|
-
node-fetch: 3.2.
|
|
313
|
+
node-fetch: 3.2.10
|
|
308
314
|
dev: false
|
|
309
315
|
|
|
310
316
|
/@babel/code-frame/7.18.6:
|
|
@@ -716,7 +722,7 @@ packages:
|
|
|
716
722
|
dependencies:
|
|
717
723
|
ajv: 6.12.6
|
|
718
724
|
debug: 4.3.4
|
|
719
|
-
espree: 9.3.
|
|
725
|
+
espree: 9.3.3
|
|
720
726
|
globals: 13.16.0
|
|
721
727
|
ignore: 5.2.0
|
|
722
728
|
import-fresh: 3.3.0
|
|
@@ -892,8 +898,8 @@ packages:
|
|
|
892
898
|
dev: false
|
|
893
899
|
optional: true
|
|
894
900
|
|
|
895
|
-
/@humanwhocodes/config-array/0.
|
|
896
|
-
resolution: {integrity: sha512-
|
|
901
|
+
/@humanwhocodes/config-array/0.10.4:
|
|
902
|
+
resolution: {integrity: sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==}
|
|
897
903
|
engines: {node: '>=10.10.0'}
|
|
898
904
|
dependencies:
|
|
899
905
|
'@humanwhocodes/object-schema': 1.2.1
|
|
@@ -903,6 +909,10 @@ packages:
|
|
|
903
909
|
- supports-color
|
|
904
910
|
dev: true
|
|
905
911
|
|
|
912
|
+
/@humanwhocodes/gitignore-to-minimatch/1.0.2:
|
|
913
|
+
resolution: {integrity: sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==}
|
|
914
|
+
dev: true
|
|
915
|
+
|
|
906
916
|
/@humanwhocodes/object-schema/1.2.1:
|
|
907
917
|
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
|
|
908
918
|
dev: true
|
|
@@ -1288,8 +1298,8 @@ packages:
|
|
|
1288
1298
|
/@types/which/2.0.1:
|
|
1289
1299
|
resolution: {integrity: sha512-Jjakcv8Roqtio6w1gr0D7y6twbhx6gGgFGF5BLwajPpnOIOxFkakFhCq+LmyyeAz7BX6ULrjBOxdKaCDy+4+dQ==}
|
|
1290
1300
|
|
|
1291
|
-
/@typescript-eslint/eslint-plugin/5.
|
|
1292
|
-
resolution: {integrity: sha512-
|
|
1301
|
+
/@typescript-eslint/eslint-plugin/5.32.0_iosr3hrei2tubxveewluhu5lhy:
|
|
1302
|
+
resolution: {integrity: sha512-CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew==}
|
|
1293
1303
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1294
1304
|
peerDependencies:
|
|
1295
1305
|
'@typescript-eslint/parser': ^5.0.0
|
|
@@ -1299,12 +1309,12 @@ packages:
|
|
|
1299
1309
|
typescript:
|
|
1300
1310
|
optional: true
|
|
1301
1311
|
dependencies:
|
|
1302
|
-
'@typescript-eslint/parser': 5.
|
|
1303
|
-
'@typescript-eslint/scope-manager': 5.
|
|
1304
|
-
'@typescript-eslint/type-utils': 5.
|
|
1305
|
-
'@typescript-eslint/utils': 5.
|
|
1312
|
+
'@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq
|
|
1313
|
+
'@typescript-eslint/scope-manager': 5.32.0
|
|
1314
|
+
'@typescript-eslint/type-utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq
|
|
1315
|
+
'@typescript-eslint/utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq
|
|
1306
1316
|
debug: 4.3.4
|
|
1307
|
-
eslint: 8.
|
|
1317
|
+
eslint: 8.21.0
|
|
1308
1318
|
functional-red-black-tree: 1.0.1
|
|
1309
1319
|
ignore: 5.2.0
|
|
1310
1320
|
regexpp: 3.2.0
|
|
@@ -1315,8 +1325,8 @@ packages:
|
|
|
1315
1325
|
- supports-color
|
|
1316
1326
|
dev: true
|
|
1317
1327
|
|
|
1318
|
-
/@typescript-eslint/parser/5.
|
|
1319
|
-
resolution: {integrity: sha512-
|
|
1328
|
+
/@typescript-eslint/parser/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq:
|
|
1329
|
+
resolution: {integrity: sha512-IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A==}
|
|
1320
1330
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1321
1331
|
peerDependencies:
|
|
1322
1332
|
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
@@ -1325,26 +1335,26 @@ packages:
|
|
|
1325
1335
|
typescript:
|
|
1326
1336
|
optional: true
|
|
1327
1337
|
dependencies:
|
|
1328
|
-
'@typescript-eslint/scope-manager': 5.
|
|
1329
|
-
'@typescript-eslint/types': 5.
|
|
1330
|
-
'@typescript-eslint/typescript-estree': 5.
|
|
1338
|
+
'@typescript-eslint/scope-manager': 5.32.0
|
|
1339
|
+
'@typescript-eslint/types': 5.32.0
|
|
1340
|
+
'@typescript-eslint/typescript-estree': 5.32.0_typescript@4.7.4
|
|
1331
1341
|
debug: 4.3.4
|
|
1332
|
-
eslint: 8.
|
|
1342
|
+
eslint: 8.21.0
|
|
1333
1343
|
typescript: 4.7.4
|
|
1334
1344
|
transitivePeerDependencies:
|
|
1335
1345
|
- supports-color
|
|
1336
1346
|
dev: true
|
|
1337
1347
|
|
|
1338
|
-
/@typescript-eslint/scope-manager/5.
|
|
1339
|
-
resolution: {integrity: sha512-
|
|
1348
|
+
/@typescript-eslint/scope-manager/5.32.0:
|
|
1349
|
+
resolution: {integrity: sha512-KyAE+tUON0D7tNz92p1uetRqVJiiAkeluvwvZOqBmW9z2XApmk5WSMV9FrzOroAcVxJZB3GfUwVKr98Dr/OjOg==}
|
|
1340
1350
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1341
1351
|
dependencies:
|
|
1342
|
-
'@typescript-eslint/types': 5.
|
|
1343
|
-
'@typescript-eslint/visitor-keys': 5.
|
|
1352
|
+
'@typescript-eslint/types': 5.32.0
|
|
1353
|
+
'@typescript-eslint/visitor-keys': 5.32.0
|
|
1344
1354
|
dev: true
|
|
1345
1355
|
|
|
1346
|
-
/@typescript-eslint/type-utils/5.
|
|
1347
|
-
resolution: {integrity: sha512-
|
|
1356
|
+
/@typescript-eslint/type-utils/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq:
|
|
1357
|
+
resolution: {integrity: sha512-0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg==}
|
|
1348
1358
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1349
1359
|
peerDependencies:
|
|
1350
1360
|
eslint: '*'
|
|
@@ -1353,22 +1363,22 @@ packages:
|
|
|
1353
1363
|
typescript:
|
|
1354
1364
|
optional: true
|
|
1355
1365
|
dependencies:
|
|
1356
|
-
'@typescript-eslint/utils': 5.
|
|
1366
|
+
'@typescript-eslint/utils': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq
|
|
1357
1367
|
debug: 4.3.4
|
|
1358
|
-
eslint: 8.
|
|
1368
|
+
eslint: 8.21.0
|
|
1359
1369
|
tsutils: 3.21.0_typescript@4.7.4
|
|
1360
1370
|
typescript: 4.7.4
|
|
1361
1371
|
transitivePeerDependencies:
|
|
1362
1372
|
- supports-color
|
|
1363
1373
|
dev: true
|
|
1364
1374
|
|
|
1365
|
-
/@typescript-eslint/types/5.
|
|
1366
|
-
resolution: {integrity: sha512-
|
|
1375
|
+
/@typescript-eslint/types/5.32.0:
|
|
1376
|
+
resolution: {integrity: sha512-EBUKs68DOcT/EjGfzywp+f8wG9Zw6gj6BjWu7KV/IYllqKJFPlZlLSYw/PTvVyiRw50t6wVbgv4p9uE2h6sZrQ==}
|
|
1367
1377
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1368
1378
|
dev: true
|
|
1369
1379
|
|
|
1370
|
-
/@typescript-eslint/typescript-estree/5.
|
|
1371
|
-
resolution: {integrity: sha512-
|
|
1380
|
+
/@typescript-eslint/typescript-estree/5.32.0_typescript@4.7.4:
|
|
1381
|
+
resolution: {integrity: sha512-ZVAUkvPk3ITGtCLU5J4atCw9RTxK+SRc6hXqLtllC2sGSeMFWN+YwbiJR9CFrSFJ3w4SJfcWtDwNb/DmUIHdhg==}
|
|
1372
1382
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1373
1383
|
peerDependencies:
|
|
1374
1384
|
typescript: '*'
|
|
@@ -1376,8 +1386,8 @@ packages:
|
|
|
1376
1386
|
typescript:
|
|
1377
1387
|
optional: true
|
|
1378
1388
|
dependencies:
|
|
1379
|
-
'@typescript-eslint/types': 5.
|
|
1380
|
-
'@typescript-eslint/visitor-keys': 5.
|
|
1389
|
+
'@typescript-eslint/types': 5.32.0
|
|
1390
|
+
'@typescript-eslint/visitor-keys': 5.32.0
|
|
1381
1391
|
debug: 4.3.4
|
|
1382
1392
|
globby: 11.1.0
|
|
1383
1393
|
is-glob: 4.0.3
|
|
@@ -1388,29 +1398,29 @@ packages:
|
|
|
1388
1398
|
- supports-color
|
|
1389
1399
|
dev: true
|
|
1390
1400
|
|
|
1391
|
-
/@typescript-eslint/utils/5.
|
|
1392
|
-
resolution: {integrity: sha512-
|
|
1401
|
+
/@typescript-eslint/utils/5.32.0_qugx7qdu5zevzvxaiqyxfiwquq:
|
|
1402
|
+
resolution: {integrity: sha512-W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ==}
|
|
1393
1403
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1394
1404
|
peerDependencies:
|
|
1395
1405
|
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
1396
1406
|
dependencies:
|
|
1397
1407
|
'@types/json-schema': 7.0.11
|
|
1398
|
-
'@typescript-eslint/scope-manager': 5.
|
|
1399
|
-
'@typescript-eslint/types': 5.
|
|
1400
|
-
'@typescript-eslint/typescript-estree': 5.
|
|
1401
|
-
eslint: 8.
|
|
1408
|
+
'@typescript-eslint/scope-manager': 5.32.0
|
|
1409
|
+
'@typescript-eslint/types': 5.32.0
|
|
1410
|
+
'@typescript-eslint/typescript-estree': 5.32.0_typescript@4.7.4
|
|
1411
|
+
eslint: 8.21.0
|
|
1402
1412
|
eslint-scope: 5.1.1
|
|
1403
|
-
eslint-utils: 3.0.0_eslint@8.
|
|
1413
|
+
eslint-utils: 3.0.0_eslint@8.21.0
|
|
1404
1414
|
transitivePeerDependencies:
|
|
1405
1415
|
- supports-color
|
|
1406
1416
|
- typescript
|
|
1407
1417
|
dev: true
|
|
1408
1418
|
|
|
1409
|
-
/@typescript-eslint/visitor-keys/5.
|
|
1410
|
-
resolution: {integrity: sha512-
|
|
1419
|
+
/@typescript-eslint/visitor-keys/5.32.0:
|
|
1420
|
+
resolution: {integrity: sha512-S54xOHZgfThiZ38/ZGTgB2rqx51CMJ5MCfVT2IplK4Q7hgzGfe0nLzLCcenDnc/cSjP568hdeKfeDcBgqNHD/g==}
|
|
1411
1421
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
1412
1422
|
dependencies:
|
|
1413
|
-
'@typescript-eslint/types': 5.
|
|
1423
|
+
'@typescript-eslint/types': 5.32.0
|
|
1414
1424
|
eslint-visitor-keys: 3.3.0
|
|
1415
1425
|
dev: true
|
|
1416
1426
|
|
|
@@ -1463,7 +1473,6 @@ packages:
|
|
|
1463
1473
|
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
|
1464
1474
|
dependencies:
|
|
1465
1475
|
acorn: 8.8.0
|
|
1466
|
-
dev: false
|
|
1467
1476
|
|
|
1468
1477
|
/acorn-walk/8.2.0:
|
|
1469
1478
|
resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==}
|
|
@@ -1480,7 +1489,6 @@ packages:
|
|
|
1480
1489
|
resolution: {integrity: sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==}
|
|
1481
1490
|
engines: {node: '>=0.4.0'}
|
|
1482
1491
|
hasBin: true
|
|
1483
|
-
dev: false
|
|
1484
1492
|
|
|
1485
1493
|
/add-stream/1.0.0:
|
|
1486
1494
|
resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==}
|
|
@@ -1512,7 +1520,6 @@ packages:
|
|
|
1512
1520
|
json-schema-traverse: 1.0.0
|
|
1513
1521
|
require-from-string: 2.0.2
|
|
1514
1522
|
uri-js: 4.4.1
|
|
1515
|
-
dev: true
|
|
1516
1523
|
|
|
1517
1524
|
/ansi-align/3.0.1:
|
|
1518
1525
|
resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
|
|
@@ -1633,8 +1640,8 @@ packages:
|
|
|
1633
1640
|
tslib: 2.4.0
|
|
1634
1641
|
dev: false
|
|
1635
1642
|
|
|
1636
|
-
/astro/1.0.0-rc.
|
|
1637
|
-
resolution: {integrity: sha512-
|
|
1643
|
+
/astro/1.0.0-rc.3:
|
|
1644
|
+
resolution: {integrity: sha512-lX4UCJFvLGrXTFkbijqAUHxH2V4+Jx0sqHjt2mydp32UuZf+sePd18ztCz68gE5WLK3kxMboFN9n3eAwkwvY1Q==}
|
|
1638
1645
|
engines: {node: ^14.18.0 || >=16.12.0, npm: '>=6.14.0'}
|
|
1639
1646
|
hasBin: true
|
|
1640
1647
|
dependencies:
|
|
@@ -1714,11 +1721,24 @@ packages:
|
|
|
1714
1721
|
dev: false
|
|
1715
1722
|
optional: true
|
|
1716
1723
|
|
|
1724
|
+
/asynckit/0.4.0:
|
|
1725
|
+
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
1726
|
+
dev: false
|
|
1727
|
+
|
|
1717
1728
|
/available-typed-arrays/1.0.5:
|
|
1718
1729
|
resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
|
|
1719
1730
|
engines: {node: '>= 0.4'}
|
|
1720
1731
|
dev: false
|
|
1721
1732
|
|
|
1733
|
+
/axios/0.27.2:
|
|
1734
|
+
resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==}
|
|
1735
|
+
dependencies:
|
|
1736
|
+
follow-redirects: 1.15.1
|
|
1737
|
+
form-data: 4.0.0
|
|
1738
|
+
transitivePeerDependencies:
|
|
1739
|
+
- debug
|
|
1740
|
+
dev: false
|
|
1741
|
+
|
|
1722
1742
|
/bail/2.0.2:
|
|
1723
1743
|
resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
|
|
1724
1744
|
dev: false
|
|
@@ -1984,6 +2004,13 @@ packages:
|
|
|
1984
2004
|
/color-name/1.1.4:
|
|
1985
2005
|
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
|
1986
2006
|
|
|
2007
|
+
/combined-stream/1.0.8:
|
|
2008
|
+
resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
|
|
2009
|
+
engines: {node: '>= 0.8'}
|
|
2010
|
+
dependencies:
|
|
2011
|
+
delayed-stream: 1.0.0
|
|
2012
|
+
dev: false
|
|
2013
|
+
|
|
1987
2014
|
/comma-separated-tokens/2.0.2:
|
|
1988
2015
|
resolution: {integrity: sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==}
|
|
1989
2016
|
dev: false
|
|
@@ -2387,6 +2414,11 @@ packages:
|
|
|
2387
2414
|
has-property-descriptors: 1.0.0
|
|
2388
2415
|
object-keys: 1.1.1
|
|
2389
2416
|
|
|
2417
|
+
/delayed-stream/1.0.0:
|
|
2418
|
+
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
|
|
2419
|
+
engines: {node: '>=0.4.0'}
|
|
2420
|
+
dev: false
|
|
2421
|
+
|
|
2390
2422
|
/depd/2.0.0:
|
|
2391
2423
|
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
|
|
2392
2424
|
engines: {node: '>= 0.8'}
|
|
@@ -2630,6 +2662,15 @@ packages:
|
|
|
2630
2662
|
requiresBuild: true
|
|
2631
2663
|
optional: true
|
|
2632
2664
|
|
|
2665
|
+
/esbuild-android-64/0.14.51:
|
|
2666
|
+
resolution: {integrity: sha512-6FOuKTHnC86dtrKDmdSj2CkcKF8PnqkaIXqvgydqfJmqBazCPdw+relrMlhGjkvVdiiGV70rpdnyFmA65ekBCQ==}
|
|
2667
|
+
engines: {node: '>=12'}
|
|
2668
|
+
cpu: [x64]
|
|
2669
|
+
os: [android]
|
|
2670
|
+
requiresBuild: true
|
|
2671
|
+
dev: true
|
|
2672
|
+
optional: true
|
|
2673
|
+
|
|
2633
2674
|
/esbuild-android-arm64/0.14.50:
|
|
2634
2675
|
resolution: {integrity: sha512-NFaoqEwa+OYfoYVpQWDMdKII7wZZkAjtJFo1WdnBeCYlYikvUhTnf2aPwPu5qEAw/ie1NYK0yn3cafwP+kP+OQ==}
|
|
2635
2676
|
engines: {node: '>=12'}
|
|
@@ -2638,6 +2679,15 @@ packages:
|
|
|
2638
2679
|
requiresBuild: true
|
|
2639
2680
|
optional: true
|
|
2640
2681
|
|
|
2682
|
+
/esbuild-android-arm64/0.14.51:
|
|
2683
|
+
resolution: {integrity: sha512-vBtp//5VVkZWmYYvHsqBRCMMi1MzKuMIn5XDScmnykMTu9+TD9v0NMEDqQxvtFToeYmojdo5UCV2vzMQWJcJ4A==}
|
|
2684
|
+
engines: {node: '>=12'}
|
|
2685
|
+
cpu: [arm64]
|
|
2686
|
+
os: [android]
|
|
2687
|
+
requiresBuild: true
|
|
2688
|
+
dev: true
|
|
2689
|
+
optional: true
|
|
2690
|
+
|
|
2641
2691
|
/esbuild-darwin-64/0.14.50:
|
|
2642
2692
|
resolution: {integrity: sha512-gDQsCvGnZiJv9cfdO48QqxkRV8oKAXgR2CGp7TdIpccwFdJMHf8hyIJhMW/05b/HJjET/26Us27Jx91BFfEVSA==}
|
|
2643
2693
|
engines: {node: '>=12'}
|
|
@@ -2646,6 +2696,15 @@ packages:
|
|
|
2646
2696
|
requiresBuild: true
|
|
2647
2697
|
optional: true
|
|
2648
2698
|
|
|
2699
|
+
/esbuild-darwin-64/0.14.51:
|
|
2700
|
+
resolution: {integrity: sha512-YFmXPIOvuagDcwCejMRtCDjgPfnDu+bNeh5FU2Ryi68ADDVlWEpbtpAbrtf/lvFTWPexbgyKgzppNgsmLPr8PA==}
|
|
2701
|
+
engines: {node: '>=12'}
|
|
2702
|
+
cpu: [x64]
|
|
2703
|
+
os: [darwin]
|
|
2704
|
+
requiresBuild: true
|
|
2705
|
+
dev: true
|
|
2706
|
+
optional: true
|
|
2707
|
+
|
|
2649
2708
|
/esbuild-darwin-arm64/0.14.50:
|
|
2650
2709
|
resolution: {integrity: sha512-36nNs5OjKIb/Q50Sgp8+rYW/PqirRiFN0NFc9hEvgPzNJxeJedktXwzfJSln4EcRFRh5Vz4IlqFRScp+aiBBzA==}
|
|
2651
2710
|
engines: {node: '>=12'}
|
|
@@ -2654,6 +2713,15 @@ packages:
|
|
|
2654
2713
|
requiresBuild: true
|
|
2655
2714
|
optional: true
|
|
2656
2715
|
|
|
2716
|
+
/esbuild-darwin-arm64/0.14.51:
|
|
2717
|
+
resolution: {integrity: sha512-juYD0QnSKwAMfzwKdIF6YbueXzS6N7y4GXPDeDkApz/1RzlT42mvX9jgNmyOlWKN7YzQAYbcUEJmZJYQGdf2ow==}
|
|
2718
|
+
engines: {node: '>=12'}
|
|
2719
|
+
cpu: [arm64]
|
|
2720
|
+
os: [darwin]
|
|
2721
|
+
requiresBuild: true
|
|
2722
|
+
dev: true
|
|
2723
|
+
optional: true
|
|
2724
|
+
|
|
2657
2725
|
/esbuild-freebsd-64/0.14.50:
|
|
2658
2726
|
resolution: {integrity: sha512-/1pHHCUem8e/R86/uR+4v5diI2CtBdiWKiqGuPa9b/0x3Nwdh5AOH7lj+8823C6uX1e0ufwkSLkS+aFZiBCWxA==}
|
|
2659
2727
|
engines: {node: '>=12'}
|
|
@@ -2662,6 +2730,15 @@ packages:
|
|
|
2662
2730
|
requiresBuild: true
|
|
2663
2731
|
optional: true
|
|
2664
2732
|
|
|
2733
|
+
/esbuild-freebsd-64/0.14.51:
|
|
2734
|
+
resolution: {integrity: sha512-cLEI/aXjb6vo5O2Y8rvVSQ7smgLldwYY5xMxqh/dQGfWO+R1NJOFsiax3IS4Ng300SVp7Gz3czxT6d6qf2cw0g==}
|
|
2735
|
+
engines: {node: '>=12'}
|
|
2736
|
+
cpu: [x64]
|
|
2737
|
+
os: [freebsd]
|
|
2738
|
+
requiresBuild: true
|
|
2739
|
+
dev: true
|
|
2740
|
+
optional: true
|
|
2741
|
+
|
|
2665
2742
|
/esbuild-freebsd-arm64/0.14.50:
|
|
2666
2743
|
resolution: {integrity: sha512-iKwUVMQztnPZe5pUYHdMkRc9aSpvoV1mkuHlCoPtxZA3V+Kg/ptpzkcSY+fKd0kuom+l6Rc93k0UPVkP7xoqrw==}
|
|
2667
2744
|
engines: {node: '>=12'}
|
|
@@ -2670,6 +2747,15 @@ packages:
|
|
|
2670
2747
|
requiresBuild: true
|
|
2671
2748
|
optional: true
|
|
2672
2749
|
|
|
2750
|
+
/esbuild-freebsd-arm64/0.14.51:
|
|
2751
|
+
resolution: {integrity: sha512-TcWVw/rCL2F+jUgRkgLa3qltd5gzKjIMGhkVybkjk6PJadYInPtgtUBp1/hG+mxyigaT7ib+od1Xb84b+L+1Mg==}
|
|
2752
|
+
engines: {node: '>=12'}
|
|
2753
|
+
cpu: [arm64]
|
|
2754
|
+
os: [freebsd]
|
|
2755
|
+
requiresBuild: true
|
|
2756
|
+
dev: true
|
|
2757
|
+
optional: true
|
|
2758
|
+
|
|
2673
2759
|
/esbuild-linux-32/0.14.50:
|
|
2674
2760
|
resolution: {integrity: sha512-sWUwvf3uz7dFOpLzYuih+WQ7dRycrBWHCdoXJ4I4XdMxEHCECd8b7a9N9u7FzT6XR2gHPk9EzvchQUtiEMRwqw==}
|
|
2675
2761
|
engines: {node: '>=12'}
|
|
@@ -2678,6 +2764,15 @@ packages:
|
|
|
2678
2764
|
requiresBuild: true
|
|
2679
2765
|
optional: true
|
|
2680
2766
|
|
|
2767
|
+
/esbuild-linux-32/0.14.51:
|
|
2768
|
+
resolution: {integrity: sha512-RFqpyC5ChyWrjx8Xj2K0EC1aN0A37H6OJfmUXIASEqJoHcntuV3j2Efr9RNmUhMfNE6yEj2VpYuDteZLGDMr0w==}
|
|
2769
|
+
engines: {node: '>=12'}
|
|
2770
|
+
cpu: [ia32]
|
|
2771
|
+
os: [linux]
|
|
2772
|
+
requiresBuild: true
|
|
2773
|
+
dev: true
|
|
2774
|
+
optional: true
|
|
2775
|
+
|
|
2681
2776
|
/esbuild-linux-64/0.14.50:
|
|
2682
2777
|
resolution: {integrity: sha512-u0PQxPhaeI629t4Y3EEcQ0wmWG+tC/LpP2K7yDFvwuPq0jSQ8SIN+ARNYfRjGW15O2we3XJvklbGV0wRuUCPig==}
|
|
2683
2778
|
engines: {node: '>=12'}
|
|
@@ -2686,6 +2781,15 @@ packages:
|
|
|
2686
2781
|
requiresBuild: true
|
|
2687
2782
|
optional: true
|
|
2688
2783
|
|
|
2784
|
+
/esbuild-linux-64/0.14.51:
|
|
2785
|
+
resolution: {integrity: sha512-dxjhrqo5i7Rq6DXwz5v+MEHVs9VNFItJmHBe1CxROWNf4miOGoQhqSG8StStbDkQ1Mtobg6ng+4fwByOhoQoeA==}
|
|
2786
|
+
engines: {node: '>=12'}
|
|
2787
|
+
cpu: [x64]
|
|
2788
|
+
os: [linux]
|
|
2789
|
+
requiresBuild: true
|
|
2790
|
+
dev: true
|
|
2791
|
+
optional: true
|
|
2792
|
+
|
|
2689
2793
|
/esbuild-linux-arm/0.14.50:
|
|
2690
2794
|
resolution: {integrity: sha512-VALZq13bhmFJYFE/mLEb+9A0w5vo8z+YDVOWeaf9vOTrSC31RohRIwtxXBnVJ7YKLYfEMzcgFYf+OFln3Y0cWg==}
|
|
2691
2795
|
engines: {node: '>=12'}
|
|
@@ -2694,6 +2798,15 @@ packages:
|
|
|
2694
2798
|
requiresBuild: true
|
|
2695
2799
|
optional: true
|
|
2696
2800
|
|
|
2801
|
+
/esbuild-linux-arm/0.14.51:
|
|
2802
|
+
resolution: {integrity: sha512-LsJynDxYF6Neg7ZC7748yweCDD+N8ByCv22/7IAZglIEniEkqdF4HCaa49JNDLw1UQGlYuhOB8ZT/MmcSWzcWg==}
|
|
2803
|
+
engines: {node: '>=12'}
|
|
2804
|
+
cpu: [arm]
|
|
2805
|
+
os: [linux]
|
|
2806
|
+
requiresBuild: true
|
|
2807
|
+
dev: true
|
|
2808
|
+
optional: true
|
|
2809
|
+
|
|
2697
2810
|
/esbuild-linux-arm64/0.14.50:
|
|
2698
2811
|
resolution: {integrity: sha512-ZyfoNgsTftD7Rp5S7La5auomKdNeB3Ck+kSKXC4pp96VnHyYGjHHXWIlcbH8i+efRn9brszo1/Thl1qn8RqmhQ==}
|
|
2699
2812
|
engines: {node: '>=12'}
|
|
@@ -2702,6 +2815,15 @@ packages:
|
|
|
2702
2815
|
requiresBuild: true
|
|
2703
2816
|
optional: true
|
|
2704
2817
|
|
|
2818
|
+
/esbuild-linux-arm64/0.14.51:
|
|
2819
|
+
resolution: {integrity: sha512-D9rFxGutoqQX3xJPxqd6o+kvYKeIbM0ifW2y0bgKk5HPgQQOo2k9/2Vpto3ybGYaFPCE5qTGtqQta9PoP6ZEzw==}
|
|
2820
|
+
engines: {node: '>=12'}
|
|
2821
|
+
cpu: [arm64]
|
|
2822
|
+
os: [linux]
|
|
2823
|
+
requiresBuild: true
|
|
2824
|
+
dev: true
|
|
2825
|
+
optional: true
|
|
2826
|
+
|
|
2705
2827
|
/esbuild-linux-mips64le/0.14.50:
|
|
2706
2828
|
resolution: {integrity: sha512-ygo31Vxn/WrmjKCHkBoutOlFG5yM9J2UhzHb0oWD9O61dGg+Hzjz9hjf5cmM7FBhAzdpOdEWHIrVOg2YAi6rTw==}
|
|
2707
2829
|
engines: {node: '>=12'}
|
|
@@ -2710,6 +2832,15 @@ packages:
|
|
|
2710
2832
|
requiresBuild: true
|
|
2711
2833
|
optional: true
|
|
2712
2834
|
|
|
2835
|
+
/esbuild-linux-mips64le/0.14.51:
|
|
2836
|
+
resolution: {integrity: sha512-vS54wQjy4IinLSlb5EIlLoln8buh1yDgliP4CuEHumrPk4PvvP4kTRIG4SzMXm6t19N0rIfT4bNdAxzJLg2k6A==}
|
|
2837
|
+
engines: {node: '>=12'}
|
|
2838
|
+
cpu: [mips64el]
|
|
2839
|
+
os: [linux]
|
|
2840
|
+
requiresBuild: true
|
|
2841
|
+
dev: true
|
|
2842
|
+
optional: true
|
|
2843
|
+
|
|
2713
2844
|
/esbuild-linux-ppc64le/0.14.50:
|
|
2714
2845
|
resolution: {integrity: sha512-xWCKU5UaiTUT6Wz/O7GKP9KWdfbsb7vhfgQzRfX4ahh5NZV4ozZ4+SdzYG8WxetsLy84UzLX3Pi++xpVn1OkFQ==}
|
|
2715
2846
|
engines: {node: '>=12'}
|
|
@@ -2718,6 +2849,15 @@ packages:
|
|
|
2718
2849
|
requiresBuild: true
|
|
2719
2850
|
optional: true
|
|
2720
2851
|
|
|
2852
|
+
/esbuild-linux-ppc64le/0.14.51:
|
|
2853
|
+
resolution: {integrity: sha512-xcdd62Y3VfGoyphNP/aIV9LP+RzFw5M5Z7ja+zdpQHHvokJM7d0rlDRMN+iSSwvUymQkqZO+G/xjb4/75du8BQ==}
|
|
2854
|
+
engines: {node: '>=12'}
|
|
2855
|
+
cpu: [ppc64]
|
|
2856
|
+
os: [linux]
|
|
2857
|
+
requiresBuild: true
|
|
2858
|
+
dev: true
|
|
2859
|
+
optional: true
|
|
2860
|
+
|
|
2721
2861
|
/esbuild-linux-riscv64/0.14.50:
|
|
2722
2862
|
resolution: {integrity: sha512-0+dsneSEihZTopoO9B6Z6K4j3uI7EdxBP7YSF5rTwUgCID+wHD3vM1gGT0m+pjCW+NOacU9kH/WE9N686FHAJg==}
|
|
2723
2863
|
engines: {node: '>=12'}
|
|
@@ -2726,6 +2866,15 @@ packages:
|
|
|
2726
2866
|
requiresBuild: true
|
|
2727
2867
|
optional: true
|
|
2728
2868
|
|
|
2869
|
+
/esbuild-linux-riscv64/0.14.51:
|
|
2870
|
+
resolution: {integrity: sha512-syXHGak9wkAnFz0gMmRBoy44JV0rp4kVCEA36P5MCeZcxFq8+fllBC2t6sKI23w3qd8Vwo9pTADCgjTSf3L3rA==}
|
|
2871
|
+
engines: {node: '>=12'}
|
|
2872
|
+
cpu: [riscv64]
|
|
2873
|
+
os: [linux]
|
|
2874
|
+
requiresBuild: true
|
|
2875
|
+
dev: true
|
|
2876
|
+
optional: true
|
|
2877
|
+
|
|
2729
2878
|
/esbuild-linux-s390x/0.14.50:
|
|
2730
2879
|
resolution: {integrity: sha512-tVjqcu8o0P9H4StwbIhL1sQYm5mWATlodKB6dpEZFkcyTI8kfIGWiWcrGmkNGH2i1kBUOsdlBafPxR3nzp3TDA==}
|
|
2731
2880
|
engines: {node: '>=12'}
|
|
@@ -2734,6 +2883,15 @@ packages:
|
|
|
2734
2883
|
requiresBuild: true
|
|
2735
2884
|
optional: true
|
|
2736
2885
|
|
|
2886
|
+
/esbuild-linux-s390x/0.14.51:
|
|
2887
|
+
resolution: {integrity: sha512-kFAJY3dv+Wq8o28K/C7xkZk/X34rgTwhknSsElIqoEo8armCOjMJ6NsMxm48KaWY2h2RUYGtQmr+RGuUPKBhyw==}
|
|
2888
|
+
engines: {node: '>=12'}
|
|
2889
|
+
cpu: [s390x]
|
|
2890
|
+
os: [linux]
|
|
2891
|
+
requiresBuild: true
|
|
2892
|
+
dev: true
|
|
2893
|
+
optional: true
|
|
2894
|
+
|
|
2737
2895
|
/esbuild-netbsd-64/0.14.50:
|
|
2738
2896
|
resolution: {integrity: sha512-0R/glfqAQ2q6MHDf7YJw/TulibugjizBxyPvZIcorH0Mb7vSimdHy0XF5uCba5CKt+r4wjax1mvO9lZ4jiAhEg==}
|
|
2739
2897
|
engines: {node: '>=12'}
|
|
@@ -2742,6 +2900,15 @@ packages:
|
|
|
2742
2900
|
requiresBuild: true
|
|
2743
2901
|
optional: true
|
|
2744
2902
|
|
|
2903
|
+
/esbuild-netbsd-64/0.14.51:
|
|
2904
|
+
resolution: {integrity: sha512-ZZBI7qrR1FevdPBVHz/1GSk1x5GDL/iy42Zy8+neEm/HA7ma+hH/bwPEjeHXKWUDvM36CZpSL/fn1/y9/Hb+1A==}
|
|
2905
|
+
engines: {node: '>=12'}
|
|
2906
|
+
cpu: [x64]
|
|
2907
|
+
os: [netbsd]
|
|
2908
|
+
requiresBuild: true
|
|
2909
|
+
dev: true
|
|
2910
|
+
optional: true
|
|
2911
|
+
|
|
2745
2912
|
/esbuild-openbsd-64/0.14.50:
|
|
2746
2913
|
resolution: {integrity: sha512-7PAtmrR5mDOFubXIkuxYQ4bdNS6XCK8AIIHUiZxq1kL8cFIH5731jPcXQ4JNy/wbj1C9sZ8rzD8BIM80Tqk29w==}
|
|
2747
2914
|
engines: {node: '>=12'}
|
|
@@ -2750,6 +2917,15 @@ packages:
|
|
|
2750
2917
|
requiresBuild: true
|
|
2751
2918
|
optional: true
|
|
2752
2919
|
|
|
2920
|
+
/esbuild-openbsd-64/0.14.51:
|
|
2921
|
+
resolution: {integrity: sha512-7R1/p39M+LSVQVgDVlcY1KKm6kFKjERSX1lipMG51NPcspJD1tmiZSmmBXoY5jhHIu6JL1QkFDTx94gMYK6vfA==}
|
|
2922
|
+
engines: {node: '>=12'}
|
|
2923
|
+
cpu: [x64]
|
|
2924
|
+
os: [openbsd]
|
|
2925
|
+
requiresBuild: true
|
|
2926
|
+
dev: true
|
|
2927
|
+
optional: true
|
|
2928
|
+
|
|
2753
2929
|
/esbuild-sunos-64/0.14.50:
|
|
2754
2930
|
resolution: {integrity: sha512-gBxNY/wyptvD7PkHIYcq7se6SQEXcSC8Y7mE0FJB+CGgssEWf6vBPfTTZ2b6BWKnmaP6P6qb7s/KRIV5T2PxsQ==}
|
|
2755
2931
|
engines: {node: '>=12'}
|
|
@@ -2758,6 +2934,15 @@ packages:
|
|
|
2758
2934
|
requiresBuild: true
|
|
2759
2935
|
optional: true
|
|
2760
2936
|
|
|
2937
|
+
/esbuild-sunos-64/0.14.51:
|
|
2938
|
+
resolution: {integrity: sha512-HoHaCswHxLEYN8eBTtyO0bFEWvA3Kdb++hSQ/lLG7TyKF69TeSG0RNoBRAs45x/oCeWaTDntEZlYwAfQlhEtJA==}
|
|
2939
|
+
engines: {node: '>=12'}
|
|
2940
|
+
cpu: [x64]
|
|
2941
|
+
os: [sunos]
|
|
2942
|
+
requiresBuild: true
|
|
2943
|
+
dev: true
|
|
2944
|
+
optional: true
|
|
2945
|
+
|
|
2761
2946
|
/esbuild-windows-32/0.14.50:
|
|
2762
2947
|
resolution: {integrity: sha512-MOOe6J9cqe/iW1qbIVYSAqzJFh0p2LBLhVUIWdMVnNUNjvg2/4QNX4oT4IzgDeldU+Bym9/Tn6+DxvUHJXL5Zw==}
|
|
2763
2948
|
engines: {node: '>=12'}
|
|
@@ -2766,6 +2951,15 @@ packages:
|
|
|
2766
2951
|
requiresBuild: true
|
|
2767
2952
|
optional: true
|
|
2768
2953
|
|
|
2954
|
+
/esbuild-windows-32/0.14.51:
|
|
2955
|
+
resolution: {integrity: sha512-4rtwSAM35A07CBt1/X8RWieDj3ZUHQqUOaEo5ZBs69rt5WAFjP4aqCIobdqOy4FdhYw1yF8Z0xFBTyc9lgPtEg==}
|
|
2956
|
+
engines: {node: '>=12'}
|
|
2957
|
+
cpu: [ia32]
|
|
2958
|
+
os: [win32]
|
|
2959
|
+
requiresBuild: true
|
|
2960
|
+
dev: true
|
|
2961
|
+
optional: true
|
|
2962
|
+
|
|
2769
2963
|
/esbuild-windows-64/0.14.50:
|
|
2770
2964
|
resolution: {integrity: sha512-r/qE5Ex3w1jjGv/JlpPoWB365ldkppUlnizhMxJgojp907ZF1PgLTuW207kgzZcSCXyquL9qJkMsY+MRtaZ5yQ==}
|
|
2771
2965
|
engines: {node: '>=12'}
|
|
@@ -2774,6 +2968,15 @@ packages:
|
|
|
2774
2968
|
requiresBuild: true
|
|
2775
2969
|
optional: true
|
|
2776
2970
|
|
|
2971
|
+
/esbuild-windows-64/0.14.51:
|
|
2972
|
+
resolution: {integrity: sha512-HoN/5HGRXJpWODprGCgKbdMvrC3A2gqvzewu2eECRw2sYxOUoh2TV1tS+G7bHNapPGI79woQJGV6pFH7GH7qnA==}
|
|
2973
|
+
engines: {node: '>=12'}
|
|
2974
|
+
cpu: [x64]
|
|
2975
|
+
os: [win32]
|
|
2976
|
+
requiresBuild: true
|
|
2977
|
+
dev: true
|
|
2978
|
+
optional: true
|
|
2979
|
+
|
|
2777
2980
|
/esbuild-windows-arm64/0.14.50:
|
|
2778
2981
|
resolution: {integrity: sha512-EMS4lQnsIe12ZyAinOINx7eq2mjpDdhGZZWDwPZE/yUTN9cnc2Ze/xUTYIAyaJqrqQda3LnDpADKpvLvol6ENQ==}
|
|
2779
2982
|
engines: {node: '>=12'}
|
|
@@ -2782,6 +2985,15 @@ packages:
|
|
|
2782
2985
|
requiresBuild: true
|
|
2783
2986
|
optional: true
|
|
2784
2987
|
|
|
2988
|
+
/esbuild-windows-arm64/0.14.51:
|
|
2989
|
+
resolution: {integrity: sha512-JQDqPjuOH7o+BsKMSddMfmVJXrnYZxXDHsoLHc0xgmAZkOOCflRmC43q31pk79F9xuyWY45jDBPolb5ZgGOf9g==}
|
|
2990
|
+
engines: {node: '>=12'}
|
|
2991
|
+
cpu: [arm64]
|
|
2992
|
+
os: [win32]
|
|
2993
|
+
requiresBuild: true
|
|
2994
|
+
dev: true
|
|
2995
|
+
optional: true
|
|
2996
|
+
|
|
2785
2997
|
/esbuild/0.14.50:
|
|
2786
2998
|
resolution: {integrity: sha512-SbC3k35Ih2IC6trhbMYW7hYeGdjPKf9atTKwBUHqMCYFZZ9z8zhuvfnZihsnJypl74FjiAKjBRqFkBkAd0rS/w==}
|
|
2787
2999
|
engines: {node: '>=12'}
|
|
@@ -2809,6 +3021,34 @@ packages:
|
|
|
2809
3021
|
esbuild-windows-64: 0.14.50
|
|
2810
3022
|
esbuild-windows-arm64: 0.14.50
|
|
2811
3023
|
|
|
3024
|
+
/esbuild/0.14.51:
|
|
3025
|
+
resolution: {integrity: sha512-+CvnDitD7Q5sT7F+FM65sWkF8wJRf+j9fPcprxYV4j+ohmzVj2W7caUqH2s5kCaCJAfcAICjSlKhDCcvDpU7nw==}
|
|
3026
|
+
engines: {node: '>=12'}
|
|
3027
|
+
hasBin: true
|
|
3028
|
+
requiresBuild: true
|
|
3029
|
+
optionalDependencies:
|
|
3030
|
+
esbuild-android-64: 0.14.51
|
|
3031
|
+
esbuild-android-arm64: 0.14.51
|
|
3032
|
+
esbuild-darwin-64: 0.14.51
|
|
3033
|
+
esbuild-darwin-arm64: 0.14.51
|
|
3034
|
+
esbuild-freebsd-64: 0.14.51
|
|
3035
|
+
esbuild-freebsd-arm64: 0.14.51
|
|
3036
|
+
esbuild-linux-32: 0.14.51
|
|
3037
|
+
esbuild-linux-64: 0.14.51
|
|
3038
|
+
esbuild-linux-arm: 0.14.51
|
|
3039
|
+
esbuild-linux-arm64: 0.14.51
|
|
3040
|
+
esbuild-linux-mips64le: 0.14.51
|
|
3041
|
+
esbuild-linux-ppc64le: 0.14.51
|
|
3042
|
+
esbuild-linux-riscv64: 0.14.51
|
|
3043
|
+
esbuild-linux-s390x: 0.14.51
|
|
3044
|
+
esbuild-netbsd-64: 0.14.51
|
|
3045
|
+
esbuild-openbsd-64: 0.14.51
|
|
3046
|
+
esbuild-sunos-64: 0.14.51
|
|
3047
|
+
esbuild-windows-32: 0.14.51
|
|
3048
|
+
esbuild-windows-64: 0.14.51
|
|
3049
|
+
esbuild-windows-arm64: 0.14.51
|
|
3050
|
+
dev: true
|
|
3051
|
+
|
|
2812
3052
|
/escalade/3.1.1:
|
|
2813
3053
|
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
|
|
2814
3054
|
engines: {node: '>=6'}
|
|
@@ -2831,7 +3071,7 @@ packages:
|
|
|
2831
3071
|
engines: {node: '>=12'}
|
|
2832
3072
|
dev: false
|
|
2833
3073
|
|
|
2834
|
-
/eslint-config-airbnb-base/15.0.
|
|
3074
|
+
/eslint-config-airbnb-base/15.0.0_jatgrcxl4x7ywe7ak6cnjca2ae:
|
|
2835
3075
|
resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
|
|
2836
3076
|
engines: {node: ^10.12.0 || >=12.0.0}
|
|
2837
3077
|
peerDependencies:
|
|
@@ -2839,8 +3079,8 @@ packages:
|
|
|
2839
3079
|
eslint-plugin-import: ^2.25.2
|
|
2840
3080
|
dependencies:
|
|
2841
3081
|
confusing-browser-globals: 1.0.11
|
|
2842
|
-
eslint: 8.
|
|
2843
|
-
eslint-plugin-import: 2.26.
|
|
3082
|
+
eslint: 8.21.0
|
|
3083
|
+
eslint-plugin-import: 2.26.0_wuikv5nqgdfyng42xxm7lklfmi
|
|
2844
3084
|
object.assign: 4.1.2
|
|
2845
3085
|
object.entries: 1.1.5
|
|
2846
3086
|
semver: 6.3.0
|
|
@@ -2855,7 +3095,7 @@ packages:
|
|
|
2855
3095
|
- supports-color
|
|
2856
3096
|
dev: true
|
|
2857
3097
|
|
|
2858
|
-
/eslint-module-utils/2.7.
|
|
3098
|
+
/eslint-module-utils/2.7.3_gjpiwexkhexdr4bbgrtzf23bg4:
|
|
2859
3099
|
resolution: {integrity: sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==}
|
|
2860
3100
|
engines: {node: '>=4'}
|
|
2861
3101
|
peerDependencies:
|
|
@@ -2873,7 +3113,7 @@ packages:
|
|
|
2873
3113
|
eslint-import-resolver-webpack:
|
|
2874
3114
|
optional: true
|
|
2875
3115
|
dependencies:
|
|
2876
|
-
'@typescript-eslint/parser': 5.
|
|
3116
|
+
'@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq
|
|
2877
3117
|
debug: 3.2.7
|
|
2878
3118
|
eslint-import-resolver-node: 0.3.6
|
|
2879
3119
|
find-up: 2.1.0
|
|
@@ -2881,7 +3121,7 @@ packages:
|
|
|
2881
3121
|
- supports-color
|
|
2882
3122
|
dev: true
|
|
2883
3123
|
|
|
2884
|
-
/eslint-plugin-import/2.26.
|
|
3124
|
+
/eslint-plugin-import/2.26.0_wuikv5nqgdfyng42xxm7lklfmi:
|
|
2885
3125
|
resolution: {integrity: sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==}
|
|
2886
3126
|
engines: {node: '>=4'}
|
|
2887
3127
|
peerDependencies:
|
|
@@ -2891,14 +3131,14 @@ packages:
|
|
|
2891
3131
|
'@typescript-eslint/parser':
|
|
2892
3132
|
optional: true
|
|
2893
3133
|
dependencies:
|
|
2894
|
-
'@typescript-eslint/parser': 5.
|
|
3134
|
+
'@typescript-eslint/parser': 5.32.0_qugx7qdu5zevzvxaiqyxfiwquq
|
|
2895
3135
|
array-includes: 3.1.5
|
|
2896
3136
|
array.prototype.flat: 1.3.0
|
|
2897
3137
|
debug: 2.6.9
|
|
2898
3138
|
doctrine: 2.1.0
|
|
2899
|
-
eslint: 8.
|
|
3139
|
+
eslint: 8.21.0
|
|
2900
3140
|
eslint-import-resolver-node: 0.3.6
|
|
2901
|
-
eslint-module-utils: 2.7.
|
|
3141
|
+
eslint-module-utils: 2.7.3_gjpiwexkhexdr4bbgrtzf23bg4
|
|
2902
3142
|
has: 1.0.3
|
|
2903
3143
|
is-core-module: 2.9.0
|
|
2904
3144
|
is-glob: 4.0.3
|
|
@@ -2912,19 +3152,19 @@ packages:
|
|
|
2912
3152
|
- supports-color
|
|
2913
3153
|
dev: true
|
|
2914
3154
|
|
|
2915
|
-
/eslint-plugin-vue/9.3.0_eslint@8.
|
|
3155
|
+
/eslint-plugin-vue/9.3.0_eslint@8.21.0:
|
|
2916
3156
|
resolution: {integrity: sha512-iscKKkBZgm6fGZwFt6poRoWC0Wy2dQOlwUPW++CiPoQiw1enctV2Hj5DBzzjJZfyqs+FAXhgzL4q0Ww03AgSmQ==}
|
|
2917
3157
|
engines: {node: ^14.17.0 || >=16.0.0}
|
|
2918
3158
|
peerDependencies:
|
|
2919
3159
|
eslint: ^6.2.0 || ^7.0.0 || ^8.0.0
|
|
2920
3160
|
dependencies:
|
|
2921
|
-
eslint: 8.
|
|
2922
|
-
eslint-utils: 3.0.0_eslint@8.
|
|
3161
|
+
eslint: 8.21.0
|
|
3162
|
+
eslint-utils: 3.0.0_eslint@8.21.0
|
|
2923
3163
|
natural-compare: 1.4.0
|
|
2924
3164
|
nth-check: 2.1.1
|
|
2925
3165
|
postcss-selector-parser: 6.0.10
|
|
2926
3166
|
semver: 7.3.7
|
|
2927
|
-
vue-eslint-parser: 9.0.3_eslint@8.
|
|
3167
|
+
vue-eslint-parser: 9.0.3_eslint@8.21.0
|
|
2928
3168
|
xml-name-validator: 4.0.0
|
|
2929
3169
|
transitivePeerDependencies:
|
|
2930
3170
|
- supports-color
|
|
@@ -2946,13 +3186,13 @@ packages:
|
|
|
2946
3186
|
estraverse: 5.3.0
|
|
2947
3187
|
dev: true
|
|
2948
3188
|
|
|
2949
|
-
/eslint-utils/3.0.0_eslint@8.
|
|
3189
|
+
/eslint-utils/3.0.0_eslint@8.21.0:
|
|
2950
3190
|
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
|
|
2951
3191
|
engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
|
|
2952
3192
|
peerDependencies:
|
|
2953
3193
|
eslint: '>=5'
|
|
2954
3194
|
dependencies:
|
|
2955
|
-
eslint: 8.
|
|
3195
|
+
eslint: 8.21.0
|
|
2956
3196
|
eslint-visitor-keys: 2.1.0
|
|
2957
3197
|
dev: true
|
|
2958
3198
|
|
|
@@ -2966,13 +3206,14 @@ packages:
|
|
|
2966
3206
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
2967
3207
|
dev: true
|
|
2968
3208
|
|
|
2969
|
-
/eslint/8.
|
|
2970
|
-
resolution: {integrity: sha512
|
|
3209
|
+
/eslint/8.21.0:
|
|
3210
|
+
resolution: {integrity: sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==}
|
|
2971
3211
|
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
2972
3212
|
hasBin: true
|
|
2973
3213
|
dependencies:
|
|
2974
3214
|
'@eslint/eslintrc': 1.3.0
|
|
2975
|
-
'@humanwhocodes/config-array': 0.
|
|
3215
|
+
'@humanwhocodes/config-array': 0.10.4
|
|
3216
|
+
'@humanwhocodes/gitignore-to-minimatch': 1.0.2
|
|
2976
3217
|
ajv: 6.12.6
|
|
2977
3218
|
chalk: 4.1.2
|
|
2978
3219
|
cross-spawn: 7.0.3
|
|
@@ -2980,16 +3221,19 @@ packages:
|
|
|
2980
3221
|
doctrine: 3.0.0
|
|
2981
3222
|
escape-string-regexp: 4.0.0
|
|
2982
3223
|
eslint-scope: 7.1.1
|
|
2983
|
-
eslint-utils: 3.0.0_eslint@8.
|
|
3224
|
+
eslint-utils: 3.0.0_eslint@8.21.0
|
|
2984
3225
|
eslint-visitor-keys: 3.3.0
|
|
2985
|
-
espree: 9.3.
|
|
3226
|
+
espree: 9.3.3
|
|
2986
3227
|
esquery: 1.4.0
|
|
2987
3228
|
esutils: 2.0.3
|
|
2988
3229
|
fast-deep-equal: 3.1.3
|
|
2989
3230
|
file-entry-cache: 6.0.1
|
|
3231
|
+
find-up: 5.0.0
|
|
2990
3232
|
functional-red-black-tree: 1.0.1
|
|
2991
3233
|
glob-parent: 6.0.2
|
|
2992
3234
|
globals: 13.16.0
|
|
3235
|
+
globby: 11.1.0
|
|
3236
|
+
grapheme-splitter: 1.0.4
|
|
2993
3237
|
ignore: 5.2.0
|
|
2994
3238
|
import-fresh: 3.3.0
|
|
2995
3239
|
imurmurhash: 0.1.4
|
|
@@ -3019,6 +3263,15 @@ packages:
|
|
|
3019
3263
|
eslint-visitor-keys: 3.3.0
|
|
3020
3264
|
dev: true
|
|
3021
3265
|
|
|
3266
|
+
/espree/9.3.3:
|
|
3267
|
+
resolution: {integrity: sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==}
|
|
3268
|
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
3269
|
+
dependencies:
|
|
3270
|
+
acorn: 8.8.0
|
|
3271
|
+
acorn-jsx: 5.3.2_acorn@8.8.0
|
|
3272
|
+
eslint-visitor-keys: 3.3.0
|
|
3273
|
+
dev: true
|
|
3274
|
+
|
|
3022
3275
|
/esprima/4.0.1:
|
|
3023
3276
|
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
|
|
3024
3277
|
engines: {node: '>=4'}
|
|
@@ -3299,8 +3552,8 @@ packages:
|
|
|
3299
3552
|
pkg-dir: 4.2.0
|
|
3300
3553
|
dev: false
|
|
3301
3554
|
|
|
3302
|
-
/firebase-admin/11.0.
|
|
3303
|
-
resolution: {integrity: sha512-
|
|
3555
|
+
/firebase-admin/11.0.1_@firebase+app-types@0.7.0:
|
|
3556
|
+
resolution: {integrity: sha512-rL3wlZbi2Kb/KJgcmj1YHlD4ZhfmhfgRO2YJialxAllm0tj1IQea878hHuBLGmv4DpbW9t9nLvX9kddNR2Y65Q==}
|
|
3304
3557
|
engines: {node: '>=14'}
|
|
3305
3558
|
dependencies:
|
|
3306
3559
|
'@fastify/busboy': 1.1.0
|
|
@@ -3320,7 +3573,7 @@ packages:
|
|
|
3320
3573
|
- supports-color
|
|
3321
3574
|
dev: false
|
|
3322
3575
|
|
|
3323
|
-
/firebase-functions/3.22.0_firebase-admin@11.0.
|
|
3576
|
+
/firebase-functions/3.22.0_firebase-admin@11.0.1:
|
|
3324
3577
|
resolution: {integrity: sha512-d1BxBpT95MhvVqXkpLWDvWbyuX7e2l69cFAiqG3U1XQDaMV88bM9S+Zg7H8i9pitEGFr+76ErjKgrY0n+g3ZDA==}
|
|
3325
3578
|
engines: {node: ^8.13.0 || >=10.10.0}
|
|
3326
3579
|
hasBin: true
|
|
@@ -3331,7 +3584,7 @@ packages:
|
|
|
3331
3584
|
'@types/express': 4.17.3
|
|
3332
3585
|
cors: 2.8.5
|
|
3333
3586
|
express: 4.18.1
|
|
3334
|
-
firebase-admin: 11.0.
|
|
3587
|
+
firebase-admin: 11.0.1_@firebase+app-types@0.7.0
|
|
3335
3588
|
lodash: 4.17.21
|
|
3336
3589
|
node-fetch: 2.6.7
|
|
3337
3590
|
transitivePeerDependencies:
|
|
@@ -3351,12 +3604,31 @@ packages:
|
|
|
3351
3604
|
resolution: {integrity: sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==}
|
|
3352
3605
|
dev: true
|
|
3353
3606
|
|
|
3607
|
+
/follow-redirects/1.15.1:
|
|
3608
|
+
resolution: {integrity: sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==}
|
|
3609
|
+
engines: {node: '>=4.0'}
|
|
3610
|
+
peerDependencies:
|
|
3611
|
+
debug: '*'
|
|
3612
|
+
peerDependenciesMeta:
|
|
3613
|
+
debug:
|
|
3614
|
+
optional: true
|
|
3615
|
+
dev: false
|
|
3616
|
+
|
|
3354
3617
|
/for-each/0.3.3:
|
|
3355
3618
|
resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
|
|
3356
3619
|
dependencies:
|
|
3357
3620
|
is-callable: 1.2.4
|
|
3358
3621
|
dev: false
|
|
3359
3622
|
|
|
3623
|
+
/form-data/4.0.0:
|
|
3624
|
+
resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
|
|
3625
|
+
engines: {node: '>= 6'}
|
|
3626
|
+
dependencies:
|
|
3627
|
+
asynckit: 0.4.0
|
|
3628
|
+
combined-stream: 1.0.8
|
|
3629
|
+
mime-types: 2.1.35
|
|
3630
|
+
dev: false
|
|
3631
|
+
|
|
3360
3632
|
/formdata-polyfill/4.0.10:
|
|
3361
3633
|
resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
|
|
3362
3634
|
engines: {node: '>=12.20.0'}
|
|
@@ -3710,6 +3982,10 @@ packages:
|
|
|
3710
3982
|
/graceful-fs/4.2.10:
|
|
3711
3983
|
resolution: {integrity: sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==}
|
|
3712
3984
|
|
|
3985
|
+
/grapheme-splitter/1.0.4:
|
|
3986
|
+
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
|
|
3987
|
+
dev: true
|
|
3988
|
+
|
|
3713
3989
|
/gray-matter/4.0.3:
|
|
3714
3990
|
resolution: {integrity: sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==}
|
|
3715
3991
|
engines: {node: '>=6.0'}
|
|
@@ -4341,7 +4617,6 @@ packages:
|
|
|
4341
4617
|
|
|
4342
4618
|
/json-schema-traverse/1.0.0:
|
|
4343
4619
|
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
|
4344
|
-
dev: true
|
|
4345
4620
|
|
|
4346
4621
|
/json-stable-stringify-without-jsonify/1.0.1:
|
|
4347
4622
|
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
|
@@ -5313,8 +5588,8 @@ packages:
|
|
|
5313
5588
|
whatwg-url: 5.0.0
|
|
5314
5589
|
dev: false
|
|
5315
5590
|
|
|
5316
|
-
/node-fetch/3.2.
|
|
5317
|
-
resolution: {integrity: sha512
|
|
5591
|
+
/node-fetch/3.2.10:
|
|
5592
|
+
resolution: {integrity: sha512-MhuzNwdURnZ1Cp4XTazr69K0BTizsBroX7Zx3UgDSVcZYKF/6p0CBe4EUb/hLqmzVhl0UpYfgRljQ4yxE+iCxA==}
|
|
5318
5593
|
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
|
|
5319
5594
|
dependencies:
|
|
5320
5595
|
data-uri-to-buffer: 4.0.0
|
|
@@ -5811,7 +6086,6 @@ packages:
|
|
|
5811
6086
|
/punycode/2.1.1:
|
|
5812
6087
|
resolution: {integrity: sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==}
|
|
5813
6088
|
engines: {node: '>=6'}
|
|
5814
|
-
dev: true
|
|
5815
6089
|
|
|
5816
6090
|
/q/1.5.1:
|
|
5817
6091
|
resolution: {integrity: sha512-kV/CThkXo6xyFEZUugw/+pIOywXcDbFYgSct5cT3gqlbkBE1SJdwy6UQoZvodiWF/ckQLZyDE/Bu1M6gVu5lVw==}
|
|
@@ -6015,7 +6289,6 @@ packages:
|
|
|
6015
6289
|
/require-from-string/2.0.2:
|
|
6016
6290
|
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
|
6017
6291
|
engines: {node: '>=0.10.0'}
|
|
6018
|
-
dev: true
|
|
6019
6292
|
|
|
6020
6293
|
/resolve-from/4.0.0:
|
|
6021
6294
|
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
@@ -6701,137 +6974,137 @@ packages:
|
|
|
6701
6974
|
typescript: 4.7.4
|
|
6702
6975
|
dev: true
|
|
6703
6976
|
|
|
6704
|
-
/turbo-android-arm64/1.
|
|
6705
|
-
resolution: {integrity: sha512-
|
|
6977
|
+
/turbo-android-arm64/1.4.0:
|
|
6978
|
+
resolution: {integrity: sha512-k03ztiuVpRqFiXl452HUsDgns0KrDtKL+e19h3eVJZFlr0lXtMBAcjh6qkh9lSmBW99NGSESGbsdaL9cp6F/vw==}
|
|
6706
6979
|
cpu: [arm64]
|
|
6707
6980
|
os: [android]
|
|
6708
6981
|
requiresBuild: true
|
|
6709
6982
|
dev: true
|
|
6710
6983
|
optional: true
|
|
6711
6984
|
|
|
6712
|
-
/turbo-darwin-64/1.
|
|
6713
|
-
resolution: {integrity: sha512-
|
|
6985
|
+
/turbo-darwin-64/1.4.0:
|
|
6986
|
+
resolution: {integrity: sha512-uj6p1marrEIFBX1nv4+LRg4e1vTYXTsv2DUB0e/LeAf9G2dRzh/MtSwBWuUaFLCcDvMSsnOeComgEkKuYyeVfw==}
|
|
6714
6987
|
cpu: [x64]
|
|
6715
6988
|
os: [darwin]
|
|
6716
6989
|
requiresBuild: true
|
|
6717
6990
|
dev: true
|
|
6718
6991
|
optional: true
|
|
6719
6992
|
|
|
6720
|
-
/turbo-darwin-arm64/1.
|
|
6721
|
-
resolution: {integrity: sha512-
|
|
6993
|
+
/turbo-darwin-arm64/1.4.0:
|
|
6994
|
+
resolution: {integrity: sha512-O6xBDY3LUJVctQBkbPoHHDsUIhuJTdIgIY/w4ZPRgdv51fj6uBJRolj9lLx1jGioLqjUaj/sXIizlaPar6tm5A==}
|
|
6722
6995
|
cpu: [arm64]
|
|
6723
6996
|
os: [darwin]
|
|
6724
6997
|
requiresBuild: true
|
|
6725
6998
|
dev: true
|
|
6726
6999
|
optional: true
|
|
6727
7000
|
|
|
6728
|
-
/turbo-freebsd-64/1.
|
|
6729
|
-
resolution: {integrity: sha512-
|
|
7001
|
+
/turbo-freebsd-64/1.4.0:
|
|
7002
|
+
resolution: {integrity: sha512-103LbqCHxDHCz0xmpWis5JHkti2Irlq7n7vAk43+Kkxrz8UqhbrSfe0qUhkYltvxQ/R5cKAOKmBT5eZCO85+Xw==}
|
|
6730
7003
|
cpu: [x64]
|
|
6731
7004
|
os: [freebsd]
|
|
6732
7005
|
requiresBuild: true
|
|
6733
7006
|
dev: true
|
|
6734
7007
|
optional: true
|
|
6735
7008
|
|
|
6736
|
-
/turbo-freebsd-arm64/1.
|
|
6737
|
-
resolution: {integrity: sha512-
|
|
7009
|
+
/turbo-freebsd-arm64/1.4.0:
|
|
7010
|
+
resolution: {integrity: sha512-Cf+TGpQTpogSd/SsGhz1uQMhNVYYT1GeGg9iJ99rjjzbdC1zjdmeCbgUwyUUx5wVVM832o5fWaCJai3My3PDDQ==}
|
|
6738
7011
|
cpu: [arm64]
|
|
6739
7012
|
os: [freebsd]
|
|
6740
7013
|
requiresBuild: true
|
|
6741
7014
|
dev: true
|
|
6742
7015
|
optional: true
|
|
6743
7016
|
|
|
6744
|
-
/turbo-linux-32/1.
|
|
6745
|
-
resolution: {integrity: sha512-
|
|
7017
|
+
/turbo-linux-32/1.4.0:
|
|
7018
|
+
resolution: {integrity: sha512-bJn78F+mH45g6xPFTdn7PLzixMuqugGz4Db9dPLijWQzeKzVz52qpN7WGUZwfPZtQOs0HUI8woH6eqAZMdT2ZA==}
|
|
6746
7019
|
cpu: [ia32]
|
|
6747
7020
|
os: [linux]
|
|
6748
7021
|
requiresBuild: true
|
|
6749
7022
|
dev: true
|
|
6750
7023
|
optional: true
|
|
6751
7024
|
|
|
6752
|
-
/turbo-linux-64/1.
|
|
6753
|
-
resolution: {integrity: sha512-
|
|
7025
|
+
/turbo-linux-64/1.4.0:
|
|
7026
|
+
resolution: {integrity: sha512-1+WyeJ1CBOnXNQl+Qke4NWvy3Zymp0NoxmJcZAmVBhwqAqGyERypeDznMfFmFtpG99/ZhmT7xwilz3Bw3Eyukw==}
|
|
6754
7027
|
cpu: [x64]
|
|
6755
7028
|
os: [linux]
|
|
6756
7029
|
requiresBuild: true
|
|
6757
7030
|
dev: true
|
|
6758
7031
|
optional: true
|
|
6759
7032
|
|
|
6760
|
-
/turbo-linux-arm/1.
|
|
6761
|
-
resolution: {integrity: sha512-
|
|
7033
|
+
/turbo-linux-arm/1.4.0:
|
|
7034
|
+
resolution: {integrity: sha512-9DEUP1pKWCwMDuriYCuTf+73oBIxTU4VLdkP89dtPoQVXW6mviES4gRXm8jAs6AOzzMI4DHgNKPxk7UKUvuExQ==}
|
|
6762
7035
|
cpu: [arm]
|
|
6763
7036
|
os: [linux]
|
|
6764
7037
|
requiresBuild: true
|
|
6765
7038
|
dev: true
|
|
6766
7039
|
optional: true
|
|
6767
7040
|
|
|
6768
|
-
/turbo-linux-arm64/1.
|
|
6769
|
-
resolution: {integrity: sha512-
|
|
7041
|
+
/turbo-linux-arm64/1.4.0:
|
|
7042
|
+
resolution: {integrity: sha512-DUtBhN0+o4XULQ9hsnzp6nI4mycMH7PpjKtG2HdmiZIhSYipSKWIMZkvgJpnpVJoRarLe7PmcDJIBp2aXvw2xw==}
|
|
6770
7043
|
cpu: [arm64]
|
|
6771
7044
|
os: [linux]
|
|
6772
7045
|
requiresBuild: true
|
|
6773
7046
|
dev: true
|
|
6774
7047
|
optional: true
|
|
6775
7048
|
|
|
6776
|
-
/turbo-linux-mips64le/1.
|
|
6777
|
-
resolution: {integrity: sha512-
|
|
6778
|
-
cpu: [
|
|
7049
|
+
/turbo-linux-mips64le/1.4.0:
|
|
7050
|
+
resolution: {integrity: sha512-ZJcQvUgmCJ4TFosVL6hEmECP5ysSubF3wMOq5hkBxzRMBjL0djW+BK4aIXutBTpjAz9OyM10S4KeEGeGRS/e3Q==}
|
|
7051
|
+
cpu: [mipsel]
|
|
6779
7052
|
os: [linux]
|
|
6780
7053
|
requiresBuild: true
|
|
6781
7054
|
dev: true
|
|
6782
7055
|
optional: true
|
|
6783
7056
|
|
|
6784
|
-
/turbo-linux-ppc64le/1.
|
|
6785
|
-
resolution: {integrity: sha512-
|
|
7057
|
+
/turbo-linux-ppc64le/1.4.0:
|
|
7058
|
+
resolution: {integrity: sha512-sk/rOrcGnYRcwNP8yJwmeOOzInv7YzMfWBomVf/TwrpsGL8QrD05zjsMR+lGxYNoNOJIHbroracjHaLvKWZN7A==}
|
|
6786
7059
|
cpu: [ppc64]
|
|
6787
7060
|
os: [linux]
|
|
6788
7061
|
requiresBuild: true
|
|
6789
7062
|
dev: true
|
|
6790
7063
|
optional: true
|
|
6791
7064
|
|
|
6792
|
-
/turbo-windows-32/1.
|
|
6793
|
-
resolution: {integrity: sha512-
|
|
7065
|
+
/turbo-windows-32/1.4.0:
|
|
7066
|
+
resolution: {integrity: sha512-5fmS6J3ZvhWRss+sFw2edOElVeKtk0l9yCoCYltPeFSy3+ArXws06ik3Z318SuKlbFu/+VTbM/NyBleKru+0ag==}
|
|
6794
7067
|
cpu: [ia32]
|
|
6795
7068
|
os: [win32]
|
|
6796
7069
|
requiresBuild: true
|
|
6797
7070
|
dev: true
|
|
6798
7071
|
optional: true
|
|
6799
7072
|
|
|
6800
|
-
/turbo-windows-64/1.
|
|
6801
|
-
resolution: {integrity: sha512-
|
|
7073
|
+
/turbo-windows-64/1.4.0:
|
|
7074
|
+
resolution: {integrity: sha512-FZZBHjb8BYpEGbVOpJEEFAjS3xxUVg76MBPXqRb5IUPQeXiCd8VfO4UApn9syjUuTLORBoWLmSf3xp7vd1cIgA==}
|
|
6802
7075
|
cpu: [x64]
|
|
6803
7076
|
os: [win32]
|
|
6804
7077
|
requiresBuild: true
|
|
6805
7078
|
dev: true
|
|
6806
7079
|
optional: true
|
|
6807
7080
|
|
|
6808
|
-
/turbo-windows-arm64/1.
|
|
6809
|
-
resolution: {integrity: sha512-
|
|
7081
|
+
/turbo-windows-arm64/1.4.0:
|
|
7082
|
+
resolution: {integrity: sha512-mJAlDf5/qBVMVv+q+0/2PF5tRHKz4mgtl/DnRn5n/rIfRvElGkjlPbQwJdXuMCEQVE9FMOAGRCstu0dkcdTluQ==}
|
|
6810
7083
|
cpu: [arm64]
|
|
6811
7084
|
os: [win32]
|
|
6812
7085
|
requiresBuild: true
|
|
6813
7086
|
dev: true
|
|
6814
7087
|
optional: true
|
|
6815
7088
|
|
|
6816
|
-
/turbo/1.
|
|
6817
|
-
resolution: {integrity: sha512-
|
|
7089
|
+
/turbo/1.4.0:
|
|
7090
|
+
resolution: {integrity: sha512-k2x8QqunK/96tqzB7aRCQ601H7N2PnxTcrEH9NoJjN5sJeymnfn/dQ8l6HrSyuYrW259W3N/AWAAUhpXnUyitA==}
|
|
6818
7091
|
hasBin: true
|
|
6819
7092
|
requiresBuild: true
|
|
6820
7093
|
optionalDependencies:
|
|
6821
|
-
turbo-android-arm64: 1.
|
|
6822
|
-
turbo-darwin-64: 1.
|
|
6823
|
-
turbo-darwin-arm64: 1.
|
|
6824
|
-
turbo-freebsd-64: 1.
|
|
6825
|
-
turbo-freebsd-arm64: 1.
|
|
6826
|
-
turbo-linux-32: 1.
|
|
6827
|
-
turbo-linux-64: 1.
|
|
6828
|
-
turbo-linux-arm: 1.
|
|
6829
|
-
turbo-linux-arm64: 1.
|
|
6830
|
-
turbo-linux-mips64le: 1.
|
|
6831
|
-
turbo-linux-ppc64le: 1.
|
|
6832
|
-
turbo-windows-32: 1.
|
|
6833
|
-
turbo-windows-64: 1.
|
|
6834
|
-
turbo-windows-arm64: 1.
|
|
7094
|
+
turbo-android-arm64: 1.4.0
|
|
7095
|
+
turbo-darwin-64: 1.4.0
|
|
7096
|
+
turbo-darwin-arm64: 1.4.0
|
|
7097
|
+
turbo-freebsd-64: 1.4.0
|
|
7098
|
+
turbo-freebsd-arm64: 1.4.0
|
|
7099
|
+
turbo-linux-32: 1.4.0
|
|
7100
|
+
turbo-linux-64: 1.4.0
|
|
7101
|
+
turbo-linux-arm: 1.4.0
|
|
7102
|
+
turbo-linux-arm64: 1.4.0
|
|
7103
|
+
turbo-linux-mips64le: 1.4.0
|
|
7104
|
+
turbo-linux-ppc64le: 1.4.0
|
|
7105
|
+
turbo-windows-32: 1.4.0
|
|
7106
|
+
turbo-windows-64: 1.4.0
|
|
7107
|
+
turbo-windows-arm64: 1.4.0
|
|
6835
7108
|
dev: true
|
|
6836
7109
|
|
|
6837
7110
|
/type-check/0.4.0:
|
|
@@ -7034,7 +7307,6 @@ packages:
|
|
|
7034
7307
|
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
|
7035
7308
|
dependencies:
|
|
7036
7309
|
punycode: 2.1.1
|
|
7037
|
-
dev: true
|
|
7038
7310
|
|
|
7039
7311
|
/util-deprecate/1.0.2:
|
|
7040
7312
|
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
|
@@ -7140,8 +7412,8 @@ packages:
|
|
|
7140
7412
|
optionalDependencies:
|
|
7141
7413
|
fsevents: 2.3.2
|
|
7142
7414
|
|
|
7143
|
-
/vitest/0.
|
|
7144
|
-
resolution: {integrity: sha512-
|
|
7415
|
+
/vitest/0.20.2:
|
|
7416
|
+
resolution: {integrity: sha512-AFXTHrwG4d2OO6SAL8WP5ZkOwLtgeF4tlrHfXFqrHc+5chNegeR53pge0lv/C4316SqJ2DbYaUBH8vh3CdF+BQ==}
|
|
7145
7417
|
engines: {node: '>=v14.16.0'}
|
|
7146
7418
|
hasBin: true
|
|
7147
7419
|
peerDependencies:
|
|
@@ -7247,14 +7519,14 @@ packages:
|
|
|
7247
7519
|
resolution: {integrity: sha512-EcswR2S8bpR7fD0YPeS7r2xXExrScVMxg4MedACaWHEtx9ftCF/qHG1xGkolzTPcEmjTavCQgbVzHUIdTMzFGA==}
|
|
7248
7520
|
dev: false
|
|
7249
7521
|
|
|
7250
|
-
/vue-eslint-parser/9.0.3_eslint@8.
|
|
7522
|
+
/vue-eslint-parser/9.0.3_eslint@8.21.0:
|
|
7251
7523
|
resolution: {integrity: sha512-yL+ZDb+9T0ELG4VIFo/2anAOz8SvBdlqEnQnvJ3M7Scq56DvtjY0VY88bByRZB0D4J0u8olBcfrXTVONXsh4og==}
|
|
7252
7524
|
engines: {node: ^14.17.0 || >=16.0.0}
|
|
7253
7525
|
peerDependencies:
|
|
7254
7526
|
eslint: '>=6.0.0'
|
|
7255
7527
|
dependencies:
|
|
7256
7528
|
debug: 4.3.4
|
|
7257
|
-
eslint: 8.
|
|
7529
|
+
eslint: 8.21.0
|
|
7258
7530
|
eslint-scope: 7.1.1
|
|
7259
7531
|
eslint-visitor-keys: 3.3.0
|
|
7260
7532
|
espree: 9.3.2
|
|
@@ -7474,7 +7746,7 @@ packages:
|
|
|
7474
7746
|
fs-extra: 10.1.0
|
|
7475
7747
|
globby: 13.1.2
|
|
7476
7748
|
minimist: 1.2.6
|
|
7477
|
-
node-fetch: 3.2.
|
|
7749
|
+
node-fetch: 3.2.10
|
|
7478
7750
|
ps-tree: 1.2.0
|
|
7479
7751
|
which: 2.0.2
|
|
7480
7752
|
yaml: 2.1.1
|