cabloy 5.1.97 → 5.1.98
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/.cabloy-version +1 -1
- package/CHANGELOG.md +27 -0
- package/cabloy-docs/.vitepress/config.mjs +7 -0
- package/cabloy-docs/backend/image-guide.md +544 -0
- package/cabloy-docs/frontend/image-guide.md +512 -0
- package/cabloy-docs/frontend/introduction.md +2 -0
- package/cabloy-docs/frontend/ioc-and-beans.md +34 -3
- package/cabloy-docs/frontend/model-architecture.md +2 -0
- package/cabloy-docs/frontend/model-resource-owner-pattern.md +2 -0
- package/cabloy-docs/frontend/model-state-guide.md +2 -0
- package/cabloy-docs/frontend/reading-zova-for-vue-developers.md +10 -8
- package/cabloy-docs/frontend/server-data.md +2 -0
- package/cabloy-docs/frontend/state-architecture-for-vue-developers.md +218 -0
- package/cabloy-docs/frontend/system-startup-guide.md +2 -0
- package/cabloy-docs/frontend/zova-vs-vue3-comparison.md +11 -10
- package/cabloy-docs/fullstack/image-workflow.md +403 -0
- package/cabloy-docs/fullstack/introduction.md +1 -0
- package/package.json +1 -1
- package/vona/package.original.json +0 -1
- package/vona/packages-vona/vona/package.json +1 -1
- package/vona/pnpm-lock.yaml +424 -47
- package/vona/src/suite/cabloy-basic/modules/basic-siteadmin/src/bean/ssrSite.admin.ts +4 -0
- package/vona/src/suite/cabloy-basic/modules/basic-siteweb/src/bean/ssrSite.web.ts +4 -0
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/cli/ssrSite/boilerplate/{{sceneName}}.{{beanName}}.ts_ +3 -0
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/package.json +1 -1
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/src/service/ssrHandler.ts +11 -2
- package/vona/src/suite-vendor/a-cabloy/modules/a-ssr/src/types/ssrSite.ts +6 -0
- package/vona/src/suite-vendor/a-cabloy/package.json +1 -1
- package/vona/src/suite-vendor/a-file/modules/a-file/cli/fileProvider/boilerplate/{{sceneName}}.{{beanName}}.ts_ +23 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/cli/fileScene/boilerplate/{{sceneName}}.{{beanName}}.ts_ +5 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/package.json +66 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/.metadata/index.ts +425 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/.metadata/locales.ts +18 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/.metadata/this.ts +2 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/bean.file.ts +322 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/bean.fileProvider.ts +62 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/bean.fileUploadPolicy.ts +196 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/meta.redlock.ts +11 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/bean/meta.version.ts +38 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/config/config.ts +16 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/config/locale/en-us.ts +1 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/config/locale/zh-cn.ts +1 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/controller/file.ts +167 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileDirectUploadRequest.ts +33 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileDirectUploadResponse.ts +41 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileDownloadRequest.ts +12 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadResponse.ts +59 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadTokenRequest.ts +24 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadTokenResponse.ts +16 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/dto/fileUploadUrlRequest.ts +33 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/entity/file.ts +55 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/entity/fileProvider.ts +24 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/index.ts +4 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/lib/fileProvider.ts +7 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/lib/fileScene.ts +7 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/lib/fileUploadValidation.ts +15 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/lib/index.ts +3 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/model/file.ts +10 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/model/fileProvider.ts +10 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/types/file.ts +144 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/types/fileProvider.ts +111 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/types/fileScene.ts +53 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/src/types/index.ts +3 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/tsconfig.build.json +11 -0
- package/vona/src/suite-vendor/a-file/modules/a-file/tsconfig.json +7 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/package.json +53 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/.metadata/index.ts +104 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/.metadata/this.ts +2 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/bean/fileProvider.cloudflare.ts +123 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/index.ts +1 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/src/service/fileCloudflare.ts +245 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/tsconfig.build.json +11 -0
- package/vona/src/suite-vendor/a-file/modules/file-cloudflare/tsconfig.json +7 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/package.json +50 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/.metadata/index.ts +111 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/.metadata/this.ts +2 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/bean/fileProvider.native.ts +125 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/config/config.ts +7 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/index.ts +1 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/src/service/fileNative.ts +125 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/tsconfig.build.json +11 -0
- package/vona/src/suite-vendor/a-file/modules/file-native/tsconfig.json +7 -0
- package/vona/src/suite-vendor/a-file/package.json +14 -0
- package/vona/src/suite-vendor/a-file/tsconfig.base.json +4 -0
- package/vona/src/suite-vendor/a-file/tsconfig.json +16 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/package.json +4 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/.metadata/index.ts +61 -3
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/bean.image.ts +336 -152
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/bean.imageProvider.ts +21 -14
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/bean.imageUploadPolicy.ts +59 -11
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/meta.index.ts +12 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/meta.redlock.ts +1 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/meta.version.ts +3 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/bean/schedule.imageDraftPrune.ts +29 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/config/config.ts +3 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/controller/image.ts +24 -54
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageDirectUploadFinalizeRequest.ts +13 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageDirectUploadFinalizeResponse.ts +10 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageDirectUploadResponse.ts +10 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageUploadResponse.ts +10 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/dto/imageView.ts +10 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/entity/image.ts +10 -1
- package/vona/src/suite-vendor/a-image/modules/a-image/src/lib/imageUploadValidation.ts +15 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/lib/index.ts +1 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/types/image.ts +18 -0
- package/vona/src/suite-vendor/a-image/modules/a-image/src/types/imageProvider.ts +28 -2
- package/vona/src/suite-vendor/a-image/modules/image-cloudflare/package.json +1 -1
- package/vona/src/suite-vendor/a-image/modules/image-cloudflare/src/bean/imageProvider.cloudflare.ts +13 -1
- package/vona/src/suite-vendor/a-image/modules/image-cloudflare/src/service/imageCloudflare.ts +26 -0
- package/vona/src/suite-vendor/a-image/modules/image-native/package.json +6 -2
- package/vona/src/suite-vendor/a-image/modules/image-native/src/.metadata/index.ts +37 -0
- package/vona/src/suite-vendor/a-image/modules/image-native/src/bean/imageProvider.native.ts +21 -1
- package/vona/src/suite-vendor/a-image/modules/image-native/src/controller/image.ts +57 -0
- package/vona/src/suite-vendor/a-image/modules/image-native/src/service/imageNative.ts +142 -34
- package/vona/src/suite-vendor/a-image/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/entity.ts +2 -4
- package/vona/src/suite-vendor/a-vona/modules/a-ormutils/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-ormutils/src/lib/columns.ts +7 -3
- package/vona/src/suite-vendor/a-vona/package.json +1 -1
- package/zova/pnpm-lock.yaml +389 -397
- package/zova/src/suite/cabloy-basic/modules/basic-image/src/component/formFieldImage/controller.tsx +0 -9
package/zova/pnpm-lock.yaml
CHANGED
|
@@ -50,10 +50,10 @@ importers:
|
|
|
50
50
|
version: 1.1.10
|
|
51
51
|
'@tailwindcss/postcss':
|
|
52
52
|
specifier: ^4.2.2
|
|
53
|
-
version: 4.3.
|
|
53
|
+
version: 4.3.2
|
|
54
54
|
'@tailwindcss/typography':
|
|
55
55
|
specifier: ^0.5.19
|
|
56
|
-
version: 0.5.20(tailwindcss@4.3.
|
|
56
|
+
version: 0.5.20(tailwindcss@4.3.2)
|
|
57
57
|
'@tanstack/query-core':
|
|
58
58
|
specifier: ^5.100.10
|
|
59
59
|
version: 5.101.1
|
|
@@ -71,7 +71,7 @@ importers:
|
|
|
71
71
|
version: 8.21.3(vue@3.5.38(typescript@5.9.3))
|
|
72
72
|
autoprefixer:
|
|
73
73
|
specifier: ^10.4.27
|
|
74
|
-
version: 10.5.
|
|
74
|
+
version: 10.5.2(postcss@8.5.15)
|
|
75
75
|
axios:
|
|
76
76
|
specifier: ^1.16.1
|
|
77
77
|
version: 1.18.1
|
|
@@ -89,7 +89,7 @@ importers:
|
|
|
89
89
|
version: 10.0.2
|
|
90
90
|
daisyui:
|
|
91
91
|
specifier: ^5.5.19
|
|
92
|
-
version: 5.
|
|
92
|
+
version: 5.6.13
|
|
93
93
|
defu:
|
|
94
94
|
specifier: ^6.1.7
|
|
95
95
|
version: 6.1.7
|
|
@@ -110,13 +110,13 @@ importers:
|
|
|
110
110
|
version: 8.5.15
|
|
111
111
|
quasar:
|
|
112
112
|
specifier: ^2.19.3
|
|
113
|
-
version: 2.
|
|
113
|
+
version: 2.21.0
|
|
114
114
|
table-identity:
|
|
115
115
|
specifier: ^1.1.7
|
|
116
116
|
version: 1.1.7
|
|
117
117
|
tailwindcss:
|
|
118
118
|
specifier: ^4.2.2
|
|
119
|
-
version: 4.3.
|
|
119
|
+
version: 4.3.2
|
|
120
120
|
typestyle:
|
|
121
121
|
specifier: ^2.4.0
|
|
122
122
|
version: 2.4.0
|
|
@@ -315,13 +315,13 @@ importers:
|
|
|
315
315
|
version: 3.1.28(vue@3.5.38(typescript@5.9.3))
|
|
316
316
|
'@cabloy/lint':
|
|
317
317
|
specifier: ^5.1.27
|
|
318
|
-
version: 5.1.30(@typescript-eslint/eslint-plugin@8.62.
|
|
318
|
+
version: 5.1.30(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.72.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)))
|
|
319
319
|
'@cabloy/openapi-typescript':
|
|
320
320
|
specifier: ^7.9.2
|
|
321
321
|
version: 7.9.2(typescript@5.9.3)
|
|
322
322
|
'@quasar/app-vite':
|
|
323
323
|
specifier: npm:@cabloy/quasar-app-vite@^2.5.10
|
|
324
|
-
version: '@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.
|
|
324
|
+
version: '@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(rolldown@1.1.3)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)'
|
|
325
325
|
'@types/luxon':
|
|
326
326
|
specifier: ^3.7.1
|
|
327
327
|
version: 3.7.2
|
|
@@ -342,10 +342,10 @@ importers:
|
|
|
342
342
|
version: 0.45.0
|
|
343
343
|
oxlint:
|
|
344
344
|
specifier: ^1.65.0
|
|
345
|
-
version: 1.
|
|
345
|
+
version: 1.72.0
|
|
346
346
|
quasar-app-extension-zova:
|
|
347
347
|
specifier: ^1.3.1
|
|
348
|
-
version: 1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.
|
|
348
|
+
version: 1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(rolldown@1.1.3)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)
|
|
349
349
|
sass:
|
|
350
350
|
specifier: ^1.101.0
|
|
351
351
|
version: 1.101.0
|
|
@@ -375,7 +375,7 @@ importers:
|
|
|
375
375
|
version: 3.0.18
|
|
376
376
|
vue-tsc:
|
|
377
377
|
specifier: ^3.3.1
|
|
378
|
-
version: 3.3.
|
|
378
|
+
version: 3.3.6(typescript@5.9.3)
|
|
379
379
|
zova-openapi:
|
|
380
380
|
specifier: ^1.1.17
|
|
381
381
|
version: link:packages-utils/zova-openapi
|
|
@@ -484,13 +484,13 @@ importers:
|
|
|
484
484
|
version: 1.1.3
|
|
485
485
|
rolldown-plugin-dts:
|
|
486
486
|
specifier: ^0.22.5
|
|
487
|
-
version: 0.22.5(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.1.3)(typescript@5.9.3)(vue-tsc@3.3.
|
|
487
|
+
version: 0.22.5(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.1.3)(typescript@5.9.3)(vue-tsc@3.3.6(typescript@5.9.3))
|
|
488
488
|
svgo:
|
|
489
489
|
specifier: ^3.2.0
|
|
490
490
|
version: 3.3.3
|
|
491
491
|
tsdown:
|
|
492
492
|
specifier: ^0.21.7
|
|
493
|
-
version: 0.21.10(@typescript/native-preview@7.0.0-dev.20260624.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.
|
|
493
|
+
version: 0.21.10(@typescript/native-preview@7.0.0-dev.20260624.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.6(typescript@5.9.3))
|
|
494
494
|
typescript:
|
|
495
495
|
specifier: ^5.9.3
|
|
496
496
|
version: 5.9.3
|
|
@@ -2123,11 +2123,11 @@ packages:
|
|
|
2123
2123
|
'@cabloy/zod@4.3.8':
|
|
2124
2124
|
resolution: {integrity: sha512-3ik9c1F0VJzQy+/YSnY8DhtDcShgDBmdx+B8j+gFcF+qa6xNK7vyMZ+EYRO2GT7BCucQkTEU/aZBmfEJZcg1Kg==}
|
|
2125
2125
|
|
|
2126
|
-
'@cacheable/memory@2.0
|
|
2127
|
-
resolution: {integrity: sha512-
|
|
2126
|
+
'@cacheable/memory@2.2.0':
|
|
2127
|
+
resolution: {integrity: sha512-CTLKqLItRCEixEAewD3/j9DB3/o96gpTPD4eJ1v+DGOlxZRZncRQkGYqqnAGCscYd6RNeXfGeiuCphsPtqyIfQ==}
|
|
2128
2128
|
|
|
2129
|
-
'@cacheable/utils@2.
|
|
2130
|
-
resolution: {integrity: sha512-
|
|
2129
|
+
'@cacheable/utils@2.5.0':
|
|
2130
|
+
resolution: {integrity: sha512-buipgOVDkkPXNR5+xBpDw7Zk2n1EvU7qBJCNUcL7rhQ//kfpOXPAvQ511Os0vpLYJ1pZnvudNytkQt2hst3wqA==}
|
|
2131
2131
|
|
|
2132
2132
|
'@colors/colors@1.5.0':
|
|
2133
2133
|
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
|
|
@@ -3362,124 +3362,124 @@ packages:
|
|
|
3362
3362
|
cpu: [x64]
|
|
3363
3363
|
os: [win32]
|
|
3364
3364
|
|
|
3365
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
3366
|
-
resolution: {integrity: sha512-
|
|
3365
|
+
'@oxlint/binding-android-arm-eabi@1.72.0':
|
|
3366
|
+
resolution: {integrity: sha512-zhCmvn+1Mj3UchAc/90i99S0t7jJUsHmFVSPg4UWrjO8b8eaSGwscgO6QAUtvHBstkjQwBttQNswEnAF1mIQdA==}
|
|
3367
3367
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3368
3368
|
cpu: [arm]
|
|
3369
3369
|
os: [android]
|
|
3370
3370
|
|
|
3371
|
-
'@oxlint/binding-android-arm64@1.
|
|
3372
|
-
resolution: {integrity: sha512-
|
|
3371
|
+
'@oxlint/binding-android-arm64@1.72.0':
|
|
3372
|
+
resolution: {integrity: sha512-mtH+aY/ozv1eZoCUC2owjFAtyNBKHpJHygKeEu9zXXnQGW1Q2/qOpvx+I+Lf23+TvTz66F4iiXUbl2cGvoLPCQ==}
|
|
3373
3373
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3374
3374
|
cpu: [arm64]
|
|
3375
3375
|
os: [android]
|
|
3376
3376
|
|
|
3377
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
3378
|
-
resolution: {integrity: sha512-
|
|
3377
|
+
'@oxlint/binding-darwin-arm64@1.72.0':
|
|
3378
|
+
resolution: {integrity: sha512-EvnajNPDtfknB3ZieeOOyDTwJn9QXDiwfnF4ZDQqART6RG6hjY4WigQcZdGoK2dkB3e1vrmEzN9aYbQCUkh/gQ==}
|
|
3379
3379
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3380
3380
|
cpu: [arm64]
|
|
3381
3381
|
os: [darwin]
|
|
3382
3382
|
|
|
3383
|
-
'@oxlint/binding-darwin-x64@1.
|
|
3384
|
-
resolution: {integrity: sha512-
|
|
3383
|
+
'@oxlint/binding-darwin-x64@1.72.0':
|
|
3384
|
+
resolution: {integrity: sha512-ZkCdEa/G80A7vEHfeCDz/+L3m33DE73v32mDKhgOIgz8Uwf0DFcK7+uu6qC+7LEhmz5fpOe1osWKyjSNMydFIQ==}
|
|
3385
3385
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3386
3386
|
cpu: [x64]
|
|
3387
3387
|
os: [darwin]
|
|
3388
3388
|
|
|
3389
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
3390
|
-
resolution: {integrity: sha512-
|
|
3389
|
+
'@oxlint/binding-freebsd-x64@1.72.0':
|
|
3390
|
+
resolution: {integrity: sha512-NroXv2vh+sxVY1uya/rM5pjhx1hm8BzlYpx9q67QP0Xhw5MH2bf5GJylpvLEC+781p1Xli/317EoV9AlGwViag==}
|
|
3391
3391
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3392
3392
|
cpu: [x64]
|
|
3393
3393
|
os: [freebsd]
|
|
3394
3394
|
|
|
3395
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
3396
|
-
resolution: {integrity: sha512-
|
|
3395
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.72.0':
|
|
3396
|
+
resolution: {integrity: sha512-0NDywYgfj279Ou/BcQuCYSj7NJwBfmWn5qc5uGO/Ny7fUWmXyIpvawqX/8acQlWG6IXelJsJhj+JAy6sjsKj0A==}
|
|
3397
3397
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3398
3398
|
cpu: [arm]
|
|
3399
3399
|
os: [linux]
|
|
3400
3400
|
|
|
3401
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
3402
|
-
resolution: {integrity: sha512-
|
|
3401
|
+
'@oxlint/binding-linux-arm-musleabihf@1.72.0':
|
|
3402
|
+
resolution: {integrity: sha512-4vpXB06h65Ezsy4hRyrGjGrfa1SkVPii09yaajiYhmVpgsFiLD+KNxIx/BNAY+XiO+i1yqp9HHdwqM8VTqa5XQ==}
|
|
3403
3403
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3404
3404
|
cpu: [arm]
|
|
3405
3405
|
os: [linux]
|
|
3406
3406
|
|
|
3407
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
3408
|
-
resolution: {integrity: sha512-
|
|
3407
|
+
'@oxlint/binding-linux-arm64-gnu@1.72.0':
|
|
3408
|
+
resolution: {integrity: sha512-immaN4g2ZGFiOkKrvRX9LvzZdd2GkQM5wR+UyzYyUuyhUTXGQ4HKUJH18xp4G8OfhCVaVAJfKZxwE1r8+4hhaQ==}
|
|
3409
3409
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3410
3410
|
cpu: [arm64]
|
|
3411
3411
|
os: [linux]
|
|
3412
3412
|
libc: [glibc]
|
|
3413
3413
|
|
|
3414
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
3415
|
-
resolution: {integrity: sha512-
|
|
3414
|
+
'@oxlint/binding-linux-arm64-musl@1.72.0':
|
|
3415
|
+
resolution: {integrity: sha512-JGHS9Mnr7iWyyLDxgCv1MhzVpAckgptg00F2gnxt/GD7lQ2SW1BRcxHqhSTaSdDpjWRrBkBxMMh4+Hn3aVtExg==}
|
|
3416
3416
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3417
3417
|
cpu: [arm64]
|
|
3418
3418
|
os: [linux]
|
|
3419
3419
|
libc: [musl]
|
|
3420
3420
|
|
|
3421
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
3422
|
-
resolution: {integrity: sha512-
|
|
3421
|
+
'@oxlint/binding-linux-ppc64-gnu@1.72.0':
|
|
3422
|
+
resolution: {integrity: sha512-AOYgBZqxNshrg83P9v0RYv+m8s10Cqkj4/PxXFDhcS3k7FqsIG5+CxErshZCIN7G8iy4Y+VGfAsuEdar8AcbBg==}
|
|
3423
3423
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3424
3424
|
cpu: [ppc64]
|
|
3425
3425
|
os: [linux]
|
|
3426
3426
|
libc: [glibc]
|
|
3427
3427
|
|
|
3428
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
3429
|
-
resolution: {integrity: sha512-
|
|
3428
|
+
'@oxlint/binding-linux-riscv64-gnu@1.72.0':
|
|
3429
|
+
resolution: {integrity: sha512-QMybPS5ij3/vrKG67mqzHwW++91sYxK/PPUVi6SBtNCEzW4niS52fVBdXbQ6nou0wWbUPEpx8Sl/ZjtgE3clXA==}
|
|
3430
3430
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3431
3431
|
cpu: [riscv64]
|
|
3432
3432
|
os: [linux]
|
|
3433
3433
|
libc: [glibc]
|
|
3434
3434
|
|
|
3435
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
3436
|
-
resolution: {integrity: sha512-
|
|
3435
|
+
'@oxlint/binding-linux-riscv64-musl@1.72.0':
|
|
3436
|
+
resolution: {integrity: sha512-gOc3W7JV0PXRpIL7stUlLe3Wa9Gp0Kdlup87IT3gHDvPKck2xNgMIl/Gs2lldYY2lyXZDC4rWi3hmoLUobkgbQ==}
|
|
3437
3437
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3438
3438
|
cpu: [riscv64]
|
|
3439
3439
|
os: [linux]
|
|
3440
3440
|
libc: [musl]
|
|
3441
3441
|
|
|
3442
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
3443
|
-
resolution: {integrity: sha512-
|
|
3442
|
+
'@oxlint/binding-linux-s390x-gnu@1.72.0':
|
|
3443
|
+
resolution: {integrity: sha512-rpGxph+FjjHcYI5q6uxB3Az+tnfmEnDbSA8+PK9ZE/VzyUAkvBOMeuY7ZQMhu5mpZH7YQDsTdW6Cx4kV/msc6w==}
|
|
3444
3444
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3445
3445
|
cpu: [s390x]
|
|
3446
3446
|
os: [linux]
|
|
3447
3447
|
libc: [glibc]
|
|
3448
3448
|
|
|
3449
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
3450
|
-
resolution: {integrity: sha512-
|
|
3449
|
+
'@oxlint/binding-linux-x64-gnu@1.72.0':
|
|
3450
|
+
resolution: {integrity: sha512-WND+uhf/Ko13SLqQMWQUgsZuLvYYEvL0ZKgg0tgGYfLqxG7l8Ju123fHDMJyYSDl5E3bUbpFUuii/OvMreFQzw==}
|
|
3451
3451
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3452
3452
|
cpu: [x64]
|
|
3453
3453
|
os: [linux]
|
|
3454
3454
|
libc: [glibc]
|
|
3455
3455
|
|
|
3456
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
3457
|
-
resolution: {integrity: sha512-
|
|
3456
|
+
'@oxlint/binding-linux-x64-musl@1.72.0':
|
|
3457
|
+
resolution: {integrity: sha512-SrpbrUL70nG9vh6zP4/oKHWgLuHquwsr7MW9XOn0olBVgh10Uqr8qscKhQoBGEn6olK/IUpn5GSKcdQ5AjUhGA==}
|
|
3458
3458
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3459
3459
|
cpu: [x64]
|
|
3460
3460
|
os: [linux]
|
|
3461
3461
|
libc: [musl]
|
|
3462
3462
|
|
|
3463
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
3464
|
-
resolution: {integrity: sha512-
|
|
3463
|
+
'@oxlint/binding-openharmony-arm64@1.72.0':
|
|
3464
|
+
resolution: {integrity: sha512-qkrsEn6NmgFKr7U/QnezQMb+q/vzAy0Dd9Y95gQGQTyjzDLN+HRZMuM5u70iyH4nBLCfKBzhjMsYCehKay2jyg==}
|
|
3465
3465
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3466
3466
|
cpu: [arm64]
|
|
3467
3467
|
os: [openharmony]
|
|
3468
3468
|
|
|
3469
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
3470
|
-
resolution: {integrity: sha512-
|
|
3469
|
+
'@oxlint/binding-win32-arm64-msvc@1.72.0':
|
|
3470
|
+
resolution: {integrity: sha512-LWR6ZlFZph+KPjXv8opgZsXRDCdrdQe8VL8Cg9zxCoBS73h6znzZpydVgmdnwj8mB9AuSM5jxEgDJDpQkjboeg==}
|
|
3471
3471
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3472
3472
|
cpu: [arm64]
|
|
3473
3473
|
os: [win32]
|
|
3474
3474
|
|
|
3475
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
3476
|
-
resolution: {integrity: sha512-
|
|
3475
|
+
'@oxlint/binding-win32-ia32-msvc@1.72.0':
|
|
3476
|
+
resolution: {integrity: sha512-yt6HEh7IsHvtjRWtmeZRX134eaXKHq5Gnqlf1xBJdJl1JtdoRUEJw3nAxpZoUDS860cX/foKbztO441anVBtVQ==}
|
|
3477
3477
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3478
3478
|
cpu: [ia32]
|
|
3479
3479
|
os: [win32]
|
|
3480
3480
|
|
|
3481
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
3482
|
-
resolution: {integrity: sha512-
|
|
3481
|
+
'@oxlint/binding-win32-x64-msvc@1.72.0':
|
|
3482
|
+
resolution: {integrity: sha512-b2eKFD2hX7tIwmo/cyH6TDq8vzWRZ2qNHrzoGntUTmq0h3zQh/uX3eTSHCwI8OB/ADQfJCRelLItK8BsxuucDA==}
|
|
3483
3483
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
3484
3484
|
cpu: [x64]
|
|
3485
3485
|
os: [win32]
|
|
@@ -3811,69 +3811,69 @@ packages:
|
|
|
3811
3811
|
peerDependencies:
|
|
3812
3812
|
eslint: ^9.0.0 || ^10.0.0
|
|
3813
3813
|
|
|
3814
|
-
'@tailwindcss/node@4.3.
|
|
3815
|
-
resolution: {integrity: sha512-
|
|
3814
|
+
'@tailwindcss/node@4.3.2':
|
|
3815
|
+
resolution: {integrity: sha512-yWP/sqEcBLaD8JuA6zNwxoYKr75qxTioYwlRwekj5Jr/I5GXnoJfjetH/psLUIv74cYTH2lBUEzBkinthoYcBg==}
|
|
3816
3816
|
|
|
3817
|
-
'@tailwindcss/oxide-android-arm64@4.3.
|
|
3818
|
-
resolution: {integrity: sha512-
|
|
3817
|
+
'@tailwindcss/oxide-android-arm64@4.3.2':
|
|
3818
|
+
resolution: {integrity: sha512-WHxqIuHpvZ5VtdX6GTl1Ik/Vp2YuN42Et+0CdeaVd/frQ9jAvGmvR8vLT+jk3e8/Q3x8kECB9+R17pgpp2BulA==}
|
|
3819
3819
|
engines: {node: '>= 20'}
|
|
3820
3820
|
cpu: [arm64]
|
|
3821
3821
|
os: [android]
|
|
3822
3822
|
|
|
3823
|
-
'@tailwindcss/oxide-darwin-arm64@4.3.
|
|
3824
|
-
resolution: {integrity: sha512-
|
|
3823
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.2':
|
|
3824
|
+
resolution: {integrity: sha512-GZypeUY/IDJW3877KeM+O67vbXr3MBnbtEL4aYhNErv/JWZhye2vGSWWG9tB6iiqR2MqRNkY8IOUy4NdSZV26w==}
|
|
3825
3825
|
engines: {node: '>= 20'}
|
|
3826
3826
|
cpu: [arm64]
|
|
3827
3827
|
os: [darwin]
|
|
3828
3828
|
|
|
3829
|
-
'@tailwindcss/oxide-darwin-x64@4.3.
|
|
3830
|
-
resolution: {integrity: sha512-
|
|
3829
|
+
'@tailwindcss/oxide-darwin-x64@4.3.2':
|
|
3830
|
+
resolution: {integrity: sha512-UIIzmefR6KO1sDU7MzRqAxC8iBpft/VhkGjTjnhoS6k7Z3rQ9wEgA1ODSiyH/tcSYssulNm4Ci3hOeK1jH7ccQ==}
|
|
3831
3831
|
engines: {node: '>= 20'}
|
|
3832
3832
|
cpu: [x64]
|
|
3833
3833
|
os: [darwin]
|
|
3834
3834
|
|
|
3835
|
-
'@tailwindcss/oxide-freebsd-x64@4.3.
|
|
3836
|
-
resolution: {integrity: sha512-
|
|
3835
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.2':
|
|
3836
|
+
resolution: {integrity: sha512-GN+uAmcI6DNspnCDwtOAZrTz6oukJnp337qZvxqCGLd3BHBzJpO0ZbTLRvJNdztOeAmTzewewGIMPb0tk2R4WA==}
|
|
3837
3837
|
engines: {node: '>= 20'}
|
|
3838
3838
|
cpu: [x64]
|
|
3839
3839
|
os: [freebsd]
|
|
3840
3840
|
|
|
3841
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.
|
|
3842
|
-
resolution: {integrity: sha512
|
|
3841
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.2':
|
|
3842
|
+
resolution: {integrity: sha512-4ABn7qSbdHRwTiDiuWNegCyb5+2FJ4vKIKc3DmKrvAFw7MU1Lm11dIkTPwUaFdTzc7IsOpDbqBrlh0x6y36U/w==}
|
|
3843
3843
|
engines: {node: '>= 20'}
|
|
3844
3844
|
cpu: [arm]
|
|
3845
3845
|
os: [linux]
|
|
3846
3846
|
|
|
3847
|
-
'@tailwindcss/oxide-linux-arm64-gnu@4.3.
|
|
3848
|
-
resolution: {integrity: sha512-
|
|
3847
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.2':
|
|
3848
|
+
resolution: {integrity: sha512-wDgEIGwoM8w8pufh9LVt1PahDgNdKXrLC2qfAnV3vAmococ9RWbxeAw4pxPttd/TsJfwjyLf90Dg1y9y8I6Emw==}
|
|
3849
3849
|
engines: {node: '>= 20'}
|
|
3850
3850
|
cpu: [arm64]
|
|
3851
3851
|
os: [linux]
|
|
3852
3852
|
libc: [glibc]
|
|
3853
3853
|
|
|
3854
|
-
'@tailwindcss/oxide-linux-arm64-musl@4.3.
|
|
3855
|
-
resolution: {integrity: sha512-
|
|
3854
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.2':
|
|
3855
|
+
resolution: {integrity: sha512-J5Nuk0uZQIiMTJj3LEx4sAA9tMFUoXQZFv1J6An+QGYe53HKRJuFDi0rpq/tuouCZeAbOBY3kQ6g8qeD4TUjtA==}
|
|
3856
3856
|
engines: {node: '>= 20'}
|
|
3857
3857
|
cpu: [arm64]
|
|
3858
3858
|
os: [linux]
|
|
3859
3859
|
libc: [musl]
|
|
3860
3860
|
|
|
3861
|
-
'@tailwindcss/oxide-linux-x64-gnu@4.3.
|
|
3862
|
-
resolution: {integrity: sha512-
|
|
3861
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.2':
|
|
3862
|
+
resolution: {integrity: sha512-kqCZpSKOBEJO4mz7OqWoofBZeXTAwaVGPj0ErAj7CojmhKpWVWVOnrt9dE8odoIraZq4oj3ausM37kXi+Tow8w==}
|
|
3863
3863
|
engines: {node: '>= 20'}
|
|
3864
3864
|
cpu: [x64]
|
|
3865
3865
|
os: [linux]
|
|
3866
3866
|
libc: [glibc]
|
|
3867
3867
|
|
|
3868
|
-
'@tailwindcss/oxide-linux-x64-musl@4.3.
|
|
3869
|
-
resolution: {integrity: sha512-
|
|
3868
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.2':
|
|
3869
|
+
resolution: {integrity: sha512-cixpqbh2toJDmkuCRI68nXA8ZxNmdK9Y+9v5h3MC3ZQKy/0BO8AWzlkWyRM7JAFSGBlfig4YVTPsK6MVgqz1uw==}
|
|
3870
3870
|
engines: {node: '>= 20'}
|
|
3871
3871
|
cpu: [x64]
|
|
3872
3872
|
os: [linux]
|
|
3873
3873
|
libc: [musl]
|
|
3874
3874
|
|
|
3875
|
-
'@tailwindcss/oxide-wasm32-wasi@4.3.
|
|
3876
|
-
resolution: {integrity: sha512-
|
|
3875
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.2':
|
|
3876
|
+
resolution: {integrity: sha512-4ec2Z/LOmRsAgU23CS4xeJfcJlmRg94A/XrbGRCF1gyU/zdDfRLYDVsS+ynSZCmGNxQ1jQriQOKMQeQxBA3Isw==}
|
|
3877
3877
|
engines: {node: '>=14.0.0'}
|
|
3878
3878
|
cpu: [wasm32]
|
|
3879
3879
|
bundledDependencies:
|
|
@@ -3884,24 +3884,24 @@ packages:
|
|
|
3884
3884
|
- '@emnapi/wasi-threads'
|
|
3885
3885
|
- tslib
|
|
3886
3886
|
|
|
3887
|
-
'@tailwindcss/oxide-win32-arm64-msvc@4.3.
|
|
3888
|
-
resolution: {integrity: sha512-
|
|
3887
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.2':
|
|
3888
|
+
resolution: {integrity: sha512-Zyr/M0+XcYZu3bZrUytc7TXvrk0ftWfl8gN2MwekNDzhqhKRUucMPSeOzM0o0wH5AWOU49BsKRrfKxI2atCPMQ==}
|
|
3889
3889
|
engines: {node: '>= 20'}
|
|
3890
3890
|
cpu: [arm64]
|
|
3891
3891
|
os: [win32]
|
|
3892
3892
|
|
|
3893
|
-
'@tailwindcss/oxide-win32-x64-msvc@4.3.
|
|
3894
|
-
resolution: {integrity: sha512-
|
|
3893
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.2':
|
|
3894
|
+
resolution: {integrity: sha512-QI9BO7KlNZsp2GuO0jwAAj5jCDABOKXRkCk2XuKTSaNEFSdfzqswYVTtCHBNKHLsqyjFyFkqlDiwkNbTYSssMQ==}
|
|
3895
3895
|
engines: {node: '>= 20'}
|
|
3896
3896
|
cpu: [x64]
|
|
3897
3897
|
os: [win32]
|
|
3898
3898
|
|
|
3899
|
-
'@tailwindcss/oxide@4.3.
|
|
3900
|
-
resolution: {integrity: sha512-
|
|
3899
|
+
'@tailwindcss/oxide@4.3.2':
|
|
3900
|
+
resolution: {integrity: sha512-z8ZgnzX8gdNoWLBLqBPoh/sjnxkwvf9ZuWjnO0l0yIzbLa5/9S+eC5QxGZKRobVHIC3/1BoMWjHblqWjcgFgag==}
|
|
3901
3901
|
engines: {node: '>= 20'}
|
|
3902
3902
|
|
|
3903
|
-
'@tailwindcss/postcss@4.3.
|
|
3904
|
-
resolution: {integrity: sha512-
|
|
3903
|
+
'@tailwindcss/postcss@4.3.2':
|
|
3904
|
+
resolution: {integrity: sha512-rjVWYCa7Ngbi5AarT6k8TkxUG3Wl1QKzHdIZVsjZSzf36Jmo2IKZt/NHRAwly8oDkbBOH0YTu+CHuf9jPxMc+g==}
|
|
3905
3905
|
|
|
3906
3906
|
'@tailwindcss/typography@0.5.20':
|
|
3907
3907
|
resolution: {integrity: sha512-hwbzQuNUfcPvbegQFatVPl/MY/tcM9KLl963hQ5laJKPh81TEZ1+dNG9PirGvcaDBkp+BCshExAyKVPW91dozw==}
|
|
@@ -4134,70 +4134,70 @@ packages:
|
|
|
4134
4134
|
'@types/unist@3.0.3':
|
|
4135
4135
|
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
4136
4136
|
|
|
4137
|
-
'@typescript-eslint/eslint-plugin@8.62.
|
|
4138
|
-
resolution: {integrity: sha512-
|
|
4137
|
+
'@typescript-eslint/eslint-plugin@8.62.1':
|
|
4138
|
+
resolution: {integrity: sha512-4EQM77WgVNxj7OkL/5b/D/xZsw00G577+UriYTC7JF5opcF3T2AuoeY7ueLaZgSVjSgCS6yOAJB5bRGLPSJUzA==}
|
|
4139
4139
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4140
4140
|
peerDependencies:
|
|
4141
|
-
'@typescript-eslint/parser': ^8.62.
|
|
4141
|
+
'@typescript-eslint/parser': ^8.62.1
|
|
4142
4142
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4143
4143
|
typescript: '>=4.8.4 <6.1.0'
|
|
4144
4144
|
|
|
4145
|
-
'@typescript-eslint/parser@8.62.
|
|
4146
|
-
resolution: {integrity: sha512-
|
|
4145
|
+
'@typescript-eslint/parser@8.62.1':
|
|
4146
|
+
resolution: {integrity: sha512-sPhE4iHuJDSvoAiec+Ro8JyXw8f0ql13HFR82P99nCm9GwTEKG0KYLvDe6REk8BCXuit6vJAv/Yxg5ABaNS2rA==}
|
|
4147
4147
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4148
4148
|
peerDependencies:
|
|
4149
4149
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4150
4150
|
typescript: '>=4.8.4 <6.1.0'
|
|
4151
4151
|
|
|
4152
|
-
'@typescript-eslint/project-service@8.62.
|
|
4153
|
-
resolution: {integrity: sha512-
|
|
4152
|
+
'@typescript-eslint/project-service@8.62.1':
|
|
4153
|
+
resolution: {integrity: sha512-yQ3RgY5RkSBpsNS1Bx/JQEcA24FOSdfGktoyprAr5u18390UQdtVcfnEv4nIrIshNnavlVyZBKxQwT1fIAE6cg==}
|
|
4154
4154
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4155
4155
|
peerDependencies:
|
|
4156
4156
|
typescript: '>=4.8.4 <6.1.0'
|
|
4157
4157
|
|
|
4158
|
-
'@typescript-eslint/rule-tester@8.62.
|
|
4159
|
-
resolution: {integrity: sha512-
|
|
4158
|
+
'@typescript-eslint/rule-tester@8.62.1':
|
|
4159
|
+
resolution: {integrity: sha512-qq2Io5qOVAyKsXfcgpqc5qIef++7bFMit3R8gNLNYlxrivwWtZH5pfIuU0nc69mUHAxowv4sUGfbpwykfBGHYQ==}
|
|
4160
4160
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4161
4161
|
peerDependencies:
|
|
4162
4162
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4163
4163
|
typescript: '>=4.8.4 <6.1.0'
|
|
4164
4164
|
|
|
4165
|
-
'@typescript-eslint/scope-manager@8.62.
|
|
4166
|
-
resolution: {integrity: sha512-
|
|
4165
|
+
'@typescript-eslint/scope-manager@8.62.1':
|
|
4166
|
+
resolution: {integrity: sha512-r4d249KbQ1SFdpeStvob8Ih6aPPIzfqllPVOtvhve6ZcpuVcYo5/7zUWckKpHE7StASX4kTKZTLf0WQm/wPkcg==}
|
|
4167
4167
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4168
4168
|
|
|
4169
|
-
'@typescript-eslint/tsconfig-utils@8.62.
|
|
4170
|
-
resolution: {integrity: sha512-
|
|
4169
|
+
'@typescript-eslint/tsconfig-utils@8.62.1':
|
|
4170
|
+
resolution: {integrity: sha512-xadytJqX9vJVQ2fdQjkcIVigwaOJNWkpjdLt6cEQ+xPnrI1fkp+/jZE/I97k9KUjqtpd25i0HeyZf3T6dutv2g==}
|
|
4171
4171
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4172
4172
|
peerDependencies:
|
|
4173
4173
|
typescript: '>=4.8.4 <6.1.0'
|
|
4174
4174
|
|
|
4175
|
-
'@typescript-eslint/type-utils@8.62.
|
|
4176
|
-
resolution: {integrity: sha512
|
|
4175
|
+
'@typescript-eslint/type-utils@8.62.1':
|
|
4176
|
+
resolution: {integrity: sha512-aXM5xlqXiTxPibXB93cLAURfT3rlizf7uMXISCXy66Isr/9hISJx3yDsKl0L7lKa51b8JpFuNKby0/O0pEm9jg==}
|
|
4177
4177
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4178
4178
|
peerDependencies:
|
|
4179
4179
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4180
4180
|
typescript: '>=4.8.4 <6.1.0'
|
|
4181
4181
|
|
|
4182
|
-
'@typescript-eslint/types@8.62.
|
|
4183
|
-
resolution: {integrity: sha512-
|
|
4182
|
+
'@typescript-eslint/types@8.62.1':
|
|
4183
|
+
resolution: {integrity: sha512-ooCzJFaf+Hg+uG6fA3NRFGuFjlfNlDhBthbv4ZPU/0elCAFUfnyXUvf/WOpHz/jYwSmvU2GkR2LtyUfy1AxZ1Q==}
|
|
4184
4184
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4185
4185
|
|
|
4186
|
-
'@typescript-eslint/typescript-estree@8.62.
|
|
4187
|
-
resolution: {integrity: sha512
|
|
4186
|
+
'@typescript-eslint/typescript-estree@8.62.1':
|
|
4187
|
+
resolution: {integrity: sha512-xMcW9oP9u7fAMXYs9A65CVmtLQe2r//oXINHfi8HV+oiqhih17sbLdhXr4540YWlgpDKQdY854OL5ZrdCiQsAA==}
|
|
4188
4188
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4189
4189
|
peerDependencies:
|
|
4190
4190
|
typescript: '>=4.8.4 <6.1.0'
|
|
4191
4191
|
|
|
4192
|
-
'@typescript-eslint/utils@8.62.
|
|
4193
|
-
resolution: {integrity: sha512-
|
|
4192
|
+
'@typescript-eslint/utils@8.62.1':
|
|
4193
|
+
resolution: {integrity: sha512-sHtbPfuKNZCG+ih8SyjjucqRntSVmp8XgL5u6o9mAhiSn8ds5o/M/XdM0abweme2Tln3szOstOrZ9OXitvPh0g==}
|
|
4194
4194
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4195
4195
|
peerDependencies:
|
|
4196
4196
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
4197
4197
|
typescript: '>=4.8.4 <6.1.0'
|
|
4198
4198
|
|
|
4199
|
-
'@typescript-eslint/visitor-keys@8.62.
|
|
4200
|
-
resolution: {integrity: sha512-
|
|
4199
|
+
'@typescript-eslint/visitor-keys@8.62.1':
|
|
4200
|
+
resolution: {integrity: sha512-4g3BLxfdTMy8iZG0MaBkadnlRrCJ74cQiFbyEVMrkwIoqdyaXXQM22cotDvrl4x28wgIZ9rEJRoM+mmhSJpJ1g==}
|
|
4201
4201
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
4202
4202
|
|
|
4203
4203
|
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260624.1':
|
|
@@ -4296,8 +4296,8 @@ packages:
|
|
|
4296
4296
|
'@vue/devtools-api@6.6.4':
|
|
4297
4297
|
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
|
|
4298
4298
|
|
|
4299
|
-
'@vue/language-core@3.3.
|
|
4300
|
-
resolution: {integrity: sha512-
|
|
4299
|
+
'@vue/language-core@3.3.6':
|
|
4300
|
+
resolution: {integrity: sha512-LgBMZAy2sR3cQWknpyaxnI6yBkqDfLBPkbdhwRhQCvzfNJRQXPilgQIrdI/v4ytJ0sAq9bWhaPsjqBqneomJ3Q==}
|
|
4301
4301
|
|
|
4302
4302
|
'@vue/shared@3.5.13':
|
|
4303
4303
|
resolution: {integrity: sha512-/hnE/qP5ZoGpol0a5mDi45bOd7t3tjYJBjsgCsivow7D48cJeV5l05RD82lPqi7gRiphZM37rnhW1l6ZoCNNnQ==}
|
|
@@ -4428,8 +4428,8 @@ packages:
|
|
|
4428
4428
|
asynckit@0.4.0:
|
|
4429
4429
|
resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
|
|
4430
4430
|
|
|
4431
|
-
autoprefixer@10.5.
|
|
4432
|
-
resolution: {integrity: sha512-
|
|
4431
|
+
autoprefixer@10.5.2:
|
|
4432
|
+
resolution: {integrity: sha512-rD5t5DwOjJdmSORcTq64j8MawTC+tbQ+HHqjR4NDumamy/ambn1UJrlKL+KdwujWxMkFjPM3pPHOEA9tl4767Q==}
|
|
4433
4433
|
engines: {node: ^10 || ^12 || >=14}
|
|
4434
4434
|
hasBin: true
|
|
4435
4435
|
peerDependencies:
|
|
@@ -4473,8 +4473,8 @@ packages:
|
|
|
4473
4473
|
bare-abort-controller:
|
|
4474
4474
|
optional: true
|
|
4475
4475
|
|
|
4476
|
-
bare-fs@4.7.
|
|
4477
|
-
resolution: {integrity: sha512-
|
|
4476
|
+
bare-fs@4.7.3:
|
|
4477
|
+
resolution: {integrity: sha512-xRgplks8SvcKkdlv2M6Z2LZmRsmqd+x0nXXGXeMEjwdibj1HSDrlnqBRLeYdMvsgCox7Bq0e+DHwfczOfsn6IA==}
|
|
4478
4478
|
engines: {bare: '>=1.16.0'}
|
|
4479
4479
|
peerDependencies:
|
|
4480
4480
|
bare-buffer: '*'
|
|
@@ -4482,8 +4482,8 @@ packages:
|
|
|
4482
4482
|
bare-buffer:
|
|
4483
4483
|
optional: true
|
|
4484
4484
|
|
|
4485
|
-
bare-os@3.9.
|
|
4486
|
-
resolution: {integrity: sha512-
|
|
4485
|
+
bare-os@3.9.3:
|
|
4486
|
+
resolution: {integrity: sha512-fF4Q7QsyKVF5Rj0qvI8BgUNjqzC2JvQlpTaPLjVJVxYVUX5Zr9un+y3w1HmA4nNKdFmRBT8z/WmrjvXzXVerKQ==}
|
|
4487
4487
|
engines: {bare: '>=1.14.0'}
|
|
4488
4488
|
|
|
4489
4489
|
bare-path@3.0.1:
|
|
@@ -4597,8 +4597,8 @@ packages:
|
|
|
4597
4597
|
resolution: {integrity: sha512-tixWYgm5ZoOD+3g6UTea91eow5z6AAHaho3g0V9CNSNb45gM8SmflpAc+GRd1InC4AqN/07Unrgp56Y94N9hJQ==}
|
|
4598
4598
|
engines: {node: '>=20.19.0'}
|
|
4599
4599
|
|
|
4600
|
-
cacheable@2.
|
|
4601
|
-
resolution: {integrity: sha512-
|
|
4600
|
+
cacheable@2.5.0:
|
|
4601
|
+
resolution: {integrity: sha512-60cyAOytib/OzBw1JNSoSV/boK1AtHryDIjvVBk7XbN4ugfkM3+Sry7fEjNgPMGgOjuaZPAp8ruZ0Cxafwyq9g==}
|
|
4602
4602
|
|
|
4603
4603
|
call-bind-apply-helpers@1.0.2:
|
|
4604
4604
|
resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
|
|
@@ -4880,8 +4880,8 @@ packages:
|
|
|
4880
4880
|
csx@10.0.2:
|
|
4881
4881
|
resolution: {integrity: sha512-u4Ay+Q7yXQvMtaevcxO9AQ24AP9L4Poym9bLt1gUI1VMJ9czKcfmog+X4j4wSfVHaD0GsXcxpYK7FgH637d5UQ==}
|
|
4882
4882
|
|
|
4883
|
-
daisyui@5.
|
|
4884
|
-
resolution: {integrity: sha512-
|
|
4883
|
+
daisyui@5.6.13:
|
|
4884
|
+
resolution: {integrity: sha512-0UHyNG3TzF7pDIbPcWyLKQfgtGhJcIq2x26jwsDKp7ZhL0GwaqIMZ12+TWfp8p+mE4NNc29SJk63hEXTz3MQkg==}
|
|
4885
4885
|
|
|
4886
4886
|
dargs@7.0.0:
|
|
4887
4887
|
resolution: {integrity: sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==}
|
|
@@ -5207,8 +5207,8 @@ packages:
|
|
|
5207
5207
|
peerDependencies:
|
|
5208
5208
|
eslint: ^9.0.0 || ^10.0.0
|
|
5209
5209
|
|
|
5210
|
-
eslint-plugin-regexp@3.1.
|
|
5211
|
-
resolution: {integrity: sha512-
|
|
5210
|
+
eslint-plugin-regexp@3.1.1:
|
|
5211
|
+
resolution: {integrity: sha512-MxR5nqoQCtVWmJwia0D2+NlXX1xzdpkslsVOZLEYQ4PQWEaL65PCZXURxaBc3lPnkNFpNxzMIRmYVxdl8giXRA==}
|
|
5212
5212
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5213
5213
|
peerDependencies:
|
|
5214
5214
|
eslint: '>=9.38.0'
|
|
@@ -5264,8 +5264,8 @@ packages:
|
|
|
5264
5264
|
resolution: {integrity: sha512-tD40eHxA35h0PEIZNeIjkHoDR4YjjJp34biM0mDvplBe//mB+IHCqHDGV7pxF+7MklTvighcCPPZC7ynWyjdTA==}
|
|
5265
5265
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5266
5266
|
|
|
5267
|
-
eslint@10.
|
|
5268
|
-
resolution: {integrity: sha512-
|
|
5267
|
+
eslint@10.6.0:
|
|
5268
|
+
resolution: {integrity: sha512-6lVbcqSodALYo+4ELD0heG6lFiFxnLMuLkiMi2qV8LMp54N8tE8FT1GMH+ev4Ti00nFjNze2+Su6DsV5OQW3Dg==}
|
|
5269
5269
|
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
|
5270
5270
|
hasBin: true
|
|
5271
5271
|
peerDependencies:
|
|
@@ -5370,8 +5370,8 @@ packages:
|
|
|
5370
5370
|
fast-string-width@3.0.2:
|
|
5371
5371
|
resolution: {integrity: sha512-gX8LrtNEI5hq8DVUfRQMbr5lpaS4nMIWV+7XEbXk2b8kiQIizgnlr12B4dA3ZEx3308ze0O4Q1R+cHts8kyUJg==}
|
|
5372
5372
|
|
|
5373
|
-
fast-uri@3.1.
|
|
5374
|
-
resolution: {integrity: sha512-
|
|
5373
|
+
fast-uri@3.1.3:
|
|
5374
|
+
resolution: {integrity: sha512-i70LwGWUduXqzicKXWshooq+sWL1K3WUU5rKZNG/0i3a1OSoX3HqhH5WbWwTmqWfor4urUakGPiRQcleRZTwOg==}
|
|
5375
5375
|
|
|
5376
5376
|
fast-wrap-ansi@0.2.2:
|
|
5377
5377
|
resolution: {integrity: sha512-7F2Fl+TjRSenLqlU3UjSH0iyqopqoZIu7eZVpEirP2g1GtWa2G/ecEmBdgz31+Mxr+ELclgg6sokpSFIQiZ02Q==}
|
|
@@ -5435,8 +5435,8 @@ packages:
|
|
|
5435
5435
|
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
|
5436
5436
|
engines: {node: '>=16'}
|
|
5437
5437
|
|
|
5438
|
-
flat-cache@6.1.
|
|
5439
|
-
resolution: {integrity: sha512-
|
|
5438
|
+
flat-cache@6.1.23:
|
|
5439
|
+
resolution: {integrity: sha512-f++BY9pTk+983xK1FLzlLpmM0i0z+jHmx3QESGkURMXujQZz1k5wzwX6hjnQ8goaD0B+sYnDK1yZ6MTyZfUaqA==}
|
|
5440
5440
|
|
|
5441
5441
|
flat@5.0.2:
|
|
5442
5442
|
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
|
|
@@ -5669,8 +5669,8 @@ packages:
|
|
|
5669
5669
|
resolution: {integrity: sha512-kERHXvpSaB4aU3eANwidg79K8FlrN77m8G9V+0vOR3HYaRifrlwMEpT7ZBJqLSEIHnEgJTHcWK82wwLwwKwtag==}
|
|
5670
5670
|
engines: {node: '>=0.10.0'}
|
|
5671
5671
|
|
|
5672
|
-
iconv-lite@0.7.
|
|
5673
|
-
resolution: {integrity: sha512-
|
|
5672
|
+
iconv-lite@0.7.3:
|
|
5673
|
+
resolution: {integrity: sha512-IKXpvIzjnC9XTAUbVBcMfGS0EPaIXtW6v+zr+RRp+hqULEpo0owZax6wyRwPOJbWbzjYspQwusTsfVr0ifh4uQ==}
|
|
5674
5674
|
engines: {node: '>=0.10.0'}
|
|
5675
5675
|
|
|
5676
5676
|
icss-replace-symbols@1.1.0:
|
|
@@ -5958,10 +5958,6 @@ packages:
|
|
|
5958
5958
|
resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
|
|
5959
5959
|
hasBin: true
|
|
5960
5960
|
|
|
5961
|
-
js-yaml@4.2.0:
|
|
5962
|
-
resolution: {integrity: sha512-ePWsvanv0DWuDRsW8dnt+R4jQ31SCRCQ7hhNcPXZPsoBZiemuZNYGf7adZdqX2D86j6rvKp3RpCxVTSb8WQlOw==}
|
|
5963
|
-
hasBin: true
|
|
5964
|
-
|
|
5965
5961
|
jsdoc-type-pratt-parser@7.1.1:
|
|
5966
5962
|
resolution: {integrity: sha512-/2uqY7x6bsrpi3i9LVU6J89352C0rpMk0as8trXxCtvd4kPk1ke/Eyif6wqfSLvoNJqcDG9Vk4UsXgygzCt2xA==}
|
|
5967
5963
|
engines: {node: '>=20.0.0'}
|
|
@@ -6592,8 +6588,8 @@ packages:
|
|
|
6592
6588
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6593
6589
|
hasBin: true
|
|
6594
6590
|
|
|
6595
|
-
oxlint@1.
|
|
6596
|
-
resolution: {integrity: sha512-
|
|
6591
|
+
oxlint@1.72.0:
|
|
6592
|
+
resolution: {integrity: sha512-1rhdZIP/EvoI91ABIwNU5Q8+bWf8mjrS5UzIOZld4d4bXxJvtlUhlQvaoTogIGin/qdErMOrwaIJvCSIAKTLhA==}
|
|
6597
6593
|
engines: {node: ^20.19.0 || >=22.12.0}
|
|
6598
6594
|
hasBin: true
|
|
6599
6595
|
peerDependencies:
|
|
@@ -6830,15 +6826,15 @@ packages:
|
|
|
6830
6826
|
quasar-app-extension-zova@1.3.1:
|
|
6831
6827
|
resolution: {integrity: sha512-JKOXATq28dlNVzF534QosguSHnpR3RN+O8jqWMA8yUk58oj4q/iqFlOV8dnW5Cu/24JMN1Z+bKW2cOLdkpOzxw==}
|
|
6832
6828
|
|
|
6833
|
-
quasar@2.
|
|
6834
|
-
resolution: {integrity: sha512-
|
|
6829
|
+
quasar@2.21.0:
|
|
6830
|
+
resolution: {integrity: sha512-101qA4iBlEF3538xxOA8ekgeell5g9dcj2R5MMaG4wCbhLO52iDmETipCEXPiKtg1H3YWkgBU67QG9Q6GAkY6A==}
|
|
6835
6831
|
engines: {node: '>= 10.18.1', npm: '>= 6.13.4', yarn: '>= 1.21.1'}
|
|
6836
6832
|
|
|
6837
6833
|
queue-microtask@1.2.3:
|
|
6838
6834
|
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
|
6839
6835
|
|
|
6840
|
-
range-parser@1.
|
|
6841
|
-
resolution: {integrity: sha512-
|
|
6836
|
+
range-parser@1.3.0:
|
|
6837
|
+
resolution: {integrity: sha512-hek2mFQpPuI4E1BBKrSto+BU3e3x4xuarsbiwr3+lf7p44juvFMV0XFWQAP3xUyqXA4RrXLIoaSUGbSt056ZMw==}
|
|
6842
6838
|
engines: {node: '>= 0.6'}
|
|
6843
6839
|
|
|
6844
6840
|
raw-body@3.0.2:
|
|
@@ -7193,8 +7189,8 @@ packages:
|
|
|
7193
7189
|
sentence-case@3.0.4:
|
|
7194
7190
|
resolution: {integrity: sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==}
|
|
7195
7191
|
|
|
7196
|
-
serialize-javascript@7.0.
|
|
7197
|
-
resolution: {integrity: sha512-
|
|
7192
|
+
serialize-javascript@7.0.7:
|
|
7193
|
+
resolution: {integrity: sha512-YAy8Od6KV+uuwUuU50np8fGB/Aues6Y0nAhA9y/hId74PlKUcme4pXcBD46NWKr1Q4osN/iseZ17YqO1XfmI8g==}
|
|
7198
7194
|
engines: {node: '>=20.0.0'}
|
|
7199
7195
|
|
|
7200
7196
|
serve-static@2.2.1:
|
|
@@ -7227,8 +7223,8 @@ packages:
|
|
|
7227
7223
|
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
|
7228
7224
|
engines: {node: '>=8'}
|
|
7229
7225
|
|
|
7230
|
-
shell-quote@1.
|
|
7231
|
-
resolution: {integrity: sha512-
|
|
7226
|
+
shell-quote@1.9.0:
|
|
7227
|
+
resolution: {integrity: sha512-Iov+JwFv/2HcTpcwNMKd8+IWNb8tboQJNQTkAY/LLVK7gGH9jy+LGkVqPxfekHl+yMmiqXszdGWXgkfml7hjqA==}
|
|
7232
7228
|
engines: {node: '>= 0.4'}
|
|
7233
7229
|
|
|
7234
7230
|
side-channel-list@1.0.1:
|
|
@@ -7405,8 +7401,8 @@ packages:
|
|
|
7405
7401
|
resolution: {integrity: sha512-yEFYrVhod+hdNyx7g5Bnkkb0G6si8HJurOoOEgC8B/O0uXLHlaey/65KRv6cuWBNhBgHKAROVpc7QyYqE5gFng==}
|
|
7406
7402
|
engines: {node: '>=20'}
|
|
7407
7403
|
|
|
7408
|
-
tailwindcss@4.3.
|
|
7409
|
-
resolution: {integrity: sha512-
|
|
7404
|
+
tailwindcss@4.3.2:
|
|
7405
|
+
resolution: {integrity: sha512-WtctNNSH8A9jlMIqxzuYumOHU5uGZyRv0Q5svQl+oEPy5w84YpBxdb7MdqyiSPQge5jTJ6zFQLq0PFygdccSBA==}
|
|
7410
7406
|
|
|
7411
7407
|
tapable@2.3.3:
|
|
7412
7408
|
resolution: {integrity: sha512-uxc/zpqFg6x7C8vOE7lh6Lbda8eEL9zmVm/PLeTPBRhh1xCgdWaQ+J1CUieGpIfm2HdtsUpRv+HshiasBMcc6A==}
|
|
@@ -7560,8 +7556,8 @@ packages:
|
|
|
7560
7556
|
resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
|
|
7561
7557
|
engines: {node: '>=16'}
|
|
7562
7558
|
|
|
7563
|
-
type-fest@5.
|
|
7564
|
-
resolution: {integrity: sha512-
|
|
7559
|
+
type-fest@5.8.0:
|
|
7560
|
+
resolution: {integrity: sha512-YGYEVz3Fm5iy/AybuA0oyNFq7H4CgQNfRp/qfe8nurE1kuCeNm3/vfm9X4Mtl+qLyaKJUh5xrFZwogr41SMjYA==}
|
|
7565
7561
|
engines: {node: '>=20'}
|
|
7566
7562
|
|
|
7567
7563
|
type-is@2.1.0:
|
|
@@ -7572,8 +7568,8 @@ packages:
|
|
|
7572
7568
|
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
|
|
7573
7569
|
engines: {node: '>= 0.4'}
|
|
7574
7570
|
|
|
7575
|
-
typescript-eslint@8.62.
|
|
7576
|
-
resolution: {integrity: sha512-
|
|
7571
|
+
typescript-eslint@8.62.1:
|
|
7572
|
+
resolution: {integrity: sha512-vymnnM5g0AKQDSAyfP12nMIBvgwgA42syg74kkuZ4x1VuTzwQKwc5h9rGxeShCjny5o+zWAb6OEoz7XLgrIkIw==}
|
|
7577
7573
|
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
|
7578
7574
|
peerDependencies:
|
|
7579
7575
|
eslint: ^8.57.0 || ^9.0.0 || ^10.0.0
|
|
@@ -7798,8 +7794,8 @@ packages:
|
|
|
7798
7794
|
peerDependencies:
|
|
7799
7795
|
vue: ^3.5.13
|
|
7800
7796
|
|
|
7801
|
-
vue-tsc@3.3.
|
|
7802
|
-
resolution: {integrity: sha512-
|
|
7797
|
+
vue-tsc@3.3.6:
|
|
7798
|
+
resolution: {integrity: sha512-ERXGgbKSBGFUkavrJ1Iwj0ZVxKqB/5UOx65IXy7fPf2UsoI21n3ssQLwdvx8xyUGgJe9PvSZTM/FYzIdwUDPFA==}
|
|
7803
7799
|
hasBin: true
|
|
7804
7800
|
peerDependencies:
|
|
7805
7801
|
typescript: '>=5.0.0'
|
|
@@ -8273,27 +8269,27 @@ snapshots:
|
|
|
8273
8269
|
dependencies:
|
|
8274
8270
|
json5: 2.2.3
|
|
8275
8271
|
|
|
8276
|
-
'@cabloy/lint@5.1.30(@typescript-eslint/eslint-plugin@8.62.
|
|
8272
|
+
'@cabloy/lint@5.1.30(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(oxfmt@0.45.0)(oxlint@1.72.0)(supports-color@10.2.2)(typescript@5.9.3)(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)))':
|
|
8277
8273
|
dependencies:
|
|
8278
|
-
'@e18e/eslint-plugin': 0.2.0(eslint@10.
|
|
8274
|
+
'@e18e/eslint-plugin': 0.2.0(eslint@10.6.0(jiti@2.7.0))(oxlint@1.72.0)
|
|
8279
8275
|
'@eslint/json': 1.2.0
|
|
8280
8276
|
'@eslint/markdown': 7.5.1(supports-color@10.2.2)
|
|
8281
|
-
'@stylistic/eslint-plugin': 5.10.0(eslint@10.
|
|
8282
|
-
'@typescript-eslint/parser': 8.62.
|
|
8283
|
-
eslint-plugin-antfu: 3.2.3(eslint@10.
|
|
8284
|
-
eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.62.
|
|
8285
|
-
eslint-plugin-eslint-comments: 3.2.0(eslint@10.
|
|
8286
|
-
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.
|
|
8287
|
-
eslint-plugin-pnpm: 1.6.1(eslint@10.
|
|
8288
|
-
eslint-plugin-regexp: 3.1.
|
|
8289
|
-
eslint-plugin-toml: 1.4.0(eslint@10.
|
|
8290
|
-
eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.62.
|
|
8291
|
-
eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
8292
|
-
eslint-plugin-yml: 3.5.0(eslint@10.
|
|
8277
|
+
'@stylistic/eslint-plugin': 5.10.0(eslint@10.6.0(jiti@2.7.0))
|
|
8278
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
8279
|
+
eslint-plugin-antfu: 3.2.3(eslint@10.6.0(jiti@2.7.0))
|
|
8280
|
+
eslint-plugin-command: 3.5.2(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))
|
|
8281
|
+
eslint-plugin-eslint-comments: 3.2.0(eslint@10.6.0(jiti@2.7.0))
|
|
8282
|
+
eslint-plugin-jsonc: 3.2.0(@eslint/json@1.2.0)(eslint@10.6.0(jiti@2.7.0))
|
|
8283
|
+
eslint-plugin-pnpm: 1.6.1(eslint@10.6.0(jiti@2.7.0))
|
|
8284
|
+
eslint-plugin-regexp: 3.1.1(eslint@10.6.0(jiti@2.7.0))
|
|
8285
|
+
eslint-plugin-toml: 1.4.0(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)
|
|
8286
|
+
eslint-plugin-unused-imports: 4.4.1(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))
|
|
8287
|
+
eslint-plugin-vue: 10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0)))(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)))
|
|
8288
|
+
eslint-plugin-yml: 3.5.0(eslint@10.6.0(jiti@2.7.0))
|
|
8293
8289
|
globals: 17.7.0
|
|
8294
8290
|
oxfmt: 0.45.0
|
|
8295
|
-
oxlint: 1.
|
|
8296
|
-
typescript-eslint: 8.62.
|
|
8291
|
+
oxlint: 1.72.0
|
|
8292
|
+
typescript-eslint: 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
8297
8293
|
transitivePeerDependencies:
|
|
8298
8294
|
- '@typescript-eslint/eslint-plugin'
|
|
8299
8295
|
- '@typescript-eslint/rule-tester'
|
|
@@ -8332,11 +8328,11 @@ snapshots:
|
|
|
8332
8328
|
|
|
8333
8329
|
'@cabloy/process-helper@3.1.8': {}
|
|
8334
8330
|
|
|
8335
|
-
'@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.
|
|
8331
|
+
'@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(rolldown@1.1.3)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)':
|
|
8336
8332
|
dependencies:
|
|
8337
8333
|
'@quasar/render-ssr-error': 1.0.4
|
|
8338
8334
|
'@quasar/ssl-certificate': 1.0.0
|
|
8339
|
-
'@quasar/vite-plugin': '@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)))(quasar@2.
|
|
8335
|
+
'@quasar/vite-plugin': '@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)))(quasar@2.21.0)(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))'
|
|
8340
8336
|
'@types/chrome': 0.1.43
|
|
8341
8337
|
'@types/compression': 1.8.1
|
|
8342
8338
|
'@types/cordova': 11.0.3
|
|
@@ -8363,11 +8359,11 @@ snapshots:
|
|
|
8363
8359
|
minimist: 1.2.8
|
|
8364
8360
|
mlly: 1.8.2
|
|
8365
8361
|
open: 11.0.0
|
|
8366
|
-
quasar: 2.
|
|
8362
|
+
quasar: 2.21.0
|
|
8367
8363
|
rollup-plugin-visualizer: 7.0.1(rolldown@1.1.3)
|
|
8368
8364
|
sass-embedded: 1.100.0
|
|
8369
8365
|
semver: 7.8.5
|
|
8370
|
-
serialize-javascript: 7.0.
|
|
8366
|
+
serialize-javascript: 7.0.7
|
|
8371
8367
|
tinyglobby: 0.2.17
|
|
8372
8368
|
ts-essentials: 10.2.1(typescript@5.9.3)
|
|
8373
8369
|
vite: 8.1.0(@types/node@22.20.0)(esbuild@0.27.7)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
@@ -8376,7 +8372,7 @@ snapshots:
|
|
|
8376
8372
|
webpack-merge: 6.0.1
|
|
8377
8373
|
zova-vite: link:packages-utils/zova-vite
|
|
8378
8374
|
optionalDependencies:
|
|
8379
|
-
eslint: 10.
|
|
8375
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
8380
8376
|
typescript: 5.9.3
|
|
8381
8377
|
transitivePeerDependencies:
|
|
8382
8378
|
- '@types/node'
|
|
@@ -8396,10 +8392,10 @@ snapshots:
|
|
|
8396
8392
|
- tsx
|
|
8397
8393
|
- yaml
|
|
8398
8394
|
|
|
8399
|
-
'@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)))(quasar@2.
|
|
8395
|
+
'@cabloy/quasar-vite-plugin@1.11.0(@vitejs/plugin-vue@6.0.7(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3)))(quasar@2.21.0)(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))':
|
|
8400
8396
|
dependencies:
|
|
8401
8397
|
'@vitejs/plugin-vue': 6.0.7(vite@8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0))(vue@3.5.38(typescript@5.9.3))
|
|
8402
|
-
quasar: 2.
|
|
8398
|
+
quasar: 2.21.0
|
|
8403
8399
|
vite: 8.1.0(@types/node@22.20.0)(esbuild@0.25.12)(jiti@2.7.0)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(yaml@2.9.0)
|
|
8404
8400
|
vue: 3.5.38(typescript@5.9.3)
|
|
8405
8401
|
|
|
@@ -8510,14 +8506,14 @@ snapshots:
|
|
|
8510
8506
|
|
|
8511
8507
|
'@cabloy/zod@4.3.8': {}
|
|
8512
8508
|
|
|
8513
|
-
'@cacheable/memory@2.0
|
|
8509
|
+
'@cacheable/memory@2.2.0':
|
|
8514
8510
|
dependencies:
|
|
8515
|
-
'@cacheable/utils': 2.
|
|
8511
|
+
'@cacheable/utils': 2.5.0
|
|
8516
8512
|
'@keyv/bigmap': 1.3.1(keyv@5.6.0)
|
|
8517
8513
|
hookified: 1.15.1
|
|
8518
8514
|
keyv: 5.6.0
|
|
8519
8515
|
|
|
8520
|
-
'@cacheable/utils@2.
|
|
8516
|
+
'@cacheable/utils@2.5.0':
|
|
8521
8517
|
dependencies:
|
|
8522
8518
|
hashery: 1.5.1
|
|
8523
8519
|
keyv: 5.6.0
|
|
@@ -8525,12 +8521,12 @@ snapshots:
|
|
|
8525
8521
|
'@colors/colors@1.5.0':
|
|
8526
8522
|
optional: true
|
|
8527
8523
|
|
|
8528
|
-
'@e18e/eslint-plugin@0.2.0(eslint@10.
|
|
8524
|
+
'@e18e/eslint-plugin@0.2.0(eslint@10.6.0(jiti@2.7.0))(oxlint@1.72.0)':
|
|
8529
8525
|
dependencies:
|
|
8530
|
-
eslint-plugin-depend: 1.5.0(eslint@10.
|
|
8526
|
+
eslint-plugin-depend: 1.5.0(eslint@10.6.0(jiti@2.7.0))
|
|
8531
8527
|
optionalDependencies:
|
|
8532
|
-
eslint: 10.
|
|
8533
|
-
oxlint: 1.
|
|
8528
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
8529
|
+
oxlint: 1.72.0
|
|
8534
8530
|
|
|
8535
8531
|
'@eggjs/yauzl@2.11.0':
|
|
8536
8532
|
dependencies:
|
|
@@ -8572,7 +8568,7 @@ snapshots:
|
|
|
8572
8568
|
'@es-joy/jsdoccomment@0.84.0':
|
|
8573
8569
|
dependencies:
|
|
8574
8570
|
'@types/estree': 1.0.9
|
|
8575
|
-
'@typescript-eslint/types': 8.62.
|
|
8571
|
+
'@typescript-eslint/types': 8.62.1
|
|
8576
8572
|
comment-parser: 1.4.5
|
|
8577
8573
|
esquery: 1.7.0
|
|
8578
8574
|
jsdoc-type-pratt-parser: 7.1.1
|
|
@@ -8952,9 +8948,9 @@ snapshots:
|
|
|
8952
8948
|
'@esbuild/win32-x64@0.27.7':
|
|
8953
8949
|
optional: true
|
|
8954
8950
|
|
|
8955
|
-
'@eslint-community/eslint-utils@4.9.1(eslint@10.
|
|
8951
|
+
'@eslint-community/eslint-utils@4.9.1(eslint@10.6.0(jiti@2.7.0))':
|
|
8956
8952
|
dependencies:
|
|
8957
|
-
eslint: 10.
|
|
8953
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
8958
8954
|
eslint-visitor-keys: 3.4.3
|
|
8959
8955
|
|
|
8960
8956
|
'@eslint-community/regexpp@4.12.2': {}
|
|
@@ -9091,7 +9087,7 @@ snapshots:
|
|
|
9091
9087
|
'@inquirer/external-editor@3.0.3(@types/node@22.20.0)':
|
|
9092
9088
|
dependencies:
|
|
9093
9089
|
chardet: 2.2.0
|
|
9094
|
-
iconv-lite: 0.7.
|
|
9090
|
+
iconv-lite: 0.7.3
|
|
9095
9091
|
optionalDependencies:
|
|
9096
9092
|
'@types/node': 22.20.0
|
|
9097
9093
|
|
|
@@ -9361,61 +9357,61 @@ snapshots:
|
|
|
9361
9357
|
'@oxfmt/binding-win32-x64-msvc@0.45.0':
|
|
9362
9358
|
optional: true
|
|
9363
9359
|
|
|
9364
|
-
'@oxlint/binding-android-arm-eabi@1.
|
|
9360
|
+
'@oxlint/binding-android-arm-eabi@1.72.0':
|
|
9365
9361
|
optional: true
|
|
9366
9362
|
|
|
9367
|
-
'@oxlint/binding-android-arm64@1.
|
|
9363
|
+
'@oxlint/binding-android-arm64@1.72.0':
|
|
9368
9364
|
optional: true
|
|
9369
9365
|
|
|
9370
|
-
'@oxlint/binding-darwin-arm64@1.
|
|
9366
|
+
'@oxlint/binding-darwin-arm64@1.72.0':
|
|
9371
9367
|
optional: true
|
|
9372
9368
|
|
|
9373
|
-
'@oxlint/binding-darwin-x64@1.
|
|
9369
|
+
'@oxlint/binding-darwin-x64@1.72.0':
|
|
9374
9370
|
optional: true
|
|
9375
9371
|
|
|
9376
|
-
'@oxlint/binding-freebsd-x64@1.
|
|
9372
|
+
'@oxlint/binding-freebsd-x64@1.72.0':
|
|
9377
9373
|
optional: true
|
|
9378
9374
|
|
|
9379
|
-
'@oxlint/binding-linux-arm-gnueabihf@1.
|
|
9375
|
+
'@oxlint/binding-linux-arm-gnueabihf@1.72.0':
|
|
9380
9376
|
optional: true
|
|
9381
9377
|
|
|
9382
|
-
'@oxlint/binding-linux-arm-musleabihf@1.
|
|
9378
|
+
'@oxlint/binding-linux-arm-musleabihf@1.72.0':
|
|
9383
9379
|
optional: true
|
|
9384
9380
|
|
|
9385
|
-
'@oxlint/binding-linux-arm64-gnu@1.
|
|
9381
|
+
'@oxlint/binding-linux-arm64-gnu@1.72.0':
|
|
9386
9382
|
optional: true
|
|
9387
9383
|
|
|
9388
|
-
'@oxlint/binding-linux-arm64-musl@1.
|
|
9384
|
+
'@oxlint/binding-linux-arm64-musl@1.72.0':
|
|
9389
9385
|
optional: true
|
|
9390
9386
|
|
|
9391
|
-
'@oxlint/binding-linux-ppc64-gnu@1.
|
|
9387
|
+
'@oxlint/binding-linux-ppc64-gnu@1.72.0':
|
|
9392
9388
|
optional: true
|
|
9393
9389
|
|
|
9394
|
-
'@oxlint/binding-linux-riscv64-gnu@1.
|
|
9390
|
+
'@oxlint/binding-linux-riscv64-gnu@1.72.0':
|
|
9395
9391
|
optional: true
|
|
9396
9392
|
|
|
9397
|
-
'@oxlint/binding-linux-riscv64-musl@1.
|
|
9393
|
+
'@oxlint/binding-linux-riscv64-musl@1.72.0':
|
|
9398
9394
|
optional: true
|
|
9399
9395
|
|
|
9400
|
-
'@oxlint/binding-linux-s390x-gnu@1.
|
|
9396
|
+
'@oxlint/binding-linux-s390x-gnu@1.72.0':
|
|
9401
9397
|
optional: true
|
|
9402
9398
|
|
|
9403
|
-
'@oxlint/binding-linux-x64-gnu@1.
|
|
9399
|
+
'@oxlint/binding-linux-x64-gnu@1.72.0':
|
|
9404
9400
|
optional: true
|
|
9405
9401
|
|
|
9406
|
-
'@oxlint/binding-linux-x64-musl@1.
|
|
9402
|
+
'@oxlint/binding-linux-x64-musl@1.72.0':
|
|
9407
9403
|
optional: true
|
|
9408
9404
|
|
|
9409
|
-
'@oxlint/binding-openharmony-arm64@1.
|
|
9405
|
+
'@oxlint/binding-openharmony-arm64@1.72.0':
|
|
9410
9406
|
optional: true
|
|
9411
9407
|
|
|
9412
|
-
'@oxlint/binding-win32-arm64-msvc@1.
|
|
9408
|
+
'@oxlint/binding-win32-arm64-msvc@1.72.0':
|
|
9413
9409
|
optional: true
|
|
9414
9410
|
|
|
9415
|
-
'@oxlint/binding-win32-ia32-msvc@1.
|
|
9411
|
+
'@oxlint/binding-win32-ia32-msvc@1.72.0':
|
|
9416
9412
|
optional: true
|
|
9417
9413
|
|
|
9418
|
-
'@oxlint/binding-win32-x64-msvc@1.
|
|
9414
|
+
'@oxlint/binding-win32-x64-msvc@1.72.0':
|
|
9419
9415
|
optional: true
|
|
9420
9416
|
|
|
9421
9417
|
'@parcel/watcher-android-arm64@2.5.6':
|
|
@@ -9626,17 +9622,17 @@ snapshots:
|
|
|
9626
9622
|
|
|
9627
9623
|
'@sindresorhus/merge-streams@4.0.0': {}
|
|
9628
9624
|
|
|
9629
|
-
'@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
9625
|
+
'@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0))':
|
|
9630
9626
|
dependencies:
|
|
9631
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
9632
|
-
'@typescript-eslint/types': 8.62.
|
|
9633
|
-
eslint: 10.
|
|
9627
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
9628
|
+
'@typescript-eslint/types': 8.62.1
|
|
9629
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
9634
9630
|
eslint-visitor-keys: 4.2.1
|
|
9635
9631
|
espree: 10.4.0
|
|
9636
9632
|
estraverse: 5.3.0
|
|
9637
9633
|
picomatch: 4.0.4
|
|
9638
9634
|
|
|
9639
|
-
'@tailwindcss/node@4.3.
|
|
9635
|
+
'@tailwindcss/node@4.3.2':
|
|
9640
9636
|
dependencies:
|
|
9641
9637
|
'@jridgewell/remapping': 2.3.5
|
|
9642
9638
|
enhanced-resolve: 5.21.6
|
|
@@ -9644,71 +9640,71 @@ snapshots:
|
|
|
9644
9640
|
lightningcss: 1.32.0
|
|
9645
9641
|
magic-string: 0.30.21
|
|
9646
9642
|
source-map-js: 1.2.1
|
|
9647
|
-
tailwindcss: 4.3.
|
|
9643
|
+
tailwindcss: 4.3.2
|
|
9648
9644
|
|
|
9649
|
-
'@tailwindcss/oxide-android-arm64@4.3.
|
|
9645
|
+
'@tailwindcss/oxide-android-arm64@4.3.2':
|
|
9650
9646
|
optional: true
|
|
9651
9647
|
|
|
9652
|
-
'@tailwindcss/oxide-darwin-arm64@4.3.
|
|
9648
|
+
'@tailwindcss/oxide-darwin-arm64@4.3.2':
|
|
9653
9649
|
optional: true
|
|
9654
9650
|
|
|
9655
|
-
'@tailwindcss/oxide-darwin-x64@4.3.
|
|
9651
|
+
'@tailwindcss/oxide-darwin-x64@4.3.2':
|
|
9656
9652
|
optional: true
|
|
9657
9653
|
|
|
9658
|
-
'@tailwindcss/oxide-freebsd-x64@4.3.
|
|
9654
|
+
'@tailwindcss/oxide-freebsd-x64@4.3.2':
|
|
9659
9655
|
optional: true
|
|
9660
9656
|
|
|
9661
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.
|
|
9657
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.3.2':
|
|
9662
9658
|
optional: true
|
|
9663
9659
|
|
|
9664
|
-
'@tailwindcss/oxide-linux-arm64-gnu@4.3.
|
|
9660
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.3.2':
|
|
9665
9661
|
optional: true
|
|
9666
9662
|
|
|
9667
|
-
'@tailwindcss/oxide-linux-arm64-musl@4.3.
|
|
9663
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.3.2':
|
|
9668
9664
|
optional: true
|
|
9669
9665
|
|
|
9670
|
-
'@tailwindcss/oxide-linux-x64-gnu@4.3.
|
|
9666
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.3.2':
|
|
9671
9667
|
optional: true
|
|
9672
9668
|
|
|
9673
|
-
'@tailwindcss/oxide-linux-x64-musl@4.3.
|
|
9669
|
+
'@tailwindcss/oxide-linux-x64-musl@4.3.2':
|
|
9674
9670
|
optional: true
|
|
9675
9671
|
|
|
9676
|
-
'@tailwindcss/oxide-wasm32-wasi@4.3.
|
|
9672
|
+
'@tailwindcss/oxide-wasm32-wasi@4.3.2':
|
|
9677
9673
|
optional: true
|
|
9678
9674
|
|
|
9679
|
-
'@tailwindcss/oxide-win32-arm64-msvc@4.3.
|
|
9675
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.3.2':
|
|
9680
9676
|
optional: true
|
|
9681
9677
|
|
|
9682
|
-
'@tailwindcss/oxide-win32-x64-msvc@4.3.
|
|
9678
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.3.2':
|
|
9683
9679
|
optional: true
|
|
9684
9680
|
|
|
9685
|
-
'@tailwindcss/oxide@4.3.
|
|
9681
|
+
'@tailwindcss/oxide@4.3.2':
|
|
9686
9682
|
optionalDependencies:
|
|
9687
|
-
'@tailwindcss/oxide-android-arm64': 4.3.
|
|
9688
|
-
'@tailwindcss/oxide-darwin-arm64': 4.3.
|
|
9689
|
-
'@tailwindcss/oxide-darwin-x64': 4.3.
|
|
9690
|
-
'@tailwindcss/oxide-freebsd-x64': 4.3.
|
|
9691
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.
|
|
9692
|
-
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.
|
|
9693
|
-
'@tailwindcss/oxide-linux-arm64-musl': 4.3.
|
|
9694
|
-
'@tailwindcss/oxide-linux-x64-gnu': 4.3.
|
|
9695
|
-
'@tailwindcss/oxide-linux-x64-musl': 4.3.
|
|
9696
|
-
'@tailwindcss/oxide-wasm32-wasi': 4.3.
|
|
9697
|
-
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.
|
|
9698
|
-
'@tailwindcss/oxide-win32-x64-msvc': 4.3.
|
|
9699
|
-
|
|
9700
|
-
'@tailwindcss/postcss@4.3.
|
|
9683
|
+
'@tailwindcss/oxide-android-arm64': 4.3.2
|
|
9684
|
+
'@tailwindcss/oxide-darwin-arm64': 4.3.2
|
|
9685
|
+
'@tailwindcss/oxide-darwin-x64': 4.3.2
|
|
9686
|
+
'@tailwindcss/oxide-freebsd-x64': 4.3.2
|
|
9687
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.3.2
|
|
9688
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.3.2
|
|
9689
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.3.2
|
|
9690
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.3.2
|
|
9691
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.3.2
|
|
9692
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.3.2
|
|
9693
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.3.2
|
|
9694
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.3.2
|
|
9695
|
+
|
|
9696
|
+
'@tailwindcss/postcss@4.3.2':
|
|
9701
9697
|
dependencies:
|
|
9702
9698
|
'@alloc/quick-lru': 5.2.0
|
|
9703
|
-
'@tailwindcss/node': 4.3.
|
|
9704
|
-
'@tailwindcss/oxide': 4.3.
|
|
9699
|
+
'@tailwindcss/node': 4.3.2
|
|
9700
|
+
'@tailwindcss/oxide': 4.3.2
|
|
9705
9701
|
postcss: 8.5.15
|
|
9706
|
-
tailwindcss: 4.3.
|
|
9702
|
+
tailwindcss: 4.3.2
|
|
9707
9703
|
|
|
9708
|
-
'@tailwindcss/typography@0.5.20(tailwindcss@4.3.
|
|
9704
|
+
'@tailwindcss/typography@0.5.20(tailwindcss@4.3.2)':
|
|
9709
9705
|
dependencies:
|
|
9710
9706
|
postcss-selector-parser: 6.0.10
|
|
9711
|
-
tailwindcss: 4.3.
|
|
9707
|
+
tailwindcss: 4.3.2
|
|
9712
9708
|
|
|
9713
9709
|
'@tanstack/devtools-event-client@0.4.4': {}
|
|
9714
9710
|
|
|
@@ -9826,7 +9822,7 @@ snapshots:
|
|
|
9826
9822
|
'@textlint/types': 15.7.1
|
|
9827
9823
|
chalk: 4.1.2
|
|
9828
9824
|
debug: 4.4.3(supports-color@10.2.2)
|
|
9829
|
-
js-yaml: 4.
|
|
9825
|
+
js-yaml: 4.1.1
|
|
9830
9826
|
lodash: 4.18.1
|
|
9831
9827
|
pluralize: 2.0.0
|
|
9832
9828
|
string-width: 4.2.3
|
|
@@ -10025,15 +10021,15 @@ snapshots:
|
|
|
10025
10021
|
|
|
10026
10022
|
'@types/unist@3.0.3': {}
|
|
10027
10023
|
|
|
10028
|
-
'@typescript-eslint/eslint-plugin@8.62.
|
|
10024
|
+
'@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10029
10025
|
dependencies:
|
|
10030
10026
|
'@eslint-community/regexpp': 4.12.2
|
|
10031
|
-
'@typescript-eslint/parser': 8.62.
|
|
10032
|
-
'@typescript-eslint/scope-manager': 8.62.
|
|
10033
|
-
'@typescript-eslint/type-utils': 8.62.
|
|
10034
|
-
'@typescript-eslint/utils': 8.62.
|
|
10035
|
-
'@typescript-eslint/visitor-keys': 8.62.
|
|
10036
|
-
eslint: 10.
|
|
10027
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10028
|
+
'@typescript-eslint/scope-manager': 8.62.1
|
|
10029
|
+
'@typescript-eslint/type-utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10030
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10031
|
+
'@typescript-eslint/visitor-keys': 8.62.1
|
|
10032
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10037
10033
|
ignore: 7.0.5
|
|
10038
10034
|
natural-compare: 1.4.0
|
|
10039
10035
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
@@ -10041,34 +10037,34 @@ snapshots:
|
|
|
10041
10037
|
transitivePeerDependencies:
|
|
10042
10038
|
- supports-color
|
|
10043
10039
|
|
|
10044
|
-
'@typescript-eslint/parser@8.62.
|
|
10040
|
+
'@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10045
10041
|
dependencies:
|
|
10046
|
-
'@typescript-eslint/scope-manager': 8.62.
|
|
10047
|
-
'@typescript-eslint/types': 8.62.
|
|
10048
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
10049
|
-
'@typescript-eslint/visitor-keys': 8.62.
|
|
10042
|
+
'@typescript-eslint/scope-manager': 8.62.1
|
|
10043
|
+
'@typescript-eslint/types': 8.62.1
|
|
10044
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10045
|
+
'@typescript-eslint/visitor-keys': 8.62.1
|
|
10050
10046
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10051
|
-
eslint: 10.
|
|
10047
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10052
10048
|
typescript: 5.9.3
|
|
10053
10049
|
transitivePeerDependencies:
|
|
10054
10050
|
- supports-color
|
|
10055
10051
|
|
|
10056
|
-
'@typescript-eslint/project-service@8.62.
|
|
10052
|
+
'@typescript-eslint/project-service@8.62.1(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10057
10053
|
dependencies:
|
|
10058
|
-
'@typescript-eslint/tsconfig-utils': 8.62.
|
|
10059
|
-
'@typescript-eslint/types': 8.62.
|
|
10054
|
+
'@typescript-eslint/tsconfig-utils': 8.62.1(typescript@5.9.3)
|
|
10055
|
+
'@typescript-eslint/types': 8.62.1
|
|
10060
10056
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10061
10057
|
typescript: 5.9.3
|
|
10062
10058
|
transitivePeerDependencies:
|
|
10063
10059
|
- supports-color
|
|
10064
10060
|
|
|
10065
|
-
'@typescript-eslint/rule-tester@8.62.
|
|
10061
|
+
'@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10066
10062
|
dependencies:
|
|
10067
|
-
'@typescript-eslint/parser': 8.62.
|
|
10068
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
10069
|
-
'@typescript-eslint/utils': 8.62.
|
|
10063
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
10064
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10065
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10070
10066
|
ajv: 6.15.0
|
|
10071
|
-
eslint: 10.
|
|
10067
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10072
10068
|
json-stable-stringify-without-jsonify: 1.0.1
|
|
10073
10069
|
lodash.merge: 4.6.2
|
|
10074
10070
|
semver: 7.8.5
|
|
@@ -10076,35 +10072,35 @@ snapshots:
|
|
|
10076
10072
|
transitivePeerDependencies:
|
|
10077
10073
|
- supports-color
|
|
10078
10074
|
|
|
10079
|
-
'@typescript-eslint/scope-manager@8.62.
|
|
10075
|
+
'@typescript-eslint/scope-manager@8.62.1':
|
|
10080
10076
|
dependencies:
|
|
10081
|
-
'@typescript-eslint/types': 8.62.
|
|
10082
|
-
'@typescript-eslint/visitor-keys': 8.62.
|
|
10077
|
+
'@typescript-eslint/types': 8.62.1
|
|
10078
|
+
'@typescript-eslint/visitor-keys': 8.62.1
|
|
10083
10079
|
|
|
10084
|
-
'@typescript-eslint/tsconfig-utils@8.62.
|
|
10080
|
+
'@typescript-eslint/tsconfig-utils@8.62.1(typescript@5.9.3)':
|
|
10085
10081
|
dependencies:
|
|
10086
10082
|
typescript: 5.9.3
|
|
10087
10083
|
|
|
10088
|
-
'@typescript-eslint/type-utils@8.62.
|
|
10084
|
+
'@typescript-eslint/type-utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10089
10085
|
dependencies:
|
|
10090
|
-
'@typescript-eslint/types': 8.62.
|
|
10091
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
10092
|
-
'@typescript-eslint/utils': 8.62.
|
|
10086
|
+
'@typescript-eslint/types': 8.62.1
|
|
10087
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10088
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
10093
10089
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10094
|
-
eslint: 10.
|
|
10090
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10095
10091
|
ts-api-utils: 2.5.0(typescript@5.9.3)
|
|
10096
10092
|
typescript: 5.9.3
|
|
10097
10093
|
transitivePeerDependencies:
|
|
10098
10094
|
- supports-color
|
|
10099
10095
|
|
|
10100
|
-
'@typescript-eslint/types@8.62.
|
|
10096
|
+
'@typescript-eslint/types@8.62.1': {}
|
|
10101
10097
|
|
|
10102
|
-
'@typescript-eslint/typescript-estree@8.62.
|
|
10098
|
+
'@typescript-eslint/typescript-estree@8.62.1(supports-color@10.2.2)(typescript@5.9.3)':
|
|
10103
10099
|
dependencies:
|
|
10104
|
-
'@typescript-eslint/project-service': 8.62.
|
|
10105
|
-
'@typescript-eslint/tsconfig-utils': 8.62.
|
|
10106
|
-
'@typescript-eslint/types': 8.62.
|
|
10107
|
-
'@typescript-eslint/visitor-keys': 8.62.
|
|
10100
|
+
'@typescript-eslint/project-service': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10101
|
+
'@typescript-eslint/tsconfig-utils': 8.62.1(typescript@5.9.3)
|
|
10102
|
+
'@typescript-eslint/types': 8.62.1
|
|
10103
|
+
'@typescript-eslint/visitor-keys': 8.62.1
|
|
10108
10104
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10109
10105
|
minimatch: 10.2.5
|
|
10110
10106
|
semver: 7.8.5
|
|
@@ -10114,20 +10110,20 @@ snapshots:
|
|
|
10114
10110
|
transitivePeerDependencies:
|
|
10115
10111
|
- supports-color
|
|
10116
10112
|
|
|
10117
|
-
'@typescript-eslint/utils@8.62.
|
|
10113
|
+
'@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)':
|
|
10118
10114
|
dependencies:
|
|
10119
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
10120
|
-
'@typescript-eslint/scope-manager': 8.62.
|
|
10121
|
-
'@typescript-eslint/types': 8.62.
|
|
10122
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
10123
|
-
eslint: 10.
|
|
10115
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
10116
|
+
'@typescript-eslint/scope-manager': 8.62.1
|
|
10117
|
+
'@typescript-eslint/types': 8.62.1
|
|
10118
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
10119
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
10124
10120
|
typescript: 5.9.3
|
|
10125
10121
|
transitivePeerDependencies:
|
|
10126
10122
|
- supports-color
|
|
10127
10123
|
|
|
10128
|
-
'@typescript-eslint/visitor-keys@8.62.
|
|
10124
|
+
'@typescript-eslint/visitor-keys@8.62.1':
|
|
10129
10125
|
dependencies:
|
|
10130
|
-
'@typescript-eslint/types': 8.62.
|
|
10126
|
+
'@typescript-eslint/types': 8.62.1
|
|
10131
10127
|
eslint-visitor-keys: 5.0.1
|
|
10132
10128
|
|
|
10133
10129
|
'@typescript/native-preview-darwin-arm64@7.0.0-dev.20260624.1':
|
|
@@ -10249,7 +10245,7 @@ snapshots:
|
|
|
10249
10245
|
|
|
10250
10246
|
'@vue/devtools-api@6.6.4': {}
|
|
10251
10247
|
|
|
10252
|
-
'@vue/language-core@3.3.
|
|
10248
|
+
'@vue/language-core@3.3.6':
|
|
10253
10249
|
dependencies:
|
|
10254
10250
|
'@volar/language-core': 2.4.28
|
|
10255
10251
|
'@vue/compiler-dom': 3.5.13
|
|
@@ -10317,7 +10313,7 @@ snapshots:
|
|
|
10317
10313
|
ajv@8.20.0:
|
|
10318
10314
|
dependencies:
|
|
10319
10315
|
fast-deep-equal: 3.1.3
|
|
10320
|
-
fast-uri: 3.1.
|
|
10316
|
+
fast-uri: 3.1.3
|
|
10321
10317
|
json-schema-traverse: 1.0.0
|
|
10322
10318
|
require-from-string: 2.0.2
|
|
10323
10319
|
|
|
@@ -10394,7 +10390,7 @@ snapshots:
|
|
|
10394
10390
|
|
|
10395
10391
|
asynckit@0.4.0: {}
|
|
10396
10392
|
|
|
10397
|
-
autoprefixer@10.5.
|
|
10393
|
+
autoprefixer@10.5.2(postcss@8.5.15):
|
|
10398
10394
|
dependencies:
|
|
10399
10395
|
browserslist: 4.28.4
|
|
10400
10396
|
caniuse-lite: 1.0.30001799
|
|
@@ -10432,7 +10428,7 @@ snapshots:
|
|
|
10432
10428
|
|
|
10433
10429
|
bare-events@2.9.1: {}
|
|
10434
10430
|
|
|
10435
|
-
bare-fs@4.7.
|
|
10431
|
+
bare-fs@4.7.3:
|
|
10436
10432
|
dependencies:
|
|
10437
10433
|
bare-events: 2.9.1
|
|
10438
10434
|
bare-path: 3.0.1
|
|
@@ -10443,11 +10439,11 @@ snapshots:
|
|
|
10443
10439
|
- bare-abort-controller
|
|
10444
10440
|
- react-native-b4a
|
|
10445
10441
|
|
|
10446
|
-
bare-os@3.9.
|
|
10442
|
+
bare-os@3.9.3: {}
|
|
10447
10443
|
|
|
10448
10444
|
bare-path@3.0.1:
|
|
10449
10445
|
dependencies:
|
|
10450
|
-
bare-os: 3.9.
|
|
10446
|
+
bare-os: 3.9.3
|
|
10451
10447
|
|
|
10452
10448
|
bare-stream@2.13.3(bare-events@2.9.1):
|
|
10453
10449
|
dependencies:
|
|
@@ -10484,7 +10480,7 @@ snapshots:
|
|
|
10484
10480
|
content-type: 2.0.0
|
|
10485
10481
|
debug: 4.4.3(supports-color@10.2.2)
|
|
10486
10482
|
http-errors: 2.0.1
|
|
10487
|
-
iconv-lite: 0.7.
|
|
10483
|
+
iconv-lite: 0.7.3
|
|
10488
10484
|
on-finished: 2.4.1
|
|
10489
10485
|
qs: 6.15.2
|
|
10490
10486
|
raw-body: 3.0.2
|
|
@@ -10565,10 +10561,10 @@ snapshots:
|
|
|
10565
10561
|
|
|
10566
10562
|
cac@7.0.0: {}
|
|
10567
10563
|
|
|
10568
|
-
cacheable@2.
|
|
10564
|
+
cacheable@2.5.0:
|
|
10569
10565
|
dependencies:
|
|
10570
|
-
'@cacheable/memory': 2.0
|
|
10571
|
-
'@cacheable/utils': 2.
|
|
10566
|
+
'@cacheable/memory': 2.2.0
|
|
10567
|
+
'@cacheable/utils': 2.5.0
|
|
10572
10568
|
hookified: 1.15.1
|
|
10573
10569
|
keyv: 5.6.0
|
|
10574
10570
|
qified: 0.10.1
|
|
@@ -10750,7 +10746,7 @@ snapshots:
|
|
|
10750
10746
|
|
|
10751
10747
|
compressible@2.0.18:
|
|
10752
10748
|
dependencies:
|
|
10753
|
-
mime-db: 1.
|
|
10749
|
+
mime-db: 1.52.0
|
|
10754
10750
|
|
|
10755
10751
|
compressing@1.10.5:
|
|
10756
10752
|
dependencies:
|
|
@@ -10784,7 +10780,7 @@ snapshots:
|
|
|
10784
10780
|
date-fns: 2.30.0
|
|
10785
10781
|
lodash: 4.18.1
|
|
10786
10782
|
rxjs: 7.8.2
|
|
10787
|
-
shell-quote: 1.
|
|
10783
|
+
shell-quote: 1.9.0
|
|
10788
10784
|
spawn-command: 0.0.2
|
|
10789
10785
|
supports-color: 8.1.1
|
|
10790
10786
|
tree-kill: 1.2.2
|
|
@@ -10879,7 +10875,7 @@ snapshots:
|
|
|
10879
10875
|
dependencies:
|
|
10880
10876
|
csstype: 2.6.21
|
|
10881
10877
|
|
|
10882
|
-
daisyui@5.
|
|
10878
|
+
daisyui@5.6.13: {}
|
|
10883
10879
|
|
|
10884
10880
|
dargs@7.0.0: {}
|
|
10885
10881
|
|
|
@@ -10998,7 +10994,7 @@ snapshots:
|
|
|
10998
10994
|
|
|
10999
10995
|
dot-prop@10.1.0:
|
|
11000
10996
|
dependencies:
|
|
11001
|
-
type-fest: 5.
|
|
10997
|
+
type-fest: 5.8.0
|
|
11002
10998
|
|
|
11003
10999
|
dot-prop@6.0.1:
|
|
11004
11000
|
dependencies:
|
|
@@ -11245,58 +11241,58 @@ snapshots:
|
|
|
11245
11241
|
|
|
11246
11242
|
escape-string-regexp@5.0.0: {}
|
|
11247
11243
|
|
|
11248
|
-
eslint-json-compat-utils@0.2.3(@eslint/json@1.2.0)(eslint@10.
|
|
11244
|
+
eslint-json-compat-utils@0.2.3(@eslint/json@1.2.0)(eslint@10.6.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0):
|
|
11249
11245
|
dependencies:
|
|
11250
|
-
eslint: 10.
|
|
11246
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11251
11247
|
esquery: 1.7.0
|
|
11252
11248
|
jsonc-eslint-parser: 3.1.0
|
|
11253
11249
|
optionalDependencies:
|
|
11254
11250
|
'@eslint/json': 1.2.0
|
|
11255
11251
|
|
|
11256
|
-
eslint-plugin-antfu@3.2.3(eslint@10.
|
|
11252
|
+
eslint-plugin-antfu@3.2.3(eslint@10.6.0(jiti@2.7.0)):
|
|
11257
11253
|
dependencies:
|
|
11258
|
-
eslint: 10.
|
|
11254
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11259
11255
|
|
|
11260
|
-
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.62.
|
|
11256
|
+
eslint-plugin-command@3.5.2(@typescript-eslint/rule-tester@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(@typescript-eslint/typescript-estree@8.62.1(typescript@5.9.3))(@typescript-eslint/utils@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0)):
|
|
11261
11257
|
dependencies:
|
|
11262
11258
|
'@es-joy/jsdoccomment': 0.84.0
|
|
11263
|
-
'@typescript-eslint/rule-tester': 8.62.
|
|
11264
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
11265
|
-
'@typescript-eslint/utils': 8.62.
|
|
11266
|
-
eslint: 10.
|
|
11259
|
+
'@typescript-eslint/rule-tester': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11260
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
11261
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11262
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11267
11263
|
|
|
11268
|
-
eslint-plugin-depend@1.5.0(eslint@10.
|
|
11264
|
+
eslint-plugin-depend@1.5.0(eslint@10.6.0(jiti@2.7.0)):
|
|
11269
11265
|
dependencies:
|
|
11270
11266
|
empathic: 2.0.1
|
|
11271
|
-
eslint: 10.
|
|
11267
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11272
11268
|
module-replacements: 2.11.0
|
|
11273
11269
|
semver: 7.8.5
|
|
11274
11270
|
|
|
11275
|
-
eslint-plugin-eslint-comments@3.2.0(eslint@10.
|
|
11271
|
+
eslint-plugin-eslint-comments@3.2.0(eslint@10.6.0(jiti@2.7.0)):
|
|
11276
11272
|
dependencies:
|
|
11277
11273
|
escape-string-regexp: 1.0.5
|
|
11278
|
-
eslint: 10.
|
|
11274
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11279
11275
|
ignore: 5.3.2
|
|
11280
11276
|
|
|
11281
|
-
eslint-plugin-jsonc@3.2.0(@eslint/json@1.2.0)(eslint@10.
|
|
11277
|
+
eslint-plugin-jsonc@3.2.0(@eslint/json@1.2.0)(eslint@10.6.0(jiti@2.7.0)):
|
|
11282
11278
|
dependencies:
|
|
11283
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11279
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
11284
11280
|
'@eslint/core': 1.2.1
|
|
11285
11281
|
'@eslint/plugin-kit': 0.7.2
|
|
11286
11282
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11287
11283
|
diff-sequences: 29.6.3
|
|
11288
|
-
eslint: 10.
|
|
11289
|
-
eslint-json-compat-utils: 0.2.3(@eslint/json@1.2.0)(eslint@10.
|
|
11284
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11285
|
+
eslint-json-compat-utils: 0.2.3(@eslint/json@1.2.0)(eslint@10.6.0(jiti@2.7.0))(jsonc-eslint-parser@3.1.0)
|
|
11290
11286
|
jsonc-eslint-parser: 3.1.0
|
|
11291
11287
|
natural-compare: 1.4.0
|
|
11292
11288
|
synckit: 0.11.13
|
|
11293
11289
|
transitivePeerDependencies:
|
|
11294
11290
|
- '@eslint/json'
|
|
11295
11291
|
|
|
11296
|
-
eslint-plugin-pnpm@1.6.1(eslint@10.
|
|
11292
|
+
eslint-plugin-pnpm@1.6.1(eslint@10.6.0(jiti@2.7.0)):
|
|
11297
11293
|
dependencies:
|
|
11298
11294
|
empathic: 2.0.1
|
|
11299
|
-
eslint: 10.
|
|
11295
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11300
11296
|
jsonc-eslint-parser: 3.1.0
|
|
11301
11297
|
pathe: 2.0.3
|
|
11302
11298
|
pnpm-workspace-yaml: 1.6.1
|
|
@@ -11304,56 +11300,56 @@ snapshots:
|
|
|
11304
11300
|
yaml: 2.9.0
|
|
11305
11301
|
yaml-eslint-parser: 2.0.0
|
|
11306
11302
|
|
|
11307
|
-
eslint-plugin-regexp@3.1.
|
|
11303
|
+
eslint-plugin-regexp@3.1.1(eslint@10.6.0(jiti@2.7.0)):
|
|
11308
11304
|
dependencies:
|
|
11309
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11305
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
11310
11306
|
'@eslint-community/regexpp': 4.12.2
|
|
11311
11307
|
comment-parser: 1.4.7
|
|
11312
|
-
eslint: 10.
|
|
11308
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11313
11309
|
jsdoc-type-pratt-parser: 7.2.0
|
|
11314
11310
|
refa: 0.12.1
|
|
11315
11311
|
regexp-ast-analysis: 0.7.1
|
|
11316
11312
|
scslre: 0.3.0
|
|
11317
11313
|
|
|
11318
|
-
eslint-plugin-toml@1.4.0(eslint@10.
|
|
11314
|
+
eslint-plugin-toml@1.4.0(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2):
|
|
11319
11315
|
dependencies:
|
|
11320
11316
|
'@eslint/core': 1.2.1
|
|
11321
11317
|
'@eslint/plugin-kit': 0.7.2
|
|
11322
11318
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11323
11319
|
debug: 4.4.3(supports-color@10.2.2)
|
|
11324
|
-
eslint: 10.
|
|
11320
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11325
11321
|
toml-eslint-parser: 1.0.3
|
|
11326
11322
|
transitivePeerDependencies:
|
|
11327
11323
|
- supports-color
|
|
11328
11324
|
|
|
11329
|
-
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.62.
|
|
11325
|
+
eslint-plugin-unused-imports@4.4.1(@typescript-eslint/eslint-plugin@8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0)):
|
|
11330
11326
|
dependencies:
|
|
11331
|
-
eslint: 10.
|
|
11327
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11332
11328
|
optionalDependencies:
|
|
11333
|
-
'@typescript-eslint/eslint-plugin': 8.62.
|
|
11329
|
+
'@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
11334
11330
|
|
|
11335
|
-
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.
|
|
11331
|
+
eslint-plugin-vue@10.9.2(@stylistic/eslint-plugin@5.10.0(eslint@10.6.0(jiti@2.7.0)))(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0))):
|
|
11336
11332
|
dependencies:
|
|
11337
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11338
|
-
eslint: 10.
|
|
11333
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
11334
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11339
11335
|
natural-compare: 1.4.0
|
|
11340
11336
|
nth-check: 2.1.1
|
|
11341
11337
|
postcss-selector-parser: 7.1.4
|
|
11342
11338
|
semver: 7.8.5
|
|
11343
|
-
vue-eslint-parser: 10.4.1(eslint@10.
|
|
11339
|
+
vue-eslint-parser: 10.4.1(eslint@10.6.0(jiti@2.7.0))
|
|
11344
11340
|
xml-name-validator: 4.0.0
|
|
11345
11341
|
optionalDependencies:
|
|
11346
|
-
'@stylistic/eslint-plugin': 5.10.0(eslint@10.
|
|
11347
|
-
'@typescript-eslint/parser': 8.62.
|
|
11342
|
+
'@stylistic/eslint-plugin': 5.10.0(eslint@10.6.0(jiti@2.7.0))
|
|
11343
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
11348
11344
|
|
|
11349
|
-
eslint-plugin-yml@3.5.0(eslint@10.
|
|
11345
|
+
eslint-plugin-yml@3.5.0(eslint@10.6.0(jiti@2.7.0)):
|
|
11350
11346
|
dependencies:
|
|
11351
11347
|
'@eslint/core': 1.2.1
|
|
11352
11348
|
'@eslint/plugin-kit': 0.7.2
|
|
11353
11349
|
'@ota-meshi/ast-token-store': 0.3.0
|
|
11354
11350
|
diff-sequences: 29.6.3
|
|
11355
11351
|
escape-string-regexp: 5.0.0
|
|
11356
|
-
eslint: 10.
|
|
11352
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
11357
11353
|
natural-compare: 1.4.0
|
|
11358
11354
|
yaml-eslint-parser: 2.0.0
|
|
11359
11355
|
|
|
@@ -11370,9 +11366,9 @@ snapshots:
|
|
|
11370
11366
|
|
|
11371
11367
|
eslint-visitor-keys@5.0.1: {}
|
|
11372
11368
|
|
|
11373
|
-
eslint@10.
|
|
11369
|
+
eslint@10.6.0(jiti@2.7.0):
|
|
11374
11370
|
dependencies:
|
|
11375
|
-
'@eslint-community/eslint-utils': 4.9.1(eslint@10.
|
|
11371
|
+
'@eslint-community/eslint-utils': 4.9.1(eslint@10.6.0(jiti@2.7.0))
|
|
11376
11372
|
'@eslint-community/regexpp': 4.12.2
|
|
11377
11373
|
'@eslint/config-array': 0.23.5
|
|
11378
11374
|
'@eslint/config-helpers': 0.6.0
|
|
@@ -11485,7 +11481,7 @@ snapshots:
|
|
|
11485
11481
|
parseurl: 1.3.3
|
|
11486
11482
|
proxy-addr: 2.0.7
|
|
11487
11483
|
qs: 6.15.2
|
|
11488
|
-
range-parser: 1.
|
|
11484
|
+
range-parser: 1.3.0
|
|
11489
11485
|
router: 2.2.0(supports-color@10.2.2)
|
|
11490
11486
|
send: 1.2.1(supports-color@10.2.2)
|
|
11491
11487
|
serve-static: 2.2.1
|
|
@@ -11521,7 +11517,7 @@ snapshots:
|
|
|
11521
11517
|
dependencies:
|
|
11522
11518
|
fast-string-truncated-width: 3.0.3
|
|
11523
11519
|
|
|
11524
|
-
fast-uri@3.1.
|
|
11520
|
+
fast-uri@3.1.3: {}
|
|
11525
11521
|
|
|
11526
11522
|
fast-wrap-ansi@0.2.2:
|
|
11527
11523
|
dependencies:
|
|
@@ -11551,7 +11547,7 @@ snapshots:
|
|
|
11551
11547
|
|
|
11552
11548
|
file-entry-cache@10.1.4:
|
|
11553
11549
|
dependencies:
|
|
11554
|
-
flat-cache: 6.1.
|
|
11550
|
+
flat-cache: 6.1.23
|
|
11555
11551
|
|
|
11556
11552
|
file-entry-cache@8.0.0:
|
|
11557
11553
|
dependencies:
|
|
@@ -11600,9 +11596,9 @@ snapshots:
|
|
|
11600
11596
|
flatted: 3.4.2
|
|
11601
11597
|
keyv: 4.5.4
|
|
11602
11598
|
|
|
11603
|
-
flat-cache@6.1.
|
|
11599
|
+
flat-cache@6.1.23:
|
|
11604
11600
|
dependencies:
|
|
11605
|
-
cacheable: 2.
|
|
11601
|
+
cacheable: 2.5.0
|
|
11606
11602
|
flatted: 3.4.2
|
|
11607
11603
|
hookified: 1.15.1
|
|
11608
11604
|
|
|
@@ -11853,7 +11849,7 @@ snapshots:
|
|
|
11853
11849
|
dependencies:
|
|
11854
11850
|
safer-buffer: 2.1.2
|
|
11855
11851
|
|
|
11856
|
-
iconv-lite@0.7.
|
|
11852
|
+
iconv-lite@0.7.3:
|
|
11857
11853
|
dependencies:
|
|
11858
11854
|
safer-buffer: 2.1.2
|
|
11859
11855
|
|
|
@@ -12090,10 +12086,6 @@ snapshots:
|
|
|
12090
12086
|
dependencies:
|
|
12091
12087
|
argparse: 2.0.1
|
|
12092
12088
|
|
|
12093
|
-
js-yaml@4.2.0:
|
|
12094
|
-
dependencies:
|
|
12095
|
-
argparse: 2.0.1
|
|
12096
|
-
|
|
12097
12089
|
jsdoc-type-pratt-parser@7.1.1: {}
|
|
12098
12090
|
|
|
12099
12091
|
jsdoc-type-pratt-parser@7.2.0: {}
|
|
@@ -12933,27 +12925,27 @@ snapshots:
|
|
|
12933
12925
|
'@oxfmt/binding-win32-ia32-msvc': 0.45.0
|
|
12934
12926
|
'@oxfmt/binding-win32-x64-msvc': 0.45.0
|
|
12935
12927
|
|
|
12936
|
-
oxlint@1.
|
|
12928
|
+
oxlint@1.72.0:
|
|
12937
12929
|
optionalDependencies:
|
|
12938
|
-
'@oxlint/binding-android-arm-eabi': 1.
|
|
12939
|
-
'@oxlint/binding-android-arm64': 1.
|
|
12940
|
-
'@oxlint/binding-darwin-arm64': 1.
|
|
12941
|
-
'@oxlint/binding-darwin-x64': 1.
|
|
12942
|
-
'@oxlint/binding-freebsd-x64': 1.
|
|
12943
|
-
'@oxlint/binding-linux-arm-gnueabihf': 1.
|
|
12944
|
-
'@oxlint/binding-linux-arm-musleabihf': 1.
|
|
12945
|
-
'@oxlint/binding-linux-arm64-gnu': 1.
|
|
12946
|
-
'@oxlint/binding-linux-arm64-musl': 1.
|
|
12947
|
-
'@oxlint/binding-linux-ppc64-gnu': 1.
|
|
12948
|
-
'@oxlint/binding-linux-riscv64-gnu': 1.
|
|
12949
|
-
'@oxlint/binding-linux-riscv64-musl': 1.
|
|
12950
|
-
'@oxlint/binding-linux-s390x-gnu': 1.
|
|
12951
|
-
'@oxlint/binding-linux-x64-gnu': 1.
|
|
12952
|
-
'@oxlint/binding-linux-x64-musl': 1.
|
|
12953
|
-
'@oxlint/binding-openharmony-arm64': 1.
|
|
12954
|
-
'@oxlint/binding-win32-arm64-msvc': 1.
|
|
12955
|
-
'@oxlint/binding-win32-ia32-msvc': 1.
|
|
12956
|
-
'@oxlint/binding-win32-x64-msvc': 1.
|
|
12930
|
+
'@oxlint/binding-android-arm-eabi': 1.72.0
|
|
12931
|
+
'@oxlint/binding-android-arm64': 1.72.0
|
|
12932
|
+
'@oxlint/binding-darwin-arm64': 1.72.0
|
|
12933
|
+
'@oxlint/binding-darwin-x64': 1.72.0
|
|
12934
|
+
'@oxlint/binding-freebsd-x64': 1.72.0
|
|
12935
|
+
'@oxlint/binding-linux-arm-gnueabihf': 1.72.0
|
|
12936
|
+
'@oxlint/binding-linux-arm-musleabihf': 1.72.0
|
|
12937
|
+
'@oxlint/binding-linux-arm64-gnu': 1.72.0
|
|
12938
|
+
'@oxlint/binding-linux-arm64-musl': 1.72.0
|
|
12939
|
+
'@oxlint/binding-linux-ppc64-gnu': 1.72.0
|
|
12940
|
+
'@oxlint/binding-linux-riscv64-gnu': 1.72.0
|
|
12941
|
+
'@oxlint/binding-linux-riscv64-musl': 1.72.0
|
|
12942
|
+
'@oxlint/binding-linux-s390x-gnu': 1.72.0
|
|
12943
|
+
'@oxlint/binding-linux-x64-gnu': 1.72.0
|
|
12944
|
+
'@oxlint/binding-linux-x64-musl': 1.72.0
|
|
12945
|
+
'@oxlint/binding-openharmony-arm64': 1.72.0
|
|
12946
|
+
'@oxlint/binding-win32-arm64-msvc': 1.72.0
|
|
12947
|
+
'@oxlint/binding-win32-ia32-msvc': 1.72.0
|
|
12948
|
+
'@oxlint/binding-win32-x64-msvc': 1.72.0
|
|
12957
12949
|
|
|
12958
12950
|
p-limit@2.3.0:
|
|
12959
12951
|
dependencies:
|
|
@@ -13166,10 +13158,10 @@ snapshots:
|
|
|
13166
13158
|
|
|
13167
13159
|
quansync@1.0.0: {}
|
|
13168
13160
|
|
|
13169
|
-
quasar-app-extension-zova@1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.
|
|
13161
|
+
quasar-app-extension-zova@1.3.1(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(rolldown@1.1.3)(sass-embedded@1.100.0)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0):
|
|
13170
13162
|
dependencies:
|
|
13171
13163
|
'@cabloy/module-info': 2.0.3
|
|
13172
|
-
'@quasar/app-vite': '@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.
|
|
13164
|
+
'@quasar/app-vite': '@cabloy/quasar-app-vite@2.5.10(@cabloy/vue-router@4.4.16(vue@3.5.38(typescript@5.9.3)))(@types/node@22.20.0)(eslint@10.6.0(jiti@2.7.0))(jiti@2.7.0)(quasar@2.21.0)(rolldown@1.1.3)(sass@1.101.0)(terser@5.48.0)(typescript@5.9.3)(vue@3.5.38(typescript@5.9.3))(yaml@2.9.0)'
|
|
13173
13165
|
chalk: 3.0.0
|
|
13174
13166
|
esbuild: 0.25.12
|
|
13175
13167
|
fs-extra: 11.3.5
|
|
@@ -13203,23 +13195,23 @@ snapshots:
|
|
|
13203
13195
|
- workbox-build
|
|
13204
13196
|
- yaml
|
|
13205
13197
|
|
|
13206
|
-
quasar@2.
|
|
13198
|
+
quasar@2.21.0: {}
|
|
13207
13199
|
|
|
13208
13200
|
queue-microtask@1.2.3: {}
|
|
13209
13201
|
|
|
13210
|
-
range-parser@1.
|
|
13202
|
+
range-parser@1.3.0: {}
|
|
13211
13203
|
|
|
13212
13204
|
raw-body@3.0.2:
|
|
13213
13205
|
dependencies:
|
|
13214
13206
|
bytes: 3.1.2
|
|
13215
13207
|
http-errors: 2.0.1
|
|
13216
|
-
iconv-lite: 0.7.
|
|
13208
|
+
iconv-lite: 0.7.3
|
|
13217
13209
|
unpipe: 1.0.0
|
|
13218
13210
|
|
|
13219
13211
|
rc-config-loader@4.1.4:
|
|
13220
13212
|
dependencies:
|
|
13221
13213
|
debug: 4.4.3(supports-color@10.2.2)
|
|
13222
|
-
js-yaml: 4.
|
|
13214
|
+
js-yaml: 4.1.1
|
|
13223
13215
|
json5: 2.2.3
|
|
13224
13216
|
require-from-string: 2.0.2
|
|
13225
13217
|
transitivePeerDependencies:
|
|
@@ -13342,7 +13334,7 @@ snapshots:
|
|
|
13342
13334
|
glob: 13.0.6
|
|
13343
13335
|
package-json-from-dist: 1.0.1
|
|
13344
13336
|
|
|
13345
|
-
rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.1.3)(typescript@5.9.3)(vue-tsc@3.3.
|
|
13337
|
+
rolldown-plugin-dts@0.22.5(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.1.3)(typescript@5.9.3)(vue-tsc@3.3.6(typescript@5.9.3)):
|
|
13346
13338
|
dependencies:
|
|
13347
13339
|
'@babel/generator': 8.0.0-rc.2
|
|
13348
13340
|
'@babel/helper-validator-identifier': 8.0.0-rc.2
|
|
@@ -13357,11 +13349,11 @@ snapshots:
|
|
|
13357
13349
|
optionalDependencies:
|
|
13358
13350
|
'@typescript/native-preview': 7.0.0-dev.20260624.1
|
|
13359
13351
|
typescript: 5.9.3
|
|
13360
|
-
vue-tsc: 3.3.
|
|
13352
|
+
vue-tsc: 3.3.6(typescript@5.9.3)
|
|
13361
13353
|
transitivePeerDependencies:
|
|
13362
13354
|
- oxc-resolver
|
|
13363
13355
|
|
|
13364
|
-
rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.
|
|
13356
|
+
rolldown-plugin-dts@0.23.2(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.6(typescript@5.9.3)):
|
|
13365
13357
|
dependencies:
|
|
13366
13358
|
'@babel/generator': 8.0.0-rc.3
|
|
13367
13359
|
'@babel/helper-validator-identifier': 8.0.0-rc.3
|
|
@@ -13377,7 +13369,7 @@ snapshots:
|
|
|
13377
13369
|
optionalDependencies:
|
|
13378
13370
|
'@typescript/native-preview': 7.0.0-dev.20260624.1
|
|
13379
13371
|
typescript: 5.9.3
|
|
13380
|
-
vue-tsc: 3.3.
|
|
13372
|
+
vue-tsc: 3.3.6(typescript@5.9.3)
|
|
13381
13373
|
transitivePeerDependencies:
|
|
13382
13374
|
- oxc-resolver
|
|
13383
13375
|
|
|
@@ -13600,7 +13592,7 @@ snapshots:
|
|
|
13600
13592
|
mime-types: 3.0.2
|
|
13601
13593
|
ms: 2.1.3
|
|
13602
13594
|
on-finished: 2.4.1
|
|
13603
|
-
range-parser: 1.
|
|
13595
|
+
range-parser: 1.3.0
|
|
13604
13596
|
statuses: 2.0.2
|
|
13605
13597
|
transitivePeerDependencies:
|
|
13606
13598
|
- supports-color
|
|
@@ -13611,7 +13603,7 @@ snapshots:
|
|
|
13611
13603
|
tslib: 2.8.1
|
|
13612
13604
|
upper-case-first: 2.0.2
|
|
13613
13605
|
|
|
13614
|
-
serialize-javascript@7.0.
|
|
13606
|
+
serialize-javascript@7.0.7: {}
|
|
13615
13607
|
|
|
13616
13608
|
serve-static@2.2.1:
|
|
13617
13609
|
dependencies:
|
|
@@ -13652,7 +13644,7 @@ snapshots:
|
|
|
13652
13644
|
|
|
13653
13645
|
shebang-regex@3.0.0: {}
|
|
13654
13646
|
|
|
13655
|
-
shell-quote@1.
|
|
13647
|
+
shell-quote@1.9.0: {}
|
|
13656
13648
|
|
|
13657
13649
|
side-channel-list@1.0.1:
|
|
13658
13650
|
dependencies:
|
|
@@ -13847,7 +13839,7 @@ snapshots:
|
|
|
13847
13839
|
|
|
13848
13840
|
tagged-tag@1.0.0: {}
|
|
13849
13841
|
|
|
13850
|
-
tailwindcss@4.3.
|
|
13842
|
+
tailwindcss@4.3.2: {}
|
|
13851
13843
|
|
|
13852
13844
|
tapable@2.3.3: {}
|
|
13853
13845
|
|
|
@@ -13864,7 +13856,7 @@ snapshots:
|
|
|
13864
13856
|
tar-stream@3.2.0:
|
|
13865
13857
|
dependencies:
|
|
13866
13858
|
b4a: 1.8.1
|
|
13867
|
-
bare-fs: 4.7.
|
|
13859
|
+
bare-fs: 4.7.3
|
|
13868
13860
|
fast-fifo: 1.3.2
|
|
13869
13861
|
streamx: 2.28.0
|
|
13870
13862
|
transitivePeerDependencies:
|
|
@@ -13995,7 +13987,7 @@ snapshots:
|
|
|
13995
13987
|
optionalDependencies:
|
|
13996
13988
|
typescript: 5.9.3
|
|
13997
13989
|
|
|
13998
|
-
tsdown@0.21.10(@typescript/native-preview@7.0.0-dev.20260624.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.
|
|
13990
|
+
tsdown@0.21.10(@typescript/native-preview@7.0.0-dev.20260624.1)(synckit@0.11.13)(typescript@5.9.3)(vue-tsc@3.3.6(typescript@5.9.3)):
|
|
13999
13991
|
dependencies:
|
|
14000
13992
|
ansis: 4.3.1
|
|
14001
13993
|
cac: 7.0.0
|
|
@@ -14006,7 +13998,7 @@ snapshots:
|
|
|
14006
13998
|
obug: 2.1.3
|
|
14007
13999
|
picomatch: 4.0.4
|
|
14008
14000
|
rolldown: 1.0.0-rc.17
|
|
14009
|
-
rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.
|
|
14001
|
+
rolldown-plugin-dts: 0.23.2(@typescript/native-preview@7.0.0-dev.20260624.1)(rolldown@1.0.0-rc.17)(typescript@5.9.3)(vue-tsc@3.3.6(typescript@5.9.3))
|
|
14010
14002
|
semver: 7.8.5
|
|
14011
14003
|
tinyexec: 1.2.4
|
|
14012
14004
|
tinyglobby: 0.2.17
|
|
@@ -14032,7 +14024,7 @@ snapshots:
|
|
|
14032
14024
|
|
|
14033
14025
|
type-fest@4.41.0: {}
|
|
14034
14026
|
|
|
14035
|
-
type-fest@5.
|
|
14027
|
+
type-fest@5.8.0:
|
|
14036
14028
|
dependencies:
|
|
14037
14029
|
tagged-tag: 1.0.0
|
|
14038
14030
|
|
|
@@ -14048,13 +14040,13 @@ snapshots:
|
|
|
14048
14040
|
es-errors: 1.3.0
|
|
14049
14041
|
is-typed-array: 1.1.15
|
|
14050
14042
|
|
|
14051
|
-
typescript-eslint@8.62.
|
|
14043
|
+
typescript-eslint@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3):
|
|
14052
14044
|
dependencies:
|
|
14053
|
-
'@typescript-eslint/eslint-plugin': 8.62.
|
|
14054
|
-
'@typescript-eslint/parser': 8.62.
|
|
14055
|
-
'@typescript-eslint/typescript-estree': 8.62.
|
|
14056
|
-
'@typescript-eslint/utils': 8.62.
|
|
14057
|
-
eslint: 10.
|
|
14045
|
+
'@typescript-eslint/eslint-plugin': 8.62.1(@typescript-eslint/parser@8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3))(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14046
|
+
'@typescript-eslint/parser': 8.62.1(eslint@10.6.0(jiti@2.7.0))(supports-color@10.2.2)(typescript@5.9.3)
|
|
14047
|
+
'@typescript-eslint/typescript-estree': 8.62.1(supports-color@10.2.2)(typescript@5.9.3)
|
|
14048
|
+
'@typescript-eslint/utils': 8.62.1(eslint@10.6.0(jiti@2.7.0))(typescript@5.9.3)
|
|
14049
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
14058
14050
|
typescript: 5.9.3
|
|
14059
14051
|
transitivePeerDependencies:
|
|
14060
14052
|
- supports-color
|
|
@@ -14264,10 +14256,10 @@ snapshots:
|
|
|
14264
14256
|
dependencies:
|
|
14265
14257
|
vue: 3.5.38(typescript@5.9.3)
|
|
14266
14258
|
|
|
14267
|
-
vue-eslint-parser@10.4.1(eslint@10.
|
|
14259
|
+
vue-eslint-parser@10.4.1(eslint@10.6.0(jiti@2.7.0)):
|
|
14268
14260
|
dependencies:
|
|
14269
14261
|
debug: 4.4.3(supports-color@10.2.2)
|
|
14270
|
-
eslint: 10.
|
|
14262
|
+
eslint: 10.6.0(jiti@2.7.0)
|
|
14271
14263
|
eslint-scope: 9.1.2
|
|
14272
14264
|
eslint-visitor-keys: 5.0.1
|
|
14273
14265
|
espree: 11.2.0
|
|
@@ -14280,10 +14272,10 @@ snapshots:
|
|
|
14280
14272
|
dependencies:
|
|
14281
14273
|
vue: 3.5.38(typescript@5.9.3)
|
|
14282
14274
|
|
|
14283
|
-
vue-tsc@3.3.
|
|
14275
|
+
vue-tsc@3.3.6(typescript@5.9.3):
|
|
14284
14276
|
dependencies:
|
|
14285
14277
|
'@volar/typescript': 2.4.28
|
|
14286
|
-
'@vue/language-core': 3.3.
|
|
14278
|
+
'@vue/language-core': 3.3.6
|
|
14287
14279
|
typescript: 5.9.3
|
|
14288
14280
|
|
|
14289
14281
|
vue3-browser-compiler-yx@1.0.4(vue@3.5.38(typescript@5.9.3)):
|