cabloy 5.1.50 → 5.1.51
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/.claude/skills/cabloy-backend-scaffold/SKILL.md +207 -0
- package/.claude/skills/cabloy-backend-scaffold/evals/evals.json +29 -0
- package/.claude/skills/cabloy-backend-scaffold/references/backend-thread-map.md +52 -0
- package/.claude/skills/cabloy-backend-scaffold/references/follow-up-checklist.md +39 -0
- package/.claude/skills/cabloy-contract-loop/SKILL.md +201 -0
- package/.claude/skills/cabloy-contract-loop/evals/evals.json +29 -0
- package/.claude/skills/cabloy-contract-loop/references/contract-loop-map.md +47 -0
- package/.claude/skills/cabloy-contract-loop/references/verification-checklist.md +32 -0
- package/.claude/skills/cabloy-frontend-scaffold/SKILL.md +230 -0
- package/.claude/skills/cabloy-frontend-scaffold/evals/evals.json +35 -0
- package/.claude/skills/cabloy-frontend-scaffold/references/follow-up-checklist.md +41 -0
- package/.claude/skills/cabloy-frontend-scaffold/references/frontend-thread-map.md +54 -0
- package/.claude/skills/cabloy-workflow/SKILL.md +288 -0
- package/.claude/skills/cabloy-workflow/evals/evals.json +35 -0
- package/.claude/skills/cabloy-workflow/references/cli-strategy.md +39 -0
- package/.claude/skills/cabloy-workflow/references/edition-detection.md +29 -0
- package/.github/workflows/docs-pages.yml +54 -0
- package/.gitignore +1 -0
- package/CHANGELOG.md +29 -0
- package/CLAUDE.md +59 -0
- package/README.md +137 -0
- package/cabloy-docs/.vitepress/config.mjs +222 -0
- package/cabloy-docs/.vitepress/public/CNAME +1 -0
- package/cabloy-docs/.vitepress/theme/custom.css +64 -0
- package/cabloy-docs/.vitepress/theme/edition-badges.md +5 -0
- package/cabloy-docs/.vitepress/theme/index.js +5 -0
- package/cabloy-docs/ai/class-placement-rule.md +138 -0
- package/cabloy-docs/ai/cli-for-agents.md +56 -0
- package/cabloy-docs/ai/cli-to-skill-map.md +165 -0
- package/cabloy-docs/ai/docs-skills-rules-mapping.md +167 -0
- package/cabloy-docs/ai/edition-detection.md +30 -0
- package/cabloy-docs/ai/future-skill-roadmap.md +135 -0
- package/cabloy-docs/ai/global-bean-lookup.md +157 -0
- package/cabloy-docs/ai/introduction.md +62 -0
- package/cabloy-docs/ai/playbook-backend-module.md +111 -0
- package/cabloy-docs/ai/playbook-contract-regeneration.md +100 -0
- package/cabloy-docs/ai/playbook-frontend-page.md +99 -0
- package/cabloy-docs/ai/playbook-metadata-refresh.md +67 -0
- package/cabloy-docs/ai/repo-guidance.md +58 -0
- package/cabloy-docs/ai/rules-and-config.md +29 -0
- package/cabloy-docs/ai/skills.md +35 -0
- package/cabloy-docs/ai/verification.md +30 -0
- package/cabloy-docs/backend/aop-overview.md +128 -0
- package/cabloy-docs/backend/auth-guide.md +151 -0
- package/cabloy-docs/backend/backend-essentials.md +128 -0
- package/cabloy-docs/backend/broadcast-guide.md +138 -0
- package/cabloy-docs/backend/cache-guide.md +70 -0
- package/cabloy-docs/backend/captcha-guide.md +162 -0
- package/cabloy-docs/backend/cli.md +173 -0
- package/cabloy-docs/backend/config-guide.md +249 -0
- package/cabloy-docs/backend/controller-aop-guide.md +270 -0
- package/cabloy-docs/backend/controller-guide.md +347 -0
- package/cabloy-docs/backend/crud-workflow.md +118 -0
- package/cabloy-docs/backend/dto-guide.md +161 -0
- package/cabloy-docs/backend/dto-infer-generation.md +153 -0
- package/cabloy-docs/backend/dynamic-datasource-guide.md +70 -0
- package/cabloy-docs/backend/election-guide.md +141 -0
- package/cabloy-docs/backend/entity-guide.md +150 -0
- package/cabloy-docs/backend/error-guide.md +108 -0
- package/cabloy-docs/backend/event-guide.md +183 -0
- package/cabloy-docs/backend/external-aop-guide.md +149 -0
- package/cabloy-docs/backend/field-indexes.md +79 -0
- package/cabloy-docs/backend/foundation.md +281 -0
- package/cabloy-docs/backend/i18n-guide.md +211 -0
- package/cabloy-docs/backend/internal-aop-guide.md +181 -0
- package/cabloy-docs/backend/introduction.md +95 -0
- package/cabloy-docs/backend/jwt-guide.md +276 -0
- package/cabloy-docs/backend/logger-guide.md +223 -0
- package/cabloy-docs/backend/mail-guide.md +189 -0
- package/cabloy-docs/backend/menu-guide.md +80 -0
- package/cabloy-docs/backend/migration-and-changes.md +192 -0
- package/cabloy-docs/backend/model-guide.md +274 -0
- package/cabloy-docs/backend/multi-database-datasource.md +171 -0
- package/cabloy-docs/backend/multi-instance-and-instance-resolution.md +196 -0
- package/cabloy-docs/backend/openapi-guide.md +118 -0
- package/cabloy-docs/backend/orm-aggregate-group-guide.md +210 -0
- package/cabloy-docs/backend/orm-configuration-guide.md +165 -0
- package/cabloy-docs/backend/orm-guide.md +109 -0
- package/cabloy-docs/backend/orm-mutation-guide.md +195 -0
- package/cabloy-docs/backend/orm-select-guide.md +243 -0
- package/cabloy-docs/backend/queue-guide.md +271 -0
- package/cabloy-docs/backend/quickstart.md +141 -0
- package/cabloy-docs/backend/redis-guide.md +70 -0
- package/cabloy-docs/backend/redlock-guide.md +60 -0
- package/cabloy-docs/backend/relations-guide.md +250 -0
- package/cabloy-docs/backend/runtime-and-flavors.md +304 -0
- package/cabloy-docs/backend/schedule-guide.md +81 -0
- package/cabloy-docs/backend/scripts.md +116 -0
- package/cabloy-docs/backend/serialization-guide.md +192 -0
- package/cabloy-docs/backend/service-guide.md +166 -0
- package/cabloy-docs/backend/sharding-guide.md +49 -0
- package/cabloy-docs/backend/startup-guide.md +326 -0
- package/cabloy-docs/backend/transaction-guide.md +82 -0
- package/cabloy-docs/backend/unit-testing.md +209 -0
- package/cabloy-docs/backend/upload-guide.md +160 -0
- package/cabloy-docs/backend/user-access-guide.md +157 -0
- package/cabloy-docs/backend/validation-guide.md +80 -0
- package/cabloy-docs/backend/worker-guide.md +59 -0
- package/cabloy-docs/editions/cabloy-basic.md +25 -0
- package/cabloy-docs/editions/cabloy-start.md +24 -0
- package/cabloy-docs/editions/detection.md +31 -0
- package/cabloy-docs/editions/overview.md +44 -0
- package/cabloy-docs/frontend/api-guide.md +93 -0
- package/cabloy-docs/frontend/api-schema-guide.md +43 -0
- package/cabloy-docs/frontend/app-startup-guide.md +185 -0
- package/cabloy-docs/frontend/cli.md +78 -0
- package/cabloy-docs/frontend/component-guide.md +105 -0
- package/cabloy-docs/frontend/component-props-guide.md +97 -0
- package/cabloy-docs/frontend/component-v-model-guide.md +110 -0
- package/cabloy-docs/frontend/css-in-js-guide.md +151 -0
- package/cabloy-docs/frontend/design-principles.md +55 -0
- package/cabloy-docs/frontend/environment-config-guide.md +250 -0
- package/cabloy-docs/frontend/foundation.md +57 -0
- package/cabloy-docs/frontend/generic-component-guide.md +35 -0
- package/cabloy-docs/frontend/icon-engine-guide.md +88 -0
- package/cabloy-docs/frontend/introduction.md +32 -0
- package/cabloy-docs/frontend/ioc-and-beans.md +211 -0
- package/cabloy-docs/frontend/mock-guide.md +109 -0
- package/cabloy-docs/frontend/model-architecture.md +87 -0
- package/cabloy-docs/frontend/model-state-guide.md +70 -0
- package/cabloy-docs/frontend/module-scope.md +168 -0
- package/cabloy-docs/frontend/modules-and-suites.md +179 -0
- package/cabloy-docs/frontend/navigation-guards-guide.md +68 -0
- package/cabloy-docs/frontend/openapi-sdk-guide.md +102 -0
- package/cabloy-docs/frontend/page-guide.md +223 -0
- package/cabloy-docs/frontend/page-params-guide.md +87 -0
- package/cabloy-docs/frontend/page-query-guide.md +96 -0
- package/cabloy-docs/frontend/page-route-guide.md +147 -0
- package/cabloy-docs/frontend/quickstart.md +201 -0
- package/cabloy-docs/frontend/route-alias-guide.md +61 -0
- package/cabloy-docs/frontend/scripts.md +86 -0
- package/cabloy-docs/frontend/sdk-guide.md +45 -0
- package/cabloy-docs/frontend/server-data.md +74 -0
- package/cabloy-docs/frontend/ssr-client-only.md +40 -0
- package/cabloy-docs/frontend/ssr-env.md +51 -0
- package/cabloy-docs/frontend/ssr-init-data.md +46 -0
- package/cabloy-docs/frontend/ssr-overview.md +48 -0
- package/cabloy-docs/frontend/ssr-seo-meta.md +52 -0
- package/cabloy-docs/frontend/system-startup-guide.md +186 -0
- package/cabloy-docs/frontend/theme-guide.md +154 -0
- package/cabloy-docs/frontend/zod-guide.md +161 -0
- package/cabloy-docs/fullstack/edition-collaboration-differences.md +61 -0
- package/cabloy-docs/fullstack/frontend-metadata-to-backend.md +64 -0
- package/cabloy-docs/fullstack/introduction.md +69 -0
- package/cabloy-docs/fullstack/openapi-to-sdk.md +116 -0
- package/cabloy-docs/fullstack/quickstart.md +86 -0
- package/cabloy-docs/fullstack/vona-zova-integration.md +86 -0
- package/cabloy-docs/index.md +73 -0
- package/cabloy-docs/package.json +16 -0
- package/cabloy-docs/pnpm-lock.yaml +1607 -0
- package/cabloy-docs/reference/backend-directory-structure.md +88 -0
- package/cabloy-docs/reference/cli-reference.md +49 -0
- package/cabloy-docs/reference/glossary.md +38 -0
- package/cabloy-docs/reference/package-map.md +105 -0
- package/cabloy-docs/reference/repo-scripts.md +36 -0
- package/package.json +4 -1
- package/scripts/init.ts +12 -0
- package/scripts/upgrade.ts +31 -3
- package/vona/README.md +3 -3
- package/vona/README.zh-CN.md +4 -4
- package/vona/packages-vona/vona/package.json +1 -1
- package/vona/src/suite-vendor/a-cabloy/modules/a-datasharding/package.json +1 -1
- package/vona/src/suite-vendor/a-cabloy/modules/a-datasharding/src/bean/summerCache.datasourceWrite.ts +2 -2
- package/vona/src/suite-vendor/a-cabloy/package.json +1 -1
- package/vona/src/suite-vendor/a-captcha/modules/a-captcha/package.json +1 -1
- package/vona/src/suite-vendor/a-captcha/modules/a-captcha/src/bean/cacheRedis.captcha.ts +2 -2
- package/vona/src/suite-vendor/a-captcha/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-bean/cli/bean/metadata/generate.ts +5 -6
- package/vona/src/suite-vendor/a-vona/modules/a-bean/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-cache/cli/cacheMem/boilerplate/{{sceneName}}.{{beanName}}.ts_ +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-cache/cli/cacheRedis/boilerplate/{{sceneName}}.{{beanName}}.ts_ +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-cache/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-cache/src/.metadata/index.ts +13 -2
- package/vona/src/suite-vendor/a-vona/modules/a-cache/src/bean/bean.cache.ts +6 -7
- package/vona/src/suite-vendor/a-vona/modules/a-cache/src/{bean/bean.cacheMemBase.ts → service/cacheMemBase_.ts} +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-cache/src/{bean/bean.cacheRedisBase.ts → service/cacheRedisBase_.ts} +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-mailconfirm/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-mailconfirm/src/bean/cacheRedis.emailConfirm.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-mailconfirm/src/bean/cacheRedis.passwordReset.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-openapi/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-openapi/src/bean/summerCache.json.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-orm/cli/databaseDialect/boilerplate/{{sceneName}}.{{beanName}}.ts_ +2 -2
- 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/.metadata/index.ts +4 -3
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/bean/bean.database.ts +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/bean/bean.model.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/bean/schedule.softDeletionPrune.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/common/utils.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/index.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.model/bean.model_cache.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.model/bean.model_meta.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.modelBase.ts +0 -5
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoAggregate.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoCreate.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoGet.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoGroup.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoMutate.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoSelectAndCount.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/dto/dtoUpdate.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/index.ts +1 -0
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/modelCacheBase.ts +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/relations.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/relationsDynamic.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/relationsMutate.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/lib/relationsStatic.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/service/cacheEntity_.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/service/cacheQuery_.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/service/database.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean/bean.databaseDialectBase.ts → service/databaseDialectBase_.ts} +38 -41
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/service/db_.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/service/relations_.ts +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/database.ts +0 -5
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/dto/dtoGet.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/dto/dtoMutate.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/dto/dtoSelectAndCount.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/model.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/modelAggr.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/modelCount.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/modelGeneral.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/modelGroup.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/modelIncrement.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/relations.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/relationsColumns.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/relationsDef.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/relationsDefDynamic.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/relationsDefMutate.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/relationsMutate.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-orm/src/types/relationsTables.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-ormdialect/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-ormdialect/src/bean/databaseDialect.betterSqlite3.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-ormdialect/src/bean/databaseDialect.mysql.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-ormdialect/src/bean/databaseDialect.pg.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-permission/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-permission/src/bean/bean.permission.ts +109 -40
- package/vona/src/suite-vendor/a-vona/modules/a-permission/src/bean/summerCache.permission.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-startup/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-startup/src/bean/cacheRedis.startupDebounce.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-summer/cli/boilerplate/{{sceneName}}.{{beanName}}.ts_ +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-summer/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-summer/src/.metadata/index.ts +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-summer/src/bean/bean.summer.ts +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-summer/src/service/localMem_.ts +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-summer/src/service/localRedis_.ts +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-summer/src/{bean/bean.summerCacheBase.ts → service/summerCacheBase_.ts} +3 -3
- package/vona/src/suite-vendor/a-vona/modules/a-swagger/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-swagger/src/bean/summerCache.rapidoc.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-swagger/src/bean/summerCache.swagger.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-user/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-user/src/bean/cacheRedis.authToken.ts +2 -2
- package/vona/src/suite-vendor/a-vona/modules/a-worker/package.json +1 -1
- package/vona/src/suite-vendor/a-vona/modules/a-worker/src/bean/cacheRedis.workerAlive.ts +2 -2
- package/vona/src/suite-vendor/a-vona/package.json +1 -1
- package/zova/README.md +4 -4
- package/zova/README.zh-CN.md +4 -4
- /package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.model/bean.model_crud.ts +0 -0
- /package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.model/bean.model_crud_inner.ts +0 -0
- /package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.model/bean.model_crud_table.ts +0 -0
- /package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.model/bean.model_knex.ts +0 -0
- /package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.model/bean.model_utils.ts +0 -0
- /package/vona/src/suite-vendor/a-vona/modules/a-orm/src/{bean → lib}/bean.model/bean.model_view.ts +0 -0
|
@@ -0,0 +1,1607 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
devDependencies:
|
|
11
|
+
vitepress:
|
|
12
|
+
specifier: ^1.6.4
|
|
13
|
+
version: 1.6.4(@algolia/client-search@5.53.0)(postcss@8.5.15)(search-insights@2.17.3)
|
|
14
|
+
|
|
15
|
+
packages:
|
|
16
|
+
|
|
17
|
+
'@algolia/abtesting@1.19.0':
|
|
18
|
+
resolution: {integrity: sha512-Lhnez3hhXHk25lfxLAMxvkP4fmN3+1RgADhD2ssMDBYuAsDVReeyP+3SGRx+ntq8ijMrLqUyfvO72TB6jsTteQ==}
|
|
19
|
+
engines: {node: '>= 14.0.0'}
|
|
20
|
+
|
|
21
|
+
'@algolia/autocomplete-core@1.17.7':
|
|
22
|
+
resolution: {integrity: sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==}
|
|
23
|
+
|
|
24
|
+
'@algolia/autocomplete-plugin-algolia-insights@1.17.7':
|
|
25
|
+
resolution: {integrity: sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==}
|
|
26
|
+
peerDependencies:
|
|
27
|
+
search-insights: '>= 1 < 3'
|
|
28
|
+
|
|
29
|
+
'@algolia/autocomplete-preset-algolia@1.17.7':
|
|
30
|
+
resolution: {integrity: sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==}
|
|
31
|
+
peerDependencies:
|
|
32
|
+
'@algolia/client-search': '>= 4.9.1 < 6'
|
|
33
|
+
algoliasearch: '>= 4.9.1 < 6'
|
|
34
|
+
|
|
35
|
+
'@algolia/autocomplete-shared@1.17.7':
|
|
36
|
+
resolution: {integrity: sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==}
|
|
37
|
+
peerDependencies:
|
|
38
|
+
'@algolia/client-search': '>= 4.9.1 < 6'
|
|
39
|
+
algoliasearch: '>= 4.9.1 < 6'
|
|
40
|
+
|
|
41
|
+
'@algolia/client-abtesting@5.53.0':
|
|
42
|
+
resolution: {integrity: sha512-0ZjA5Hcmaoz5Lj6OG0zhfIyeqzJZnLW2CRJA1W17UwMFGRtZAJ9yJKRvPEDA6gkpsIoQxORTSW6sWFiuYncPNQ==}
|
|
43
|
+
engines: {node: '>= 14.0.0'}
|
|
44
|
+
|
|
45
|
+
'@algolia/client-analytics@5.53.0':
|
|
46
|
+
resolution: {integrity: sha512-kWNodP75iiEaOtemC9F/hlxNBG5E2QUjN1BusnE6m2b4l7Qh/BUO3fGCVsmKJI65VO4VKGGmT43ICvHtTcJ2JQ==}
|
|
47
|
+
engines: {node: '>= 14.0.0'}
|
|
48
|
+
|
|
49
|
+
'@algolia/client-common@5.53.0':
|
|
50
|
+
resolution: {integrity: sha512-YPN45TXD9Wrse185t/Ta7nktZsqpv97oOjCzp2sblHnCL6rBc9TDeJAg1IGl2UpdwnSD05Zu/5wLB4watOUMyg==}
|
|
51
|
+
engines: {node: '>= 14.0.0'}
|
|
52
|
+
|
|
53
|
+
'@algolia/client-insights@5.53.0':
|
|
54
|
+
resolution: {integrity: sha512-qAcYTDJE6m924FDDUQvdD6vh7DYaqOeSpFS74IP37/JRV0v4cGBauyxTF2WzDnokUylQDbqreoFIJZfg0Fitmw==}
|
|
55
|
+
engines: {node: '>= 14.0.0'}
|
|
56
|
+
|
|
57
|
+
'@algolia/client-personalization@5.53.0':
|
|
58
|
+
resolution: {integrity: sha512-fQaY+DkSJOpuUVUe8MQTwrdiKAqkJGhpDarB08duBn/sUv7Bkib6MDRQauCcWTWTe4HIW+EbwQP9R4kci1V/Yw==}
|
|
59
|
+
engines: {node: '>= 14.0.0'}
|
|
60
|
+
|
|
61
|
+
'@algolia/client-query-suggestions@5.53.0':
|
|
62
|
+
resolution: {integrity: sha512-o72tsiEZGfeS/dxL9IADfzcZWGEwKDEe5CvtrBuT//3JR+SHuTtHRI2ZTf7D7bcKagcbojvO8hnkHdfoakSlYg==}
|
|
63
|
+
engines: {node: '>= 14.0.0'}
|
|
64
|
+
|
|
65
|
+
'@algolia/client-search@5.53.0':
|
|
66
|
+
resolution: {integrity: sha512-Ds16IyPm/dNJPCU8OzApo2gwGrgWT5BYHhE3NFwZbpCveqyvPDB9sZDDkJ5DsdOGT2aC+R3i0/M1OVXF2qdgPg==}
|
|
67
|
+
engines: {node: '>= 14.0.0'}
|
|
68
|
+
|
|
69
|
+
'@algolia/ingestion@1.53.0':
|
|
70
|
+
resolution: {integrity: sha512-oNbT6z4NwD8Pou9VPINGlN/tlG1afESh2EbxqnP6rwl95xKVD/Zlciis1PpNeO/9U/rrajc1+7DcfKi03tX1KQ==}
|
|
71
|
+
engines: {node: '>= 14.0.0'}
|
|
72
|
+
|
|
73
|
+
'@algolia/monitoring@1.53.0':
|
|
74
|
+
resolution: {integrity: sha512-G+KZb/yd+qAOFn/cEvTGeLxQm8aP3a0od50l3z/ylccY+/o4YG3TNcjU1tFQHW4mXC137GPyR7W70R0kRQDLnA==}
|
|
75
|
+
engines: {node: '>= 14.0.0'}
|
|
76
|
+
|
|
77
|
+
'@algolia/recommend@5.53.0':
|
|
78
|
+
resolution: {integrity: sha512-6aVfYd55Un6IUgPLbo84WfgFZlS3L0vA1ttzXL5vahHewUJ8jYgd89TzlWRTeej7w70mb9RWsVlFYGmJ/diQww==}
|
|
79
|
+
engines: {node: '>= 14.0.0'}
|
|
80
|
+
|
|
81
|
+
'@algolia/requester-browser-xhr@5.53.0':
|
|
82
|
+
resolution: {integrity: sha512-ke27DqgzCOlt+RbeEdCxtXxMQOnAOi8ujr2wid0DmDKzR95Kw/f9sBsuhBxtjevCqJRJszfRTLY0B1pbO6IhkA==}
|
|
83
|
+
engines: {node: '>= 14.0.0'}
|
|
84
|
+
|
|
85
|
+
'@algolia/requester-fetch@5.53.0':
|
|
86
|
+
resolution: {integrity: sha512-GngiOqt2Gq4oLno6yXQVj9om+qSO9SWAoduoTOEg79dKZ62brB8OOIvSJG/vDNoanYi6a7Al9uDZwXvi+bcVTg==}
|
|
87
|
+
engines: {node: '>= 14.0.0'}
|
|
88
|
+
|
|
89
|
+
'@algolia/requester-node-http@5.53.0':
|
|
90
|
+
resolution: {integrity: sha512-6mF9LZMUk0QqWvrnxkxBqhswwz6Xfiwy6/gmTzL5HrlhdVG3ITAqGV2k3XmVThP1h0Ulc3VQwiNCD7/Nr4JNlQ==}
|
|
91
|
+
engines: {node: '>= 14.0.0'}
|
|
92
|
+
|
|
93
|
+
'@babel/helper-string-parser@7.29.7':
|
|
94
|
+
resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==}
|
|
95
|
+
engines: {node: '>=6.9.0'}
|
|
96
|
+
|
|
97
|
+
'@babel/helper-validator-identifier@7.29.7':
|
|
98
|
+
resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==}
|
|
99
|
+
engines: {node: '>=6.9.0'}
|
|
100
|
+
|
|
101
|
+
'@babel/parser@7.29.7':
|
|
102
|
+
resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==}
|
|
103
|
+
engines: {node: '>=6.0.0'}
|
|
104
|
+
hasBin: true
|
|
105
|
+
|
|
106
|
+
'@babel/types@7.29.7':
|
|
107
|
+
resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==}
|
|
108
|
+
engines: {node: '>=6.9.0'}
|
|
109
|
+
|
|
110
|
+
'@docsearch/css@3.8.2':
|
|
111
|
+
resolution: {integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==}
|
|
112
|
+
|
|
113
|
+
'@docsearch/js@3.8.2':
|
|
114
|
+
resolution: {integrity: sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==}
|
|
115
|
+
|
|
116
|
+
'@docsearch/react@3.8.2':
|
|
117
|
+
resolution: {integrity: sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==}
|
|
118
|
+
peerDependencies:
|
|
119
|
+
'@types/react': '>= 16.8.0 < 19.0.0'
|
|
120
|
+
react: '>= 16.8.0 < 19.0.0'
|
|
121
|
+
react-dom: '>= 16.8.0 < 19.0.0'
|
|
122
|
+
search-insights: '>= 1 < 3'
|
|
123
|
+
peerDependenciesMeta:
|
|
124
|
+
'@types/react':
|
|
125
|
+
optional: true
|
|
126
|
+
react:
|
|
127
|
+
optional: true
|
|
128
|
+
react-dom:
|
|
129
|
+
optional: true
|
|
130
|
+
search-insights:
|
|
131
|
+
optional: true
|
|
132
|
+
|
|
133
|
+
'@esbuild/aix-ppc64@0.21.5':
|
|
134
|
+
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
|
|
135
|
+
engines: {node: '>=12'}
|
|
136
|
+
cpu: [ppc64]
|
|
137
|
+
os: [aix]
|
|
138
|
+
|
|
139
|
+
'@esbuild/android-arm64@0.21.5':
|
|
140
|
+
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
|
|
141
|
+
engines: {node: '>=12'}
|
|
142
|
+
cpu: [arm64]
|
|
143
|
+
os: [android]
|
|
144
|
+
|
|
145
|
+
'@esbuild/android-arm@0.21.5':
|
|
146
|
+
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
|
|
147
|
+
engines: {node: '>=12'}
|
|
148
|
+
cpu: [arm]
|
|
149
|
+
os: [android]
|
|
150
|
+
|
|
151
|
+
'@esbuild/android-x64@0.21.5':
|
|
152
|
+
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
|
|
153
|
+
engines: {node: '>=12'}
|
|
154
|
+
cpu: [x64]
|
|
155
|
+
os: [android]
|
|
156
|
+
|
|
157
|
+
'@esbuild/darwin-arm64@0.21.5':
|
|
158
|
+
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
|
|
159
|
+
engines: {node: '>=12'}
|
|
160
|
+
cpu: [arm64]
|
|
161
|
+
os: [darwin]
|
|
162
|
+
|
|
163
|
+
'@esbuild/darwin-x64@0.21.5':
|
|
164
|
+
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
|
|
165
|
+
engines: {node: '>=12'}
|
|
166
|
+
cpu: [x64]
|
|
167
|
+
os: [darwin]
|
|
168
|
+
|
|
169
|
+
'@esbuild/freebsd-arm64@0.21.5':
|
|
170
|
+
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
|
|
171
|
+
engines: {node: '>=12'}
|
|
172
|
+
cpu: [arm64]
|
|
173
|
+
os: [freebsd]
|
|
174
|
+
|
|
175
|
+
'@esbuild/freebsd-x64@0.21.5':
|
|
176
|
+
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
|
|
177
|
+
engines: {node: '>=12'}
|
|
178
|
+
cpu: [x64]
|
|
179
|
+
os: [freebsd]
|
|
180
|
+
|
|
181
|
+
'@esbuild/linux-arm64@0.21.5':
|
|
182
|
+
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
|
|
183
|
+
engines: {node: '>=12'}
|
|
184
|
+
cpu: [arm64]
|
|
185
|
+
os: [linux]
|
|
186
|
+
|
|
187
|
+
'@esbuild/linux-arm@0.21.5':
|
|
188
|
+
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
|
|
189
|
+
engines: {node: '>=12'}
|
|
190
|
+
cpu: [arm]
|
|
191
|
+
os: [linux]
|
|
192
|
+
|
|
193
|
+
'@esbuild/linux-ia32@0.21.5':
|
|
194
|
+
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
|
|
195
|
+
engines: {node: '>=12'}
|
|
196
|
+
cpu: [ia32]
|
|
197
|
+
os: [linux]
|
|
198
|
+
|
|
199
|
+
'@esbuild/linux-loong64@0.21.5':
|
|
200
|
+
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
|
|
201
|
+
engines: {node: '>=12'}
|
|
202
|
+
cpu: [loong64]
|
|
203
|
+
os: [linux]
|
|
204
|
+
|
|
205
|
+
'@esbuild/linux-mips64el@0.21.5':
|
|
206
|
+
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
|
|
207
|
+
engines: {node: '>=12'}
|
|
208
|
+
cpu: [mips64el]
|
|
209
|
+
os: [linux]
|
|
210
|
+
|
|
211
|
+
'@esbuild/linux-ppc64@0.21.5':
|
|
212
|
+
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
|
|
213
|
+
engines: {node: '>=12'}
|
|
214
|
+
cpu: [ppc64]
|
|
215
|
+
os: [linux]
|
|
216
|
+
|
|
217
|
+
'@esbuild/linux-riscv64@0.21.5':
|
|
218
|
+
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
|
|
219
|
+
engines: {node: '>=12'}
|
|
220
|
+
cpu: [riscv64]
|
|
221
|
+
os: [linux]
|
|
222
|
+
|
|
223
|
+
'@esbuild/linux-s390x@0.21.5':
|
|
224
|
+
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
|
|
225
|
+
engines: {node: '>=12'}
|
|
226
|
+
cpu: [s390x]
|
|
227
|
+
os: [linux]
|
|
228
|
+
|
|
229
|
+
'@esbuild/linux-x64@0.21.5':
|
|
230
|
+
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
|
|
231
|
+
engines: {node: '>=12'}
|
|
232
|
+
cpu: [x64]
|
|
233
|
+
os: [linux]
|
|
234
|
+
|
|
235
|
+
'@esbuild/netbsd-x64@0.21.5':
|
|
236
|
+
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
|
|
237
|
+
engines: {node: '>=12'}
|
|
238
|
+
cpu: [x64]
|
|
239
|
+
os: [netbsd]
|
|
240
|
+
|
|
241
|
+
'@esbuild/openbsd-x64@0.21.5':
|
|
242
|
+
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
|
|
243
|
+
engines: {node: '>=12'}
|
|
244
|
+
cpu: [x64]
|
|
245
|
+
os: [openbsd]
|
|
246
|
+
|
|
247
|
+
'@esbuild/sunos-x64@0.21.5':
|
|
248
|
+
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
|
|
249
|
+
engines: {node: '>=12'}
|
|
250
|
+
cpu: [x64]
|
|
251
|
+
os: [sunos]
|
|
252
|
+
|
|
253
|
+
'@esbuild/win32-arm64@0.21.5':
|
|
254
|
+
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
|
|
255
|
+
engines: {node: '>=12'}
|
|
256
|
+
cpu: [arm64]
|
|
257
|
+
os: [win32]
|
|
258
|
+
|
|
259
|
+
'@esbuild/win32-ia32@0.21.5':
|
|
260
|
+
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
|
|
261
|
+
engines: {node: '>=12'}
|
|
262
|
+
cpu: [ia32]
|
|
263
|
+
os: [win32]
|
|
264
|
+
|
|
265
|
+
'@esbuild/win32-x64@0.21.5':
|
|
266
|
+
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
|
|
267
|
+
engines: {node: '>=12'}
|
|
268
|
+
cpu: [x64]
|
|
269
|
+
os: [win32]
|
|
270
|
+
|
|
271
|
+
'@iconify-json/simple-icons@1.2.85':
|
|
272
|
+
resolution: {integrity: sha512-Hp5LXvd3LRk+e+1558wtonA7c1Z0/Phmi7xCqpgtb8bs8cuyGnP34GDbt5uhhUXxKlzacnnhAcXgcDxe9bUa1w==}
|
|
273
|
+
|
|
274
|
+
'@iconify/types@2.0.0':
|
|
275
|
+
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
|
|
276
|
+
|
|
277
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
278
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
279
|
+
|
|
280
|
+
'@rollup/rollup-android-arm-eabi@4.61.1':
|
|
281
|
+
resolution: {integrity: sha512-JnBB8MdXj45cajvTuO5FmPlvFVJRQgvrz1uSEl3NwqFnReAPGwb8EanbGi4z2nRaqLzjJSv5/JmycoTKlRZxHA==}
|
|
282
|
+
cpu: [arm]
|
|
283
|
+
os: [android]
|
|
284
|
+
|
|
285
|
+
'@rollup/rollup-android-arm64@4.61.1':
|
|
286
|
+
resolution: {integrity: sha512-Jx2g7iSjw4AOT0HDPHM9RV3GNjRXwybWtSFZiZAYUTjUwjVrYIwq3kBf+LnhqJlzXFAqTAh2F7IGI+O568exPw==}
|
|
287
|
+
cpu: [arm64]
|
|
288
|
+
os: [android]
|
|
289
|
+
|
|
290
|
+
'@rollup/rollup-darwin-arm64@4.61.1':
|
|
291
|
+
resolution: {integrity: sha512-0F1L/Z3Eqv8mT2n3dCpeO8GcTvHvVqkP5/t6DMsn0KzhYVcg+s7Ncl5DS8qjKYEeio6Az0Gt6nyBORay5qIlCA==}
|
|
292
|
+
cpu: [arm64]
|
|
293
|
+
os: [darwin]
|
|
294
|
+
|
|
295
|
+
'@rollup/rollup-darwin-x64@4.61.1':
|
|
296
|
+
resolution: {integrity: sha512-qLttcH871ujY4YcVfUSShhOw+CsoTatYz8gRbHO7Bb92QH059/P0y5do1KMs41fY0BpD2x4AJH/gID0zFiqVKQ==}
|
|
297
|
+
cpu: [x64]
|
|
298
|
+
os: [darwin]
|
|
299
|
+
|
|
300
|
+
'@rollup/rollup-freebsd-arm64@4.61.1':
|
|
301
|
+
resolution: {integrity: sha512-fUI4RapGE0Oh3mb8mgfvC1O2nU1RpDZUKnDQm3xB1Ipg7C2wTs5Kstz7G2uWK99a8S2yTMq8/P4uycwNa0nJyw==}
|
|
302
|
+
cpu: [arm64]
|
|
303
|
+
os: [freebsd]
|
|
304
|
+
|
|
305
|
+
'@rollup/rollup-freebsd-x64@4.61.1':
|
|
306
|
+
resolution: {integrity: sha512-H5YrdvJaDtI/U9/emrD4b++xkvp3y/JvOe4rizHbxvkyMfRS/CiRYdji+Pl8D0brEaNFWUh1drQxgAGIl6Xudw==}
|
|
307
|
+
cpu: [x64]
|
|
308
|
+
os: [freebsd]
|
|
309
|
+
|
|
310
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.61.1':
|
|
311
|
+
resolution: {integrity: sha512-Q8CBCCQtDFrYtXoeUXSrnFXKOnyUhx6bz+SkL6A0E7V8kAiCJ5pamq1WtbfpVGhR5TSpXY6ak3avmDc5fHTyJA==}
|
|
312
|
+
cpu: [arm]
|
|
313
|
+
os: [linux]
|
|
314
|
+
|
|
315
|
+
'@rollup/rollup-linux-arm-musleabihf@4.61.1':
|
|
316
|
+
resolution: {integrity: sha512-nwnhk1581l0FBVellGcVCAT0Oi06onEA3WB53sf01VO3I0UPBkMH9sXONYME2K0ovXcNayJfNtHfm6mpJElatQ==}
|
|
317
|
+
cpu: [arm]
|
|
318
|
+
os: [linux]
|
|
319
|
+
|
|
320
|
+
'@rollup/rollup-linux-arm64-gnu@4.61.1':
|
|
321
|
+
resolution: {integrity: sha512-x5Xr49hwt3hdW75UOZm3395YwwzPyauktslv29KpWL/T+vVAzoT3azLcTWv0eMciBNrx+DYjH4paehHoLpPvpg==}
|
|
322
|
+
cpu: [arm64]
|
|
323
|
+
os: [linux]
|
|
324
|
+
|
|
325
|
+
'@rollup/rollup-linux-arm64-musl@4.61.1':
|
|
326
|
+
resolution: {integrity: sha512-unMS3H73DpaoPyyEVPjGKleM/s0mkmsauTENpw4INQY8y4+IuLNjkueQ5QCtC0D3N38Y38yhAU8OoZ20S2Tm6w==}
|
|
327
|
+
cpu: [arm64]
|
|
328
|
+
os: [linux]
|
|
329
|
+
|
|
330
|
+
'@rollup/rollup-linux-loong64-gnu@4.61.1':
|
|
331
|
+
resolution: {integrity: sha512-zNZzGRnAhwjFEYmvphJRV5XaQGjs62cCmeYYHUT//NbvEnHauw+I85nGG+SiVg5ld4GX8D1IbKIX+ozITQnhMQ==}
|
|
332
|
+
cpu: [loong64]
|
|
333
|
+
os: [linux]
|
|
334
|
+
|
|
335
|
+
'@rollup/rollup-linux-loong64-musl@4.61.1':
|
|
336
|
+
resolution: {integrity: sha512-LdpWGL8X209B2SIvWjqlc8VZgM6PKfontSerGepuldQmHYrAOtnMCXeJkxXGbC+PPZVOuu5czJo7fNV6aeW8rQ==}
|
|
337
|
+
cpu: [loong64]
|
|
338
|
+
os: [linux]
|
|
339
|
+
|
|
340
|
+
'@rollup/rollup-linux-ppc64-gnu@4.61.1':
|
|
341
|
+
resolution: {integrity: sha512-EC5kTtNaNGOmbMGqar8dvJy6y/hg99GAwjfBz++pxZhQATXGcRjd6c5en5wcbru0vkRmiMGsQKdMJOOf6sza4g==}
|
|
342
|
+
cpu: [ppc64]
|
|
343
|
+
os: [linux]
|
|
344
|
+
|
|
345
|
+
'@rollup/rollup-linux-ppc64-musl@4.61.1':
|
|
346
|
+
resolution: {integrity: sha512-8hiwp6D4acEcNK78I4rP0/XtS1sknWIAMJBPdR4l6zUtyTm5KiTDr5bXmWt4foY7nAN7AThDHgkLIEZOWKbzWw==}
|
|
347
|
+
cpu: [ppc64]
|
|
348
|
+
os: [linux]
|
|
349
|
+
|
|
350
|
+
'@rollup/rollup-linux-riscv64-gnu@4.61.1':
|
|
351
|
+
resolution: {integrity: sha512-10dh/h/BqA7DuMPWSxkR8uks18FRwnwOEqr5zOTEl+NOwP/OMzKX8OFR/Of9xxDA7D5qef1Nzar5WDD2kCCr1g==}
|
|
352
|
+
cpu: [riscv64]
|
|
353
|
+
os: [linux]
|
|
354
|
+
|
|
355
|
+
'@rollup/rollup-linux-riscv64-musl@4.61.1':
|
|
356
|
+
resolution: {integrity: sha512-YKJ5lg35DP17gcAOggnihe+APw9HLyj1Xn7gsmGumBJAUDa6NGXNixJzmkWLhcK9TOuuyQjdamzvJefkO7qHZQ==}
|
|
357
|
+
cpu: [riscv64]
|
|
358
|
+
os: [linux]
|
|
359
|
+
|
|
360
|
+
'@rollup/rollup-linux-s390x-gnu@4.61.1':
|
|
361
|
+
resolution: {integrity: sha512-Mlil5G2Jj6a7B3LWGctg+XPL9vdXYuzCtNXfxOQ0nPjc2m6ueUktocPGH9bnAM0bNRKb/bAWTujUU7IJQdQA+g==}
|
|
362
|
+
cpu: [s390x]
|
|
363
|
+
os: [linux]
|
|
364
|
+
|
|
365
|
+
'@rollup/rollup-linux-x64-gnu@4.61.1':
|
|
366
|
+
resolution: {integrity: sha512-bVWIOIk6pV01p4CdUbPP7CJ/434z+OooYjDuFcR+44N35YvKUC66G8MGnvcWx5mWKW3g61J+t74l3Kj15Kwn2Q==}
|
|
367
|
+
cpu: [x64]
|
|
368
|
+
os: [linux]
|
|
369
|
+
|
|
370
|
+
'@rollup/rollup-linux-x64-musl@4.61.1':
|
|
371
|
+
resolution: {integrity: sha512-qy5pBvZbqNFheBz61R1rzsezjm0J7O2oNGoWtGoY89SZYLUfxAJTBAqDChqAIdB4rCiIbi9nF7yZ83GnNiLwSw==}
|
|
372
|
+
cpu: [x64]
|
|
373
|
+
os: [linux]
|
|
374
|
+
|
|
375
|
+
'@rollup/rollup-openbsd-x64@4.61.1':
|
|
376
|
+
resolution: {integrity: sha512-E83TXjI4zm0+5f2qO+UOudaCYIhYwpJ5jq6YCZNIZ+6CbfhKrkAGezeiASBL9ElxAxFsRS9ZhESv8mfnj6TKeg==}
|
|
377
|
+
cpu: [x64]
|
|
378
|
+
os: [openbsd]
|
|
379
|
+
|
|
380
|
+
'@rollup/rollup-openharmony-arm64@4.61.1':
|
|
381
|
+
resolution: {integrity: sha512-fbWnKqVkjrJN38vNe3ahkbk6iejS/3b0Nt7EEtPpE6RBacZcGXNKbzfHN3GUUlXOPghUg0j6XUGrtjX9z1sIvA==}
|
|
382
|
+
cpu: [arm64]
|
|
383
|
+
os: [openharmony]
|
|
384
|
+
|
|
385
|
+
'@rollup/rollup-win32-arm64-msvc@4.61.1':
|
|
386
|
+
resolution: {integrity: sha512-ArMl38iVAbk0New1ogihQNY6iphLi4ZaRsa037gUzv5yeKPY8TD3Dmy4x2RNC1VztU/uqm+G+/RwFrSka3Oy2g==}
|
|
387
|
+
cpu: [arm64]
|
|
388
|
+
os: [win32]
|
|
389
|
+
|
|
390
|
+
'@rollup/rollup-win32-ia32-msvc@4.61.1':
|
|
391
|
+
resolution: {integrity: sha512-0mYtjHS9ucAbcATycCNK9IGBk/cCe/ma7EmSLGZdsxnOA8cjRIyU04wDpVAD9NiOfLUR9KTxdiO53uOkherqjQ==}
|
|
392
|
+
cpu: [ia32]
|
|
393
|
+
os: [win32]
|
|
394
|
+
|
|
395
|
+
'@rollup/rollup-win32-x64-gnu@4.61.1':
|
|
396
|
+
resolution: {integrity: sha512-gK1iCEPfpoSG9wfBihXxvBMi8ZfcWffYkEsC/Eih+iFENTaewvNcrEQ69lIOWYO5pePHKLHHO7nq5AILGO/HQQ==}
|
|
397
|
+
cpu: [x64]
|
|
398
|
+
os: [win32]
|
|
399
|
+
|
|
400
|
+
'@rollup/rollup-win32-x64-msvc@4.61.1':
|
|
401
|
+
resolution: {integrity: sha512-X+zaP2x+j4RXGfbp/seSoRHWnPxzApilDszisZxbYH5C/jTxFhCtDNdPGZb9lJyYPs24wGxruPF7Y+sIXt9Gzw==}
|
|
402
|
+
cpu: [x64]
|
|
403
|
+
os: [win32]
|
|
404
|
+
|
|
405
|
+
'@shikijs/core@2.5.0':
|
|
406
|
+
resolution: {integrity: sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==}
|
|
407
|
+
|
|
408
|
+
'@shikijs/engine-javascript@2.5.0':
|
|
409
|
+
resolution: {integrity: sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==}
|
|
410
|
+
|
|
411
|
+
'@shikijs/engine-oniguruma@2.5.0':
|
|
412
|
+
resolution: {integrity: sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==}
|
|
413
|
+
|
|
414
|
+
'@shikijs/langs@2.5.0':
|
|
415
|
+
resolution: {integrity: sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==}
|
|
416
|
+
|
|
417
|
+
'@shikijs/themes@2.5.0':
|
|
418
|
+
resolution: {integrity: sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==}
|
|
419
|
+
|
|
420
|
+
'@shikijs/transformers@2.5.0':
|
|
421
|
+
resolution: {integrity: sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==}
|
|
422
|
+
|
|
423
|
+
'@shikijs/types@2.5.0':
|
|
424
|
+
resolution: {integrity: sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==}
|
|
425
|
+
|
|
426
|
+
'@shikijs/vscode-textmate@10.0.2':
|
|
427
|
+
resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==}
|
|
428
|
+
|
|
429
|
+
'@types/estree@1.0.9':
|
|
430
|
+
resolution: {integrity: sha512-GhdPgy1el4/ImP05X05Uw4cw2/M93BCUmnEvWZNStlCzEKME4Fkk+YpoA5OiHNQmoS7Cafb8Xa3Pya8m1Qrzeg==}
|
|
431
|
+
|
|
432
|
+
'@types/hast@3.0.4':
|
|
433
|
+
resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
|
|
434
|
+
|
|
435
|
+
'@types/linkify-it@5.0.0':
|
|
436
|
+
resolution: {integrity: sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==}
|
|
437
|
+
|
|
438
|
+
'@types/markdown-it@14.1.2':
|
|
439
|
+
resolution: {integrity: sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==}
|
|
440
|
+
|
|
441
|
+
'@types/mdast@4.0.4':
|
|
442
|
+
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
|
|
443
|
+
|
|
444
|
+
'@types/mdurl@2.0.0':
|
|
445
|
+
resolution: {integrity: sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==}
|
|
446
|
+
|
|
447
|
+
'@types/unist@3.0.3':
|
|
448
|
+
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
|
|
449
|
+
|
|
450
|
+
'@types/web-bluetooth@0.0.21':
|
|
451
|
+
resolution: {integrity: sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==}
|
|
452
|
+
|
|
453
|
+
'@ungap/structured-clone@1.3.1':
|
|
454
|
+
resolution: {integrity: sha512-mUFwbeTqrVgDQxFveS+df2yfap6iuP20NAKAsBt5jDEoOTDew+zwLAOilHCeQJOVSvmgCX4ogqIrA0mnyr08yQ==}
|
|
455
|
+
|
|
456
|
+
'@vitejs/plugin-vue@5.2.4':
|
|
457
|
+
resolution: {integrity: sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==}
|
|
458
|
+
engines: {node: ^18.0.0 || >=20.0.0}
|
|
459
|
+
peerDependencies:
|
|
460
|
+
vite: ^5.0.0 || ^6.0.0
|
|
461
|
+
vue: ^3.2.25
|
|
462
|
+
|
|
463
|
+
'@vue/compiler-core@3.5.35':
|
|
464
|
+
resolution: {integrity: sha512-BUmHaR1J+O+CKZ9uJucdVTEr1LHsdyvv7vG3eNRhK3CczEHeMd/LtsHAuD7PbrxvI2envCY2v7HI1vC1aBRzKw==}
|
|
465
|
+
|
|
466
|
+
'@vue/compiler-dom@3.5.35':
|
|
467
|
+
resolution: {integrity: sha512-k+bprkXxuqhVajgTx5mUHuir7TwQzUKOWR40ng1ncAqQRPnrLngGGgqVEEhOnTMlc8btHYVKmrP8s5Qyg0hvYA==}
|
|
468
|
+
|
|
469
|
+
'@vue/compiler-sfc@3.5.35':
|
|
470
|
+
resolution: {integrity: sha512-G5VPMcXTSywXBgtFOZOnHKBxKSrwXUcvY1iaF5/hRcy7t0J6CH/d8ha9F4nzi00Fax1eLV0QHM7v4mQu68jydw==}
|
|
471
|
+
|
|
472
|
+
'@vue/compiler-ssr@3.5.35':
|
|
473
|
+
resolution: {integrity: sha512-rGhAeXgdM7/ffTJGXT69rCCdTmjDewnFuUZfBQQHTdcEBeWdT5HCGY60y2ytLJr9/Dsu7IntUi5z/w0h6Rjnzw==}
|
|
474
|
+
|
|
475
|
+
'@vue/devtools-api@7.7.9':
|
|
476
|
+
resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
|
|
477
|
+
|
|
478
|
+
'@vue/devtools-kit@7.7.9':
|
|
479
|
+
resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
|
|
480
|
+
|
|
481
|
+
'@vue/devtools-shared@7.7.9':
|
|
482
|
+
resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
|
|
483
|
+
|
|
484
|
+
'@vue/reactivity@3.5.35':
|
|
485
|
+
resolution: {integrity: sha512-tVc+SsHConvh/Lz64qq1pP3rYArBmK42xonovEcxY74SQtvctZodG/zhq54P5dr38cVuw25d27cPNRdlMidpGQ==}
|
|
486
|
+
|
|
487
|
+
'@vue/runtime-core@3.5.35':
|
|
488
|
+
resolution: {integrity: sha512-A/xFNX9loIcWDygeQuNCfKuh0CoYBzxhqEMNah5TSFg9Z53DrFYEN2qi5CU9necjM1OWYegYREUTHmXTmhfXtg==}
|
|
489
|
+
|
|
490
|
+
'@vue/runtime-dom@3.5.35':
|
|
491
|
+
resolution: {integrity: sha512-odrJ1C391dbGnyDRh8U+rnP7J2amIEzfmRk5vXy7xi3aZhEXofTvpi0T4HJb6jlNqQZTNPR5MPHSB3RHNkIORA==}
|
|
492
|
+
|
|
493
|
+
'@vue/server-renderer@3.5.35':
|
|
494
|
+
resolution: {integrity: sha512-NkebSOYdB97wi8OQcO3HqzZSlymJi/aWsN/7h74OSVhRTm6qGs3Jp3e0rCXynmWwSlKeRrnlIug+ilYoHBmQDA==}
|
|
495
|
+
peerDependencies:
|
|
496
|
+
vue: 3.5.35
|
|
497
|
+
|
|
498
|
+
'@vue/shared@3.5.35':
|
|
499
|
+
resolution: {integrity: sha512-zSbjL7gRXwks2ZQLRGCajBtBXEOXW9Ddhn/HvSdrGkE2dqGnumzW8XtusRrxrE9LvqtiqDXQ+A60Hp6mvdYxfA==}
|
|
500
|
+
|
|
501
|
+
'@vueuse/core@12.8.2':
|
|
502
|
+
resolution: {integrity: sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==}
|
|
503
|
+
|
|
504
|
+
'@vueuse/integrations@12.8.2':
|
|
505
|
+
resolution: {integrity: sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==}
|
|
506
|
+
peerDependencies:
|
|
507
|
+
async-validator: ^4
|
|
508
|
+
axios: ^1
|
|
509
|
+
change-case: ^5
|
|
510
|
+
drauu: ^0.4
|
|
511
|
+
focus-trap: ^7
|
|
512
|
+
fuse.js: ^7
|
|
513
|
+
idb-keyval: ^6
|
|
514
|
+
jwt-decode: ^4
|
|
515
|
+
nprogress: ^0.2
|
|
516
|
+
qrcode: ^1.5
|
|
517
|
+
sortablejs: ^1
|
|
518
|
+
universal-cookie: ^7
|
|
519
|
+
peerDependenciesMeta:
|
|
520
|
+
async-validator:
|
|
521
|
+
optional: true
|
|
522
|
+
axios:
|
|
523
|
+
optional: true
|
|
524
|
+
change-case:
|
|
525
|
+
optional: true
|
|
526
|
+
drauu:
|
|
527
|
+
optional: true
|
|
528
|
+
focus-trap:
|
|
529
|
+
optional: true
|
|
530
|
+
fuse.js:
|
|
531
|
+
optional: true
|
|
532
|
+
idb-keyval:
|
|
533
|
+
optional: true
|
|
534
|
+
jwt-decode:
|
|
535
|
+
optional: true
|
|
536
|
+
nprogress:
|
|
537
|
+
optional: true
|
|
538
|
+
qrcode:
|
|
539
|
+
optional: true
|
|
540
|
+
sortablejs:
|
|
541
|
+
optional: true
|
|
542
|
+
universal-cookie:
|
|
543
|
+
optional: true
|
|
544
|
+
|
|
545
|
+
'@vueuse/metadata@12.8.2':
|
|
546
|
+
resolution: {integrity: sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==}
|
|
547
|
+
|
|
548
|
+
'@vueuse/shared@12.8.2':
|
|
549
|
+
resolution: {integrity: sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==}
|
|
550
|
+
|
|
551
|
+
algoliasearch@5.53.0:
|
|
552
|
+
resolution: {integrity: sha512-OGW1q6b91CRSSeiOnM8LxuR5NYJ2esvw66jUZ4IIvdv+ItNkx3pwLuyR+jaCdbGee4ov5WgUnyPryyh11xvByQ==}
|
|
553
|
+
engines: {node: '>= 14.0.0'}
|
|
554
|
+
|
|
555
|
+
birpc@2.9.0:
|
|
556
|
+
resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==}
|
|
557
|
+
|
|
558
|
+
ccount@2.0.1:
|
|
559
|
+
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
|
|
560
|
+
|
|
561
|
+
character-entities-html4@2.1.0:
|
|
562
|
+
resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
|
|
563
|
+
|
|
564
|
+
character-entities-legacy@3.0.0:
|
|
565
|
+
resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
|
|
566
|
+
|
|
567
|
+
comma-separated-tokens@2.0.3:
|
|
568
|
+
resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
|
|
569
|
+
|
|
570
|
+
copy-anything@4.0.5:
|
|
571
|
+
resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==}
|
|
572
|
+
engines: {node: '>=18'}
|
|
573
|
+
|
|
574
|
+
csstype@3.2.3:
|
|
575
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
576
|
+
|
|
577
|
+
dequal@2.0.3:
|
|
578
|
+
resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
|
|
579
|
+
engines: {node: '>=6'}
|
|
580
|
+
|
|
581
|
+
devlop@1.1.0:
|
|
582
|
+
resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
|
|
583
|
+
|
|
584
|
+
emoji-regex-xs@1.0.0:
|
|
585
|
+
resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==}
|
|
586
|
+
|
|
587
|
+
entities@7.0.1:
|
|
588
|
+
resolution: {integrity: sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==}
|
|
589
|
+
engines: {node: '>=0.12'}
|
|
590
|
+
|
|
591
|
+
esbuild@0.21.5:
|
|
592
|
+
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
|
593
|
+
engines: {node: '>=12'}
|
|
594
|
+
hasBin: true
|
|
595
|
+
|
|
596
|
+
estree-walker@2.0.2:
|
|
597
|
+
resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
|
|
598
|
+
|
|
599
|
+
focus-trap@7.8.0:
|
|
600
|
+
resolution: {integrity: sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA==}
|
|
601
|
+
|
|
602
|
+
fsevents@2.3.3:
|
|
603
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
604
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
605
|
+
os: [darwin]
|
|
606
|
+
|
|
607
|
+
hast-util-to-html@9.0.5:
|
|
608
|
+
resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==}
|
|
609
|
+
|
|
610
|
+
hast-util-whitespace@3.0.0:
|
|
611
|
+
resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
|
|
612
|
+
|
|
613
|
+
hookable@5.5.3:
|
|
614
|
+
resolution: {integrity: sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==}
|
|
615
|
+
|
|
616
|
+
html-void-elements@3.0.0:
|
|
617
|
+
resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==}
|
|
618
|
+
|
|
619
|
+
is-what@5.5.0:
|
|
620
|
+
resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==}
|
|
621
|
+
engines: {node: '>=18'}
|
|
622
|
+
|
|
623
|
+
magic-string@0.30.21:
|
|
624
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
625
|
+
|
|
626
|
+
mark.js@8.11.1:
|
|
627
|
+
resolution: {integrity: sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==}
|
|
628
|
+
|
|
629
|
+
mdast-util-to-hast@13.2.1:
|
|
630
|
+
resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
|
|
631
|
+
|
|
632
|
+
micromark-util-character@2.1.1:
|
|
633
|
+
resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
|
|
634
|
+
|
|
635
|
+
micromark-util-encode@2.0.1:
|
|
636
|
+
resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
|
|
637
|
+
|
|
638
|
+
micromark-util-sanitize-uri@2.0.1:
|
|
639
|
+
resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
|
|
640
|
+
|
|
641
|
+
micromark-util-symbol@2.0.1:
|
|
642
|
+
resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
|
|
643
|
+
|
|
644
|
+
micromark-util-types@2.0.2:
|
|
645
|
+
resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
|
|
646
|
+
|
|
647
|
+
minisearch@7.2.0:
|
|
648
|
+
resolution: {integrity: sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==}
|
|
649
|
+
|
|
650
|
+
mitt@3.0.1:
|
|
651
|
+
resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
|
|
652
|
+
|
|
653
|
+
nanoid@3.3.12:
|
|
654
|
+
resolution: {integrity: sha512-ZB9RH/39qpq5Vu6Y+NmUaFhQR6pp+M2Xt76XBnEwDaGcVAqhlvxrl3B2bKS5D3NH3QR76v3aSrKaF/Kiy7lEtQ==}
|
|
655
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
656
|
+
hasBin: true
|
|
657
|
+
|
|
658
|
+
oniguruma-to-es@3.1.1:
|
|
659
|
+
resolution: {integrity: sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==}
|
|
660
|
+
|
|
661
|
+
perfect-debounce@1.0.0:
|
|
662
|
+
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
|
|
663
|
+
|
|
664
|
+
picocolors@1.1.1:
|
|
665
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
666
|
+
|
|
667
|
+
postcss@8.5.15:
|
|
668
|
+
resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==}
|
|
669
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
670
|
+
|
|
671
|
+
preact@10.29.2:
|
|
672
|
+
resolution: {integrity: sha512-7tNmwg/7mzzAoB/8kSg6Hl37JraAZw3Z3A0JSY7VXlZwo82Xn0G7wKbNNs2qoF4ZEEsQGTwDAroNdqKs1ofJxQ==}
|
|
673
|
+
|
|
674
|
+
property-information@7.2.0:
|
|
675
|
+
resolution: {integrity: sha512-IAtzIB6sUiWaJYrX9smp3V46pBGbBeLFRGdh25kg1334VcBlD8HzhPeNIWQH9zhGmo2itIe25EHt9dQP7G5hmg==}
|
|
676
|
+
|
|
677
|
+
regex-recursion@6.0.2:
|
|
678
|
+
resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==}
|
|
679
|
+
|
|
680
|
+
regex-utilities@2.3.0:
|
|
681
|
+
resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
|
|
682
|
+
|
|
683
|
+
regex@6.1.0:
|
|
684
|
+
resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==}
|
|
685
|
+
|
|
686
|
+
rfdc@1.4.1:
|
|
687
|
+
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
|
|
688
|
+
|
|
689
|
+
rollup@4.61.1:
|
|
690
|
+
resolution: {integrity: sha512-I4KW6iuRpuu2uHBLraZ1wNZe0DP7lnRha+VJ9tNaYVaVgKhW0aI3h4RYnoRPeql0flHm/Co55b7snEDcOfOJrA==}
|
|
691
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
692
|
+
hasBin: true
|
|
693
|
+
|
|
694
|
+
search-insights@2.17.3:
|
|
695
|
+
resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==}
|
|
696
|
+
|
|
697
|
+
shiki@2.5.0:
|
|
698
|
+
resolution: {integrity: sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==}
|
|
699
|
+
|
|
700
|
+
source-map-js@1.2.1:
|
|
701
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
702
|
+
engines: {node: '>=0.10.0'}
|
|
703
|
+
|
|
704
|
+
space-separated-tokens@2.0.2:
|
|
705
|
+
resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
|
|
706
|
+
|
|
707
|
+
speakingurl@14.0.1:
|
|
708
|
+
resolution: {integrity: sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==}
|
|
709
|
+
engines: {node: '>=0.10.0'}
|
|
710
|
+
|
|
711
|
+
stringify-entities@4.0.4:
|
|
712
|
+
resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
|
|
713
|
+
|
|
714
|
+
superjson@2.2.6:
|
|
715
|
+
resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==}
|
|
716
|
+
engines: {node: '>=16'}
|
|
717
|
+
|
|
718
|
+
tabbable@6.4.0:
|
|
719
|
+
resolution: {integrity: sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==}
|
|
720
|
+
|
|
721
|
+
trim-lines@3.0.1:
|
|
722
|
+
resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
|
|
723
|
+
|
|
724
|
+
unist-util-is@6.0.1:
|
|
725
|
+
resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
|
|
726
|
+
|
|
727
|
+
unist-util-position@5.0.0:
|
|
728
|
+
resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
|
|
729
|
+
|
|
730
|
+
unist-util-stringify-position@4.0.0:
|
|
731
|
+
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
|
|
732
|
+
|
|
733
|
+
unist-util-visit-parents@6.0.2:
|
|
734
|
+
resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
|
|
735
|
+
|
|
736
|
+
unist-util-visit@5.1.0:
|
|
737
|
+
resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
|
|
738
|
+
|
|
739
|
+
vfile-message@4.0.3:
|
|
740
|
+
resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
|
|
741
|
+
|
|
742
|
+
vfile@6.0.3:
|
|
743
|
+
resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
|
|
744
|
+
|
|
745
|
+
vite@5.4.21:
|
|
746
|
+
resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
|
|
747
|
+
engines: {node: ^18.0.0 || >=20.0.0}
|
|
748
|
+
hasBin: true
|
|
749
|
+
peerDependencies:
|
|
750
|
+
'@types/node': ^18.0.0 || >=20.0.0
|
|
751
|
+
less: '*'
|
|
752
|
+
lightningcss: ^1.21.0
|
|
753
|
+
sass: '*'
|
|
754
|
+
sass-embedded: '*'
|
|
755
|
+
stylus: '*'
|
|
756
|
+
sugarss: '*'
|
|
757
|
+
terser: ^5.4.0
|
|
758
|
+
peerDependenciesMeta:
|
|
759
|
+
'@types/node':
|
|
760
|
+
optional: true
|
|
761
|
+
less:
|
|
762
|
+
optional: true
|
|
763
|
+
lightningcss:
|
|
764
|
+
optional: true
|
|
765
|
+
sass:
|
|
766
|
+
optional: true
|
|
767
|
+
sass-embedded:
|
|
768
|
+
optional: true
|
|
769
|
+
stylus:
|
|
770
|
+
optional: true
|
|
771
|
+
sugarss:
|
|
772
|
+
optional: true
|
|
773
|
+
terser:
|
|
774
|
+
optional: true
|
|
775
|
+
|
|
776
|
+
vitepress@1.6.4:
|
|
777
|
+
resolution: {integrity: sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==}
|
|
778
|
+
hasBin: true
|
|
779
|
+
peerDependencies:
|
|
780
|
+
markdown-it-mathjax3: ^4
|
|
781
|
+
postcss: ^8
|
|
782
|
+
peerDependenciesMeta:
|
|
783
|
+
markdown-it-mathjax3:
|
|
784
|
+
optional: true
|
|
785
|
+
postcss:
|
|
786
|
+
optional: true
|
|
787
|
+
|
|
788
|
+
vue@3.5.35:
|
|
789
|
+
resolution: {integrity: sha512-cx89fnr+0kVGHiNFG6y6s0bdjypJRFNZn6x3WPstNdQR1bi1mbB7h4v5IBGTsPJU3nK1+0Iqj3Zf+hZWMieR4Q==}
|
|
790
|
+
peerDependencies:
|
|
791
|
+
typescript: '*'
|
|
792
|
+
peerDependenciesMeta:
|
|
793
|
+
typescript:
|
|
794
|
+
optional: true
|
|
795
|
+
|
|
796
|
+
zwitch@2.0.4:
|
|
797
|
+
resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
|
|
798
|
+
|
|
799
|
+
snapshots:
|
|
800
|
+
|
|
801
|
+
'@algolia/abtesting@1.19.0':
|
|
802
|
+
dependencies:
|
|
803
|
+
'@algolia/client-common': 5.53.0
|
|
804
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
805
|
+
'@algolia/requester-fetch': 5.53.0
|
|
806
|
+
'@algolia/requester-node-http': 5.53.0
|
|
807
|
+
|
|
808
|
+
'@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)(search-insights@2.17.3)':
|
|
809
|
+
dependencies:
|
|
810
|
+
'@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)(search-insights@2.17.3)
|
|
811
|
+
'@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)
|
|
812
|
+
transitivePeerDependencies:
|
|
813
|
+
- '@algolia/client-search'
|
|
814
|
+
- algoliasearch
|
|
815
|
+
- search-insights
|
|
816
|
+
|
|
817
|
+
'@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)(search-insights@2.17.3)':
|
|
818
|
+
dependencies:
|
|
819
|
+
'@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)
|
|
820
|
+
search-insights: 2.17.3
|
|
821
|
+
transitivePeerDependencies:
|
|
822
|
+
- '@algolia/client-search'
|
|
823
|
+
- algoliasearch
|
|
824
|
+
|
|
825
|
+
'@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)':
|
|
826
|
+
dependencies:
|
|
827
|
+
'@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)
|
|
828
|
+
'@algolia/client-search': 5.53.0
|
|
829
|
+
algoliasearch: 5.53.0
|
|
830
|
+
|
|
831
|
+
'@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)':
|
|
832
|
+
dependencies:
|
|
833
|
+
'@algolia/client-search': 5.53.0
|
|
834
|
+
algoliasearch: 5.53.0
|
|
835
|
+
|
|
836
|
+
'@algolia/client-abtesting@5.53.0':
|
|
837
|
+
dependencies:
|
|
838
|
+
'@algolia/client-common': 5.53.0
|
|
839
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
840
|
+
'@algolia/requester-fetch': 5.53.0
|
|
841
|
+
'@algolia/requester-node-http': 5.53.0
|
|
842
|
+
|
|
843
|
+
'@algolia/client-analytics@5.53.0':
|
|
844
|
+
dependencies:
|
|
845
|
+
'@algolia/client-common': 5.53.0
|
|
846
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
847
|
+
'@algolia/requester-fetch': 5.53.0
|
|
848
|
+
'@algolia/requester-node-http': 5.53.0
|
|
849
|
+
|
|
850
|
+
'@algolia/client-common@5.53.0': {}
|
|
851
|
+
|
|
852
|
+
'@algolia/client-insights@5.53.0':
|
|
853
|
+
dependencies:
|
|
854
|
+
'@algolia/client-common': 5.53.0
|
|
855
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
856
|
+
'@algolia/requester-fetch': 5.53.0
|
|
857
|
+
'@algolia/requester-node-http': 5.53.0
|
|
858
|
+
|
|
859
|
+
'@algolia/client-personalization@5.53.0':
|
|
860
|
+
dependencies:
|
|
861
|
+
'@algolia/client-common': 5.53.0
|
|
862
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
863
|
+
'@algolia/requester-fetch': 5.53.0
|
|
864
|
+
'@algolia/requester-node-http': 5.53.0
|
|
865
|
+
|
|
866
|
+
'@algolia/client-query-suggestions@5.53.0':
|
|
867
|
+
dependencies:
|
|
868
|
+
'@algolia/client-common': 5.53.0
|
|
869
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
870
|
+
'@algolia/requester-fetch': 5.53.0
|
|
871
|
+
'@algolia/requester-node-http': 5.53.0
|
|
872
|
+
|
|
873
|
+
'@algolia/client-search@5.53.0':
|
|
874
|
+
dependencies:
|
|
875
|
+
'@algolia/client-common': 5.53.0
|
|
876
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
877
|
+
'@algolia/requester-fetch': 5.53.0
|
|
878
|
+
'@algolia/requester-node-http': 5.53.0
|
|
879
|
+
|
|
880
|
+
'@algolia/ingestion@1.53.0':
|
|
881
|
+
dependencies:
|
|
882
|
+
'@algolia/client-common': 5.53.0
|
|
883
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
884
|
+
'@algolia/requester-fetch': 5.53.0
|
|
885
|
+
'@algolia/requester-node-http': 5.53.0
|
|
886
|
+
|
|
887
|
+
'@algolia/monitoring@1.53.0':
|
|
888
|
+
dependencies:
|
|
889
|
+
'@algolia/client-common': 5.53.0
|
|
890
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
891
|
+
'@algolia/requester-fetch': 5.53.0
|
|
892
|
+
'@algolia/requester-node-http': 5.53.0
|
|
893
|
+
|
|
894
|
+
'@algolia/recommend@5.53.0':
|
|
895
|
+
dependencies:
|
|
896
|
+
'@algolia/client-common': 5.53.0
|
|
897
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
898
|
+
'@algolia/requester-fetch': 5.53.0
|
|
899
|
+
'@algolia/requester-node-http': 5.53.0
|
|
900
|
+
|
|
901
|
+
'@algolia/requester-browser-xhr@5.53.0':
|
|
902
|
+
dependencies:
|
|
903
|
+
'@algolia/client-common': 5.53.0
|
|
904
|
+
|
|
905
|
+
'@algolia/requester-fetch@5.53.0':
|
|
906
|
+
dependencies:
|
|
907
|
+
'@algolia/client-common': 5.53.0
|
|
908
|
+
|
|
909
|
+
'@algolia/requester-node-http@5.53.0':
|
|
910
|
+
dependencies:
|
|
911
|
+
'@algolia/client-common': 5.53.0
|
|
912
|
+
|
|
913
|
+
'@babel/helper-string-parser@7.29.7': {}
|
|
914
|
+
|
|
915
|
+
'@babel/helper-validator-identifier@7.29.7': {}
|
|
916
|
+
|
|
917
|
+
'@babel/parser@7.29.7':
|
|
918
|
+
dependencies:
|
|
919
|
+
'@babel/types': 7.29.7
|
|
920
|
+
|
|
921
|
+
'@babel/types@7.29.7':
|
|
922
|
+
dependencies:
|
|
923
|
+
'@babel/helper-string-parser': 7.29.7
|
|
924
|
+
'@babel/helper-validator-identifier': 7.29.7
|
|
925
|
+
|
|
926
|
+
'@docsearch/css@3.8.2': {}
|
|
927
|
+
|
|
928
|
+
'@docsearch/js@3.8.2(@algolia/client-search@5.53.0)(search-insights@2.17.3)':
|
|
929
|
+
dependencies:
|
|
930
|
+
'@docsearch/react': 3.8.2(@algolia/client-search@5.53.0)(search-insights@2.17.3)
|
|
931
|
+
preact: 10.29.2
|
|
932
|
+
transitivePeerDependencies:
|
|
933
|
+
- '@algolia/client-search'
|
|
934
|
+
- '@types/react'
|
|
935
|
+
- react
|
|
936
|
+
- react-dom
|
|
937
|
+
- search-insights
|
|
938
|
+
|
|
939
|
+
'@docsearch/react@3.8.2(@algolia/client-search@5.53.0)(search-insights@2.17.3)':
|
|
940
|
+
dependencies:
|
|
941
|
+
'@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)(search-insights@2.17.3)
|
|
942
|
+
'@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.53.0)(algoliasearch@5.53.0)
|
|
943
|
+
'@docsearch/css': 3.8.2
|
|
944
|
+
algoliasearch: 5.53.0
|
|
945
|
+
optionalDependencies:
|
|
946
|
+
search-insights: 2.17.3
|
|
947
|
+
transitivePeerDependencies:
|
|
948
|
+
- '@algolia/client-search'
|
|
949
|
+
|
|
950
|
+
'@esbuild/aix-ppc64@0.21.5':
|
|
951
|
+
optional: true
|
|
952
|
+
|
|
953
|
+
'@esbuild/android-arm64@0.21.5':
|
|
954
|
+
optional: true
|
|
955
|
+
|
|
956
|
+
'@esbuild/android-arm@0.21.5':
|
|
957
|
+
optional: true
|
|
958
|
+
|
|
959
|
+
'@esbuild/android-x64@0.21.5':
|
|
960
|
+
optional: true
|
|
961
|
+
|
|
962
|
+
'@esbuild/darwin-arm64@0.21.5':
|
|
963
|
+
optional: true
|
|
964
|
+
|
|
965
|
+
'@esbuild/darwin-x64@0.21.5':
|
|
966
|
+
optional: true
|
|
967
|
+
|
|
968
|
+
'@esbuild/freebsd-arm64@0.21.5':
|
|
969
|
+
optional: true
|
|
970
|
+
|
|
971
|
+
'@esbuild/freebsd-x64@0.21.5':
|
|
972
|
+
optional: true
|
|
973
|
+
|
|
974
|
+
'@esbuild/linux-arm64@0.21.5':
|
|
975
|
+
optional: true
|
|
976
|
+
|
|
977
|
+
'@esbuild/linux-arm@0.21.5':
|
|
978
|
+
optional: true
|
|
979
|
+
|
|
980
|
+
'@esbuild/linux-ia32@0.21.5':
|
|
981
|
+
optional: true
|
|
982
|
+
|
|
983
|
+
'@esbuild/linux-loong64@0.21.5':
|
|
984
|
+
optional: true
|
|
985
|
+
|
|
986
|
+
'@esbuild/linux-mips64el@0.21.5':
|
|
987
|
+
optional: true
|
|
988
|
+
|
|
989
|
+
'@esbuild/linux-ppc64@0.21.5':
|
|
990
|
+
optional: true
|
|
991
|
+
|
|
992
|
+
'@esbuild/linux-riscv64@0.21.5':
|
|
993
|
+
optional: true
|
|
994
|
+
|
|
995
|
+
'@esbuild/linux-s390x@0.21.5':
|
|
996
|
+
optional: true
|
|
997
|
+
|
|
998
|
+
'@esbuild/linux-x64@0.21.5':
|
|
999
|
+
optional: true
|
|
1000
|
+
|
|
1001
|
+
'@esbuild/netbsd-x64@0.21.5':
|
|
1002
|
+
optional: true
|
|
1003
|
+
|
|
1004
|
+
'@esbuild/openbsd-x64@0.21.5':
|
|
1005
|
+
optional: true
|
|
1006
|
+
|
|
1007
|
+
'@esbuild/sunos-x64@0.21.5':
|
|
1008
|
+
optional: true
|
|
1009
|
+
|
|
1010
|
+
'@esbuild/win32-arm64@0.21.5':
|
|
1011
|
+
optional: true
|
|
1012
|
+
|
|
1013
|
+
'@esbuild/win32-ia32@0.21.5':
|
|
1014
|
+
optional: true
|
|
1015
|
+
|
|
1016
|
+
'@esbuild/win32-x64@0.21.5':
|
|
1017
|
+
optional: true
|
|
1018
|
+
|
|
1019
|
+
'@iconify-json/simple-icons@1.2.85':
|
|
1020
|
+
dependencies:
|
|
1021
|
+
'@iconify/types': 2.0.0
|
|
1022
|
+
|
|
1023
|
+
'@iconify/types@2.0.0': {}
|
|
1024
|
+
|
|
1025
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
1026
|
+
|
|
1027
|
+
'@rollup/rollup-android-arm-eabi@4.61.1':
|
|
1028
|
+
optional: true
|
|
1029
|
+
|
|
1030
|
+
'@rollup/rollup-android-arm64@4.61.1':
|
|
1031
|
+
optional: true
|
|
1032
|
+
|
|
1033
|
+
'@rollup/rollup-darwin-arm64@4.61.1':
|
|
1034
|
+
optional: true
|
|
1035
|
+
|
|
1036
|
+
'@rollup/rollup-darwin-x64@4.61.1':
|
|
1037
|
+
optional: true
|
|
1038
|
+
|
|
1039
|
+
'@rollup/rollup-freebsd-arm64@4.61.1':
|
|
1040
|
+
optional: true
|
|
1041
|
+
|
|
1042
|
+
'@rollup/rollup-freebsd-x64@4.61.1':
|
|
1043
|
+
optional: true
|
|
1044
|
+
|
|
1045
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.61.1':
|
|
1046
|
+
optional: true
|
|
1047
|
+
|
|
1048
|
+
'@rollup/rollup-linux-arm-musleabihf@4.61.1':
|
|
1049
|
+
optional: true
|
|
1050
|
+
|
|
1051
|
+
'@rollup/rollup-linux-arm64-gnu@4.61.1':
|
|
1052
|
+
optional: true
|
|
1053
|
+
|
|
1054
|
+
'@rollup/rollup-linux-arm64-musl@4.61.1':
|
|
1055
|
+
optional: true
|
|
1056
|
+
|
|
1057
|
+
'@rollup/rollup-linux-loong64-gnu@4.61.1':
|
|
1058
|
+
optional: true
|
|
1059
|
+
|
|
1060
|
+
'@rollup/rollup-linux-loong64-musl@4.61.1':
|
|
1061
|
+
optional: true
|
|
1062
|
+
|
|
1063
|
+
'@rollup/rollup-linux-ppc64-gnu@4.61.1':
|
|
1064
|
+
optional: true
|
|
1065
|
+
|
|
1066
|
+
'@rollup/rollup-linux-ppc64-musl@4.61.1':
|
|
1067
|
+
optional: true
|
|
1068
|
+
|
|
1069
|
+
'@rollup/rollup-linux-riscv64-gnu@4.61.1':
|
|
1070
|
+
optional: true
|
|
1071
|
+
|
|
1072
|
+
'@rollup/rollup-linux-riscv64-musl@4.61.1':
|
|
1073
|
+
optional: true
|
|
1074
|
+
|
|
1075
|
+
'@rollup/rollup-linux-s390x-gnu@4.61.1':
|
|
1076
|
+
optional: true
|
|
1077
|
+
|
|
1078
|
+
'@rollup/rollup-linux-x64-gnu@4.61.1':
|
|
1079
|
+
optional: true
|
|
1080
|
+
|
|
1081
|
+
'@rollup/rollup-linux-x64-musl@4.61.1':
|
|
1082
|
+
optional: true
|
|
1083
|
+
|
|
1084
|
+
'@rollup/rollup-openbsd-x64@4.61.1':
|
|
1085
|
+
optional: true
|
|
1086
|
+
|
|
1087
|
+
'@rollup/rollup-openharmony-arm64@4.61.1':
|
|
1088
|
+
optional: true
|
|
1089
|
+
|
|
1090
|
+
'@rollup/rollup-win32-arm64-msvc@4.61.1':
|
|
1091
|
+
optional: true
|
|
1092
|
+
|
|
1093
|
+
'@rollup/rollup-win32-ia32-msvc@4.61.1':
|
|
1094
|
+
optional: true
|
|
1095
|
+
|
|
1096
|
+
'@rollup/rollup-win32-x64-gnu@4.61.1':
|
|
1097
|
+
optional: true
|
|
1098
|
+
|
|
1099
|
+
'@rollup/rollup-win32-x64-msvc@4.61.1':
|
|
1100
|
+
optional: true
|
|
1101
|
+
|
|
1102
|
+
'@shikijs/core@2.5.0':
|
|
1103
|
+
dependencies:
|
|
1104
|
+
'@shikijs/engine-javascript': 2.5.0
|
|
1105
|
+
'@shikijs/engine-oniguruma': 2.5.0
|
|
1106
|
+
'@shikijs/types': 2.5.0
|
|
1107
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
1108
|
+
'@types/hast': 3.0.4
|
|
1109
|
+
hast-util-to-html: 9.0.5
|
|
1110
|
+
|
|
1111
|
+
'@shikijs/engine-javascript@2.5.0':
|
|
1112
|
+
dependencies:
|
|
1113
|
+
'@shikijs/types': 2.5.0
|
|
1114
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
1115
|
+
oniguruma-to-es: 3.1.1
|
|
1116
|
+
|
|
1117
|
+
'@shikijs/engine-oniguruma@2.5.0':
|
|
1118
|
+
dependencies:
|
|
1119
|
+
'@shikijs/types': 2.5.0
|
|
1120
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
1121
|
+
|
|
1122
|
+
'@shikijs/langs@2.5.0':
|
|
1123
|
+
dependencies:
|
|
1124
|
+
'@shikijs/types': 2.5.0
|
|
1125
|
+
|
|
1126
|
+
'@shikijs/themes@2.5.0':
|
|
1127
|
+
dependencies:
|
|
1128
|
+
'@shikijs/types': 2.5.0
|
|
1129
|
+
|
|
1130
|
+
'@shikijs/transformers@2.5.0':
|
|
1131
|
+
dependencies:
|
|
1132
|
+
'@shikijs/core': 2.5.0
|
|
1133
|
+
'@shikijs/types': 2.5.0
|
|
1134
|
+
|
|
1135
|
+
'@shikijs/types@2.5.0':
|
|
1136
|
+
dependencies:
|
|
1137
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
1138
|
+
'@types/hast': 3.0.4
|
|
1139
|
+
|
|
1140
|
+
'@shikijs/vscode-textmate@10.0.2': {}
|
|
1141
|
+
|
|
1142
|
+
'@types/estree@1.0.9': {}
|
|
1143
|
+
|
|
1144
|
+
'@types/hast@3.0.4':
|
|
1145
|
+
dependencies:
|
|
1146
|
+
'@types/unist': 3.0.3
|
|
1147
|
+
|
|
1148
|
+
'@types/linkify-it@5.0.0': {}
|
|
1149
|
+
|
|
1150
|
+
'@types/markdown-it@14.1.2':
|
|
1151
|
+
dependencies:
|
|
1152
|
+
'@types/linkify-it': 5.0.0
|
|
1153
|
+
'@types/mdurl': 2.0.0
|
|
1154
|
+
|
|
1155
|
+
'@types/mdast@4.0.4':
|
|
1156
|
+
dependencies:
|
|
1157
|
+
'@types/unist': 3.0.3
|
|
1158
|
+
|
|
1159
|
+
'@types/mdurl@2.0.0': {}
|
|
1160
|
+
|
|
1161
|
+
'@types/unist@3.0.3': {}
|
|
1162
|
+
|
|
1163
|
+
'@types/web-bluetooth@0.0.21': {}
|
|
1164
|
+
|
|
1165
|
+
'@ungap/structured-clone@1.3.1': {}
|
|
1166
|
+
|
|
1167
|
+
'@vitejs/plugin-vue@5.2.4(vite@5.4.21)(vue@3.5.35)':
|
|
1168
|
+
dependencies:
|
|
1169
|
+
vite: 5.4.21
|
|
1170
|
+
vue: 3.5.35
|
|
1171
|
+
|
|
1172
|
+
'@vue/compiler-core@3.5.35':
|
|
1173
|
+
dependencies:
|
|
1174
|
+
'@babel/parser': 7.29.7
|
|
1175
|
+
'@vue/shared': 3.5.35
|
|
1176
|
+
entities: 7.0.1
|
|
1177
|
+
estree-walker: 2.0.2
|
|
1178
|
+
source-map-js: 1.2.1
|
|
1179
|
+
|
|
1180
|
+
'@vue/compiler-dom@3.5.35':
|
|
1181
|
+
dependencies:
|
|
1182
|
+
'@vue/compiler-core': 3.5.35
|
|
1183
|
+
'@vue/shared': 3.5.35
|
|
1184
|
+
|
|
1185
|
+
'@vue/compiler-sfc@3.5.35':
|
|
1186
|
+
dependencies:
|
|
1187
|
+
'@babel/parser': 7.29.7
|
|
1188
|
+
'@vue/compiler-core': 3.5.35
|
|
1189
|
+
'@vue/compiler-dom': 3.5.35
|
|
1190
|
+
'@vue/compiler-ssr': 3.5.35
|
|
1191
|
+
'@vue/shared': 3.5.35
|
|
1192
|
+
estree-walker: 2.0.2
|
|
1193
|
+
magic-string: 0.30.21
|
|
1194
|
+
postcss: 8.5.15
|
|
1195
|
+
source-map-js: 1.2.1
|
|
1196
|
+
|
|
1197
|
+
'@vue/compiler-ssr@3.5.35':
|
|
1198
|
+
dependencies:
|
|
1199
|
+
'@vue/compiler-dom': 3.5.35
|
|
1200
|
+
'@vue/shared': 3.5.35
|
|
1201
|
+
|
|
1202
|
+
'@vue/devtools-api@7.7.9':
|
|
1203
|
+
dependencies:
|
|
1204
|
+
'@vue/devtools-kit': 7.7.9
|
|
1205
|
+
|
|
1206
|
+
'@vue/devtools-kit@7.7.9':
|
|
1207
|
+
dependencies:
|
|
1208
|
+
'@vue/devtools-shared': 7.7.9
|
|
1209
|
+
birpc: 2.9.0
|
|
1210
|
+
hookable: 5.5.3
|
|
1211
|
+
mitt: 3.0.1
|
|
1212
|
+
perfect-debounce: 1.0.0
|
|
1213
|
+
speakingurl: 14.0.1
|
|
1214
|
+
superjson: 2.2.6
|
|
1215
|
+
|
|
1216
|
+
'@vue/devtools-shared@7.7.9':
|
|
1217
|
+
dependencies:
|
|
1218
|
+
rfdc: 1.4.1
|
|
1219
|
+
|
|
1220
|
+
'@vue/reactivity@3.5.35':
|
|
1221
|
+
dependencies:
|
|
1222
|
+
'@vue/shared': 3.5.35
|
|
1223
|
+
|
|
1224
|
+
'@vue/runtime-core@3.5.35':
|
|
1225
|
+
dependencies:
|
|
1226
|
+
'@vue/reactivity': 3.5.35
|
|
1227
|
+
'@vue/shared': 3.5.35
|
|
1228
|
+
|
|
1229
|
+
'@vue/runtime-dom@3.5.35':
|
|
1230
|
+
dependencies:
|
|
1231
|
+
'@vue/reactivity': 3.5.35
|
|
1232
|
+
'@vue/runtime-core': 3.5.35
|
|
1233
|
+
'@vue/shared': 3.5.35
|
|
1234
|
+
csstype: 3.2.3
|
|
1235
|
+
|
|
1236
|
+
'@vue/server-renderer@3.5.35(vue@3.5.35)':
|
|
1237
|
+
dependencies:
|
|
1238
|
+
'@vue/compiler-ssr': 3.5.35
|
|
1239
|
+
'@vue/shared': 3.5.35
|
|
1240
|
+
vue: 3.5.35
|
|
1241
|
+
|
|
1242
|
+
'@vue/shared@3.5.35': {}
|
|
1243
|
+
|
|
1244
|
+
'@vueuse/core@12.8.2':
|
|
1245
|
+
dependencies:
|
|
1246
|
+
'@types/web-bluetooth': 0.0.21
|
|
1247
|
+
'@vueuse/metadata': 12.8.2
|
|
1248
|
+
'@vueuse/shared': 12.8.2
|
|
1249
|
+
vue: 3.5.35
|
|
1250
|
+
transitivePeerDependencies:
|
|
1251
|
+
- typescript
|
|
1252
|
+
|
|
1253
|
+
'@vueuse/integrations@12.8.2(focus-trap@7.8.0)':
|
|
1254
|
+
dependencies:
|
|
1255
|
+
'@vueuse/core': 12.8.2
|
|
1256
|
+
'@vueuse/shared': 12.8.2
|
|
1257
|
+
vue: 3.5.35
|
|
1258
|
+
optionalDependencies:
|
|
1259
|
+
focus-trap: 7.8.0
|
|
1260
|
+
transitivePeerDependencies:
|
|
1261
|
+
- typescript
|
|
1262
|
+
|
|
1263
|
+
'@vueuse/metadata@12.8.2': {}
|
|
1264
|
+
|
|
1265
|
+
'@vueuse/shared@12.8.2':
|
|
1266
|
+
dependencies:
|
|
1267
|
+
vue: 3.5.35
|
|
1268
|
+
transitivePeerDependencies:
|
|
1269
|
+
- typescript
|
|
1270
|
+
|
|
1271
|
+
algoliasearch@5.53.0:
|
|
1272
|
+
dependencies:
|
|
1273
|
+
'@algolia/abtesting': 1.19.0
|
|
1274
|
+
'@algolia/client-abtesting': 5.53.0
|
|
1275
|
+
'@algolia/client-analytics': 5.53.0
|
|
1276
|
+
'@algolia/client-common': 5.53.0
|
|
1277
|
+
'@algolia/client-insights': 5.53.0
|
|
1278
|
+
'@algolia/client-personalization': 5.53.0
|
|
1279
|
+
'@algolia/client-query-suggestions': 5.53.0
|
|
1280
|
+
'@algolia/client-search': 5.53.0
|
|
1281
|
+
'@algolia/ingestion': 1.53.0
|
|
1282
|
+
'@algolia/monitoring': 1.53.0
|
|
1283
|
+
'@algolia/recommend': 5.53.0
|
|
1284
|
+
'@algolia/requester-browser-xhr': 5.53.0
|
|
1285
|
+
'@algolia/requester-fetch': 5.53.0
|
|
1286
|
+
'@algolia/requester-node-http': 5.53.0
|
|
1287
|
+
|
|
1288
|
+
birpc@2.9.0: {}
|
|
1289
|
+
|
|
1290
|
+
ccount@2.0.1: {}
|
|
1291
|
+
|
|
1292
|
+
character-entities-html4@2.1.0: {}
|
|
1293
|
+
|
|
1294
|
+
character-entities-legacy@3.0.0: {}
|
|
1295
|
+
|
|
1296
|
+
comma-separated-tokens@2.0.3: {}
|
|
1297
|
+
|
|
1298
|
+
copy-anything@4.0.5:
|
|
1299
|
+
dependencies:
|
|
1300
|
+
is-what: 5.5.0
|
|
1301
|
+
|
|
1302
|
+
csstype@3.2.3: {}
|
|
1303
|
+
|
|
1304
|
+
dequal@2.0.3: {}
|
|
1305
|
+
|
|
1306
|
+
devlop@1.1.0:
|
|
1307
|
+
dependencies:
|
|
1308
|
+
dequal: 2.0.3
|
|
1309
|
+
|
|
1310
|
+
emoji-regex-xs@1.0.0: {}
|
|
1311
|
+
|
|
1312
|
+
entities@7.0.1: {}
|
|
1313
|
+
|
|
1314
|
+
esbuild@0.21.5:
|
|
1315
|
+
optionalDependencies:
|
|
1316
|
+
'@esbuild/aix-ppc64': 0.21.5
|
|
1317
|
+
'@esbuild/android-arm': 0.21.5
|
|
1318
|
+
'@esbuild/android-arm64': 0.21.5
|
|
1319
|
+
'@esbuild/android-x64': 0.21.5
|
|
1320
|
+
'@esbuild/darwin-arm64': 0.21.5
|
|
1321
|
+
'@esbuild/darwin-x64': 0.21.5
|
|
1322
|
+
'@esbuild/freebsd-arm64': 0.21.5
|
|
1323
|
+
'@esbuild/freebsd-x64': 0.21.5
|
|
1324
|
+
'@esbuild/linux-arm': 0.21.5
|
|
1325
|
+
'@esbuild/linux-arm64': 0.21.5
|
|
1326
|
+
'@esbuild/linux-ia32': 0.21.5
|
|
1327
|
+
'@esbuild/linux-loong64': 0.21.5
|
|
1328
|
+
'@esbuild/linux-mips64el': 0.21.5
|
|
1329
|
+
'@esbuild/linux-ppc64': 0.21.5
|
|
1330
|
+
'@esbuild/linux-riscv64': 0.21.5
|
|
1331
|
+
'@esbuild/linux-s390x': 0.21.5
|
|
1332
|
+
'@esbuild/linux-x64': 0.21.5
|
|
1333
|
+
'@esbuild/netbsd-x64': 0.21.5
|
|
1334
|
+
'@esbuild/openbsd-x64': 0.21.5
|
|
1335
|
+
'@esbuild/sunos-x64': 0.21.5
|
|
1336
|
+
'@esbuild/win32-arm64': 0.21.5
|
|
1337
|
+
'@esbuild/win32-ia32': 0.21.5
|
|
1338
|
+
'@esbuild/win32-x64': 0.21.5
|
|
1339
|
+
|
|
1340
|
+
estree-walker@2.0.2: {}
|
|
1341
|
+
|
|
1342
|
+
focus-trap@7.8.0:
|
|
1343
|
+
dependencies:
|
|
1344
|
+
tabbable: 6.4.0
|
|
1345
|
+
|
|
1346
|
+
fsevents@2.3.3:
|
|
1347
|
+
optional: true
|
|
1348
|
+
|
|
1349
|
+
hast-util-to-html@9.0.5:
|
|
1350
|
+
dependencies:
|
|
1351
|
+
'@types/hast': 3.0.4
|
|
1352
|
+
'@types/unist': 3.0.3
|
|
1353
|
+
ccount: 2.0.1
|
|
1354
|
+
comma-separated-tokens: 2.0.3
|
|
1355
|
+
hast-util-whitespace: 3.0.0
|
|
1356
|
+
html-void-elements: 3.0.0
|
|
1357
|
+
mdast-util-to-hast: 13.2.1
|
|
1358
|
+
property-information: 7.2.0
|
|
1359
|
+
space-separated-tokens: 2.0.2
|
|
1360
|
+
stringify-entities: 4.0.4
|
|
1361
|
+
zwitch: 2.0.4
|
|
1362
|
+
|
|
1363
|
+
hast-util-whitespace@3.0.0:
|
|
1364
|
+
dependencies:
|
|
1365
|
+
'@types/hast': 3.0.4
|
|
1366
|
+
|
|
1367
|
+
hookable@5.5.3: {}
|
|
1368
|
+
|
|
1369
|
+
html-void-elements@3.0.0: {}
|
|
1370
|
+
|
|
1371
|
+
is-what@5.5.0: {}
|
|
1372
|
+
|
|
1373
|
+
magic-string@0.30.21:
|
|
1374
|
+
dependencies:
|
|
1375
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1376
|
+
|
|
1377
|
+
mark.js@8.11.1: {}
|
|
1378
|
+
|
|
1379
|
+
mdast-util-to-hast@13.2.1:
|
|
1380
|
+
dependencies:
|
|
1381
|
+
'@types/hast': 3.0.4
|
|
1382
|
+
'@types/mdast': 4.0.4
|
|
1383
|
+
'@ungap/structured-clone': 1.3.1
|
|
1384
|
+
devlop: 1.1.0
|
|
1385
|
+
micromark-util-sanitize-uri: 2.0.1
|
|
1386
|
+
trim-lines: 3.0.1
|
|
1387
|
+
unist-util-position: 5.0.0
|
|
1388
|
+
unist-util-visit: 5.1.0
|
|
1389
|
+
vfile: 6.0.3
|
|
1390
|
+
|
|
1391
|
+
micromark-util-character@2.1.1:
|
|
1392
|
+
dependencies:
|
|
1393
|
+
micromark-util-symbol: 2.0.1
|
|
1394
|
+
micromark-util-types: 2.0.2
|
|
1395
|
+
|
|
1396
|
+
micromark-util-encode@2.0.1: {}
|
|
1397
|
+
|
|
1398
|
+
micromark-util-sanitize-uri@2.0.1:
|
|
1399
|
+
dependencies:
|
|
1400
|
+
micromark-util-character: 2.1.1
|
|
1401
|
+
micromark-util-encode: 2.0.1
|
|
1402
|
+
micromark-util-symbol: 2.0.1
|
|
1403
|
+
|
|
1404
|
+
micromark-util-symbol@2.0.1: {}
|
|
1405
|
+
|
|
1406
|
+
micromark-util-types@2.0.2: {}
|
|
1407
|
+
|
|
1408
|
+
minisearch@7.2.0: {}
|
|
1409
|
+
|
|
1410
|
+
mitt@3.0.1: {}
|
|
1411
|
+
|
|
1412
|
+
nanoid@3.3.12: {}
|
|
1413
|
+
|
|
1414
|
+
oniguruma-to-es@3.1.1:
|
|
1415
|
+
dependencies:
|
|
1416
|
+
emoji-regex-xs: 1.0.0
|
|
1417
|
+
regex: 6.1.0
|
|
1418
|
+
regex-recursion: 6.0.2
|
|
1419
|
+
|
|
1420
|
+
perfect-debounce@1.0.0: {}
|
|
1421
|
+
|
|
1422
|
+
picocolors@1.1.1: {}
|
|
1423
|
+
|
|
1424
|
+
postcss@8.5.15:
|
|
1425
|
+
dependencies:
|
|
1426
|
+
nanoid: 3.3.12
|
|
1427
|
+
picocolors: 1.1.1
|
|
1428
|
+
source-map-js: 1.2.1
|
|
1429
|
+
|
|
1430
|
+
preact@10.29.2: {}
|
|
1431
|
+
|
|
1432
|
+
property-information@7.2.0: {}
|
|
1433
|
+
|
|
1434
|
+
regex-recursion@6.0.2:
|
|
1435
|
+
dependencies:
|
|
1436
|
+
regex-utilities: 2.3.0
|
|
1437
|
+
|
|
1438
|
+
regex-utilities@2.3.0: {}
|
|
1439
|
+
|
|
1440
|
+
regex@6.1.0:
|
|
1441
|
+
dependencies:
|
|
1442
|
+
regex-utilities: 2.3.0
|
|
1443
|
+
|
|
1444
|
+
rfdc@1.4.1: {}
|
|
1445
|
+
|
|
1446
|
+
rollup@4.61.1:
|
|
1447
|
+
dependencies:
|
|
1448
|
+
'@types/estree': 1.0.9
|
|
1449
|
+
optionalDependencies:
|
|
1450
|
+
'@rollup/rollup-android-arm-eabi': 4.61.1
|
|
1451
|
+
'@rollup/rollup-android-arm64': 4.61.1
|
|
1452
|
+
'@rollup/rollup-darwin-arm64': 4.61.1
|
|
1453
|
+
'@rollup/rollup-darwin-x64': 4.61.1
|
|
1454
|
+
'@rollup/rollup-freebsd-arm64': 4.61.1
|
|
1455
|
+
'@rollup/rollup-freebsd-x64': 4.61.1
|
|
1456
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.61.1
|
|
1457
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.61.1
|
|
1458
|
+
'@rollup/rollup-linux-arm64-gnu': 4.61.1
|
|
1459
|
+
'@rollup/rollup-linux-arm64-musl': 4.61.1
|
|
1460
|
+
'@rollup/rollup-linux-loong64-gnu': 4.61.1
|
|
1461
|
+
'@rollup/rollup-linux-loong64-musl': 4.61.1
|
|
1462
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.61.1
|
|
1463
|
+
'@rollup/rollup-linux-ppc64-musl': 4.61.1
|
|
1464
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.61.1
|
|
1465
|
+
'@rollup/rollup-linux-riscv64-musl': 4.61.1
|
|
1466
|
+
'@rollup/rollup-linux-s390x-gnu': 4.61.1
|
|
1467
|
+
'@rollup/rollup-linux-x64-gnu': 4.61.1
|
|
1468
|
+
'@rollup/rollup-linux-x64-musl': 4.61.1
|
|
1469
|
+
'@rollup/rollup-openbsd-x64': 4.61.1
|
|
1470
|
+
'@rollup/rollup-openharmony-arm64': 4.61.1
|
|
1471
|
+
'@rollup/rollup-win32-arm64-msvc': 4.61.1
|
|
1472
|
+
'@rollup/rollup-win32-ia32-msvc': 4.61.1
|
|
1473
|
+
'@rollup/rollup-win32-x64-gnu': 4.61.1
|
|
1474
|
+
'@rollup/rollup-win32-x64-msvc': 4.61.1
|
|
1475
|
+
fsevents: 2.3.3
|
|
1476
|
+
|
|
1477
|
+
search-insights@2.17.3: {}
|
|
1478
|
+
|
|
1479
|
+
shiki@2.5.0:
|
|
1480
|
+
dependencies:
|
|
1481
|
+
'@shikijs/core': 2.5.0
|
|
1482
|
+
'@shikijs/engine-javascript': 2.5.0
|
|
1483
|
+
'@shikijs/engine-oniguruma': 2.5.0
|
|
1484
|
+
'@shikijs/langs': 2.5.0
|
|
1485
|
+
'@shikijs/themes': 2.5.0
|
|
1486
|
+
'@shikijs/types': 2.5.0
|
|
1487
|
+
'@shikijs/vscode-textmate': 10.0.2
|
|
1488
|
+
'@types/hast': 3.0.4
|
|
1489
|
+
|
|
1490
|
+
source-map-js@1.2.1: {}
|
|
1491
|
+
|
|
1492
|
+
space-separated-tokens@2.0.2: {}
|
|
1493
|
+
|
|
1494
|
+
speakingurl@14.0.1: {}
|
|
1495
|
+
|
|
1496
|
+
stringify-entities@4.0.4:
|
|
1497
|
+
dependencies:
|
|
1498
|
+
character-entities-html4: 2.1.0
|
|
1499
|
+
character-entities-legacy: 3.0.0
|
|
1500
|
+
|
|
1501
|
+
superjson@2.2.6:
|
|
1502
|
+
dependencies:
|
|
1503
|
+
copy-anything: 4.0.5
|
|
1504
|
+
|
|
1505
|
+
tabbable@6.4.0: {}
|
|
1506
|
+
|
|
1507
|
+
trim-lines@3.0.1: {}
|
|
1508
|
+
|
|
1509
|
+
unist-util-is@6.0.1:
|
|
1510
|
+
dependencies:
|
|
1511
|
+
'@types/unist': 3.0.3
|
|
1512
|
+
|
|
1513
|
+
unist-util-position@5.0.0:
|
|
1514
|
+
dependencies:
|
|
1515
|
+
'@types/unist': 3.0.3
|
|
1516
|
+
|
|
1517
|
+
unist-util-stringify-position@4.0.0:
|
|
1518
|
+
dependencies:
|
|
1519
|
+
'@types/unist': 3.0.3
|
|
1520
|
+
|
|
1521
|
+
unist-util-visit-parents@6.0.2:
|
|
1522
|
+
dependencies:
|
|
1523
|
+
'@types/unist': 3.0.3
|
|
1524
|
+
unist-util-is: 6.0.1
|
|
1525
|
+
|
|
1526
|
+
unist-util-visit@5.1.0:
|
|
1527
|
+
dependencies:
|
|
1528
|
+
'@types/unist': 3.0.3
|
|
1529
|
+
unist-util-is: 6.0.1
|
|
1530
|
+
unist-util-visit-parents: 6.0.2
|
|
1531
|
+
|
|
1532
|
+
vfile-message@4.0.3:
|
|
1533
|
+
dependencies:
|
|
1534
|
+
'@types/unist': 3.0.3
|
|
1535
|
+
unist-util-stringify-position: 4.0.0
|
|
1536
|
+
|
|
1537
|
+
vfile@6.0.3:
|
|
1538
|
+
dependencies:
|
|
1539
|
+
'@types/unist': 3.0.3
|
|
1540
|
+
vfile-message: 4.0.3
|
|
1541
|
+
|
|
1542
|
+
vite@5.4.21:
|
|
1543
|
+
dependencies:
|
|
1544
|
+
esbuild: 0.21.5
|
|
1545
|
+
postcss: 8.5.15
|
|
1546
|
+
rollup: 4.61.1
|
|
1547
|
+
optionalDependencies:
|
|
1548
|
+
fsevents: 2.3.3
|
|
1549
|
+
|
|
1550
|
+
vitepress@1.6.4(@algolia/client-search@5.53.0)(postcss@8.5.15)(search-insights@2.17.3):
|
|
1551
|
+
dependencies:
|
|
1552
|
+
'@docsearch/css': 3.8.2
|
|
1553
|
+
'@docsearch/js': 3.8.2(@algolia/client-search@5.53.0)(search-insights@2.17.3)
|
|
1554
|
+
'@iconify-json/simple-icons': 1.2.85
|
|
1555
|
+
'@shikijs/core': 2.5.0
|
|
1556
|
+
'@shikijs/transformers': 2.5.0
|
|
1557
|
+
'@shikijs/types': 2.5.0
|
|
1558
|
+
'@types/markdown-it': 14.1.2
|
|
1559
|
+
'@vitejs/plugin-vue': 5.2.4(vite@5.4.21)(vue@3.5.35)
|
|
1560
|
+
'@vue/devtools-api': 7.7.9
|
|
1561
|
+
'@vue/shared': 3.5.35
|
|
1562
|
+
'@vueuse/core': 12.8.2
|
|
1563
|
+
'@vueuse/integrations': 12.8.2(focus-trap@7.8.0)
|
|
1564
|
+
focus-trap: 7.8.0
|
|
1565
|
+
mark.js: 8.11.1
|
|
1566
|
+
minisearch: 7.2.0
|
|
1567
|
+
shiki: 2.5.0
|
|
1568
|
+
vite: 5.4.21
|
|
1569
|
+
vue: 3.5.35
|
|
1570
|
+
optionalDependencies:
|
|
1571
|
+
postcss: 8.5.15
|
|
1572
|
+
transitivePeerDependencies:
|
|
1573
|
+
- '@algolia/client-search'
|
|
1574
|
+
- '@types/node'
|
|
1575
|
+
- '@types/react'
|
|
1576
|
+
- async-validator
|
|
1577
|
+
- axios
|
|
1578
|
+
- change-case
|
|
1579
|
+
- drauu
|
|
1580
|
+
- fuse.js
|
|
1581
|
+
- idb-keyval
|
|
1582
|
+
- jwt-decode
|
|
1583
|
+
- less
|
|
1584
|
+
- lightningcss
|
|
1585
|
+
- nprogress
|
|
1586
|
+
- qrcode
|
|
1587
|
+
- react
|
|
1588
|
+
- react-dom
|
|
1589
|
+
- sass
|
|
1590
|
+
- sass-embedded
|
|
1591
|
+
- search-insights
|
|
1592
|
+
- sortablejs
|
|
1593
|
+
- stylus
|
|
1594
|
+
- sugarss
|
|
1595
|
+
- terser
|
|
1596
|
+
- typescript
|
|
1597
|
+
- universal-cookie
|
|
1598
|
+
|
|
1599
|
+
vue@3.5.35:
|
|
1600
|
+
dependencies:
|
|
1601
|
+
'@vue/compiler-dom': 3.5.35
|
|
1602
|
+
'@vue/compiler-sfc': 3.5.35
|
|
1603
|
+
'@vue/runtime-dom': 3.5.35
|
|
1604
|
+
'@vue/server-renderer': 3.5.35(vue@3.5.35)
|
|
1605
|
+
'@vue/shared': 3.5.35
|
|
1606
|
+
|
|
1607
|
+
zwitch@2.0.4: {}
|