plutonium 0.60.5 → 0.62.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.claude/skills/plutonium/SKILL.md +19 -1
- data/.claude/skills/plutonium-app/SKILL.md +41 -0
- data/.claude/skills/plutonium-auth/SKILL.md +40 -0
- data/.claude/skills/plutonium-behavior/SKILL.md +47 -1
- data/.claude/skills/plutonium-kanban/SKILL.md +378 -0
- data/.claude/skills/plutonium-resource/SKILL.md +40 -0
- data/.claude/skills/plutonium-tenancy/SKILL.md +43 -0
- data/.claude/skills/plutonium-testing/SKILL.md +38 -0
- data/.claude/skills/plutonium-ui/SKILL.md +51 -0
- data/.claude/skills/plutonium-wizard/SKILL.md +469 -0
- data/.cliff.toml +6 -0
- data/Appraisals +3 -0
- data/CHANGELOG.md +576 -439
- data/CLAUDE.md +15 -7
- data/app/assets/plutonium.css +1 -1
- data/app/assets/plutonium.js +1173 -194
- data/app/assets/plutonium.js.map +4 -4
- data/app/assets/plutonium.min.js +53 -53
- data/app/assets/plutonium.min.js.map +4 -4
- data/app/views/layouts/basic.html.erb +7 -0
- data/app/views/plutonium/_flash_toasts.html.erb +2 -46
- data/app/views/plutonium/_toast.html.erb +52 -0
- data/app/views/resource/_kanban_move_action_form.html.erb +1 -0
- data/app/views/resource/_resource_kanban.html.erb +1 -0
- data/app/views/resource/kanban_move_form.html.erb +1 -0
- data/config/brakeman.ignore +2 -2
- data/db/migrate/wizard/20260615000001_create_plutonium_wizard_sessions.rb +57 -0
- data/docs/.vitepress/config.ts +45 -1
- data/docs/.vitepress/sync-skills.mjs +45 -0
- data/docs/ai.md +99 -0
- data/docs/guides/index.md +2 -0
- data/docs/guides/kanban.md +557 -0
- data/docs/guides/wizards.md +447 -0
- data/docs/public/images/guides/kanban-after-move.png +0 -0
- data/docs/public/images/guides/kanban-board-light.png +0 -0
- data/docs/public/images/guides/kanban-board.png +0 -0
- data/docs/public/images/guides/kanban-show-centered-modal.png +0 -0
- data/docs/public/images/guides/kanban-wip-toast.png +0 -0
- data/docs/public/images/guides/wizards-chooser.png +0 -0
- data/docs/public/images/guides/wizards-completed.png +0 -0
- data/docs/public/images/guides/wizards-index-action.png +0 -0
- data/docs/public/images/guides/wizards-repeater.png +0 -0
- data/docs/public/images/guides/wizards-review.png +0 -0
- data/docs/public/images/guides/wizards-step.png +0 -0
- data/docs/reference/behavior/policies.md +1 -1
- data/docs/reference/index.md +14 -0
- data/docs/reference/kanban/authorization.md +82 -0
- data/docs/reference/kanban/dsl.md +334 -0
- data/docs/reference/kanban/index.md +40 -0
- data/docs/reference/kanban/positioning.md +162 -0
- data/docs/reference/resource/definition.md +26 -1
- data/docs/reference/resource/model.md +26 -0
- data/docs/reference/ui/forms.md +77 -0
- data/docs/reference/ui/pages.md +2 -0
- data/docs/reference/wizard/anchoring-resume.md +194 -0
- data/docs/reference/wizard/dsl.md +337 -0
- data/docs/reference/wizard/index.md +33 -0
- data/docs/reference/wizard/one-time.md +129 -0
- data/docs/reference/wizard/registration-launch.md +177 -0
- data/docs/reference/wizard/storage-config.md +151 -0
- data/docs/superpowers/plans/2026-06-14-form-sectioning.md +2 -2
- data/docs/superpowers/plans/2026-06-15-wizard-dsl.md +1619 -0
- data/docs/superpowers/plans/2026-06-15-wizard-dsl.md.tasks.json +68 -0
- data/docs/superpowers/plans/2026-06-26-kanban-dsl.md +1128 -0
- data/docs/superpowers/plans/2026-06-26-kanban-dsl.md.tasks.json +24 -0
- data/docs/superpowers/plans/2026-07-02-kanban-drop-interactions.md +714 -0
- data/docs/superpowers/plans/2026-07-02-kanban-drop-interactions.md.tasks.json +68 -0
- data/docs/superpowers/specs/2026-06-15-wizard-dsl-design.md +836 -0
- data/docs/superpowers/specs/2026-06-15-wizard-dsl-examples.rb +245 -0
- data/docs/superpowers/specs/2026-06-17-wizard-relaunch-prompt-design.md +86 -0
- data/docs/superpowers/specs/2026-06-18-wizard-attachments-design.md +101 -0
- data/docs/superpowers/specs/2026-06-18-wizard-hosting-design.md +220 -0
- data/docs/superpowers/specs/2026-06-26-kanban-dsl-design.md +388 -0
- data/docs/superpowers/specs/2026-07-03-kanban-auth-simplification.md +159 -0
- data/gemfiles/postgres.gemfile +8 -0
- data/gemfiles/postgres.gemfile.lock +321 -0
- data/gemfiles/rails_7.gemfile +1 -0
- data/gemfiles/rails_7.gemfile.lock +1 -1
- data/gemfiles/rails_8.0.gemfile +1 -0
- data/gemfiles/rails_8.0.gemfile.lock +1 -1
- data/gemfiles/rails_8.1.gemfile +1 -0
- data/gemfiles/rails_8.1.gemfile.lock +14 -1
- data/lib/generators/pu/gem/active_shrine/active_shrine_generator.rb +5 -0
- data/lib/generators/pu/invites/templates/packages/invites/app/controllers/invites/user_invitations_controller.rb.tt +6 -1
- data/lib/plutonium/action/base.rb +17 -0
- data/lib/plutonium/auth/rodauth.rb +1 -2
- data/lib/plutonium/configuration.rb +16 -0
- data/lib/plutonium/core/controller.rb +20 -1
- data/lib/plutonium/definition/base.rb +25 -0
- data/lib/plutonium/definition/form_layout.rb +54 -35
- data/lib/plutonium/definition/index_views.rb +70 -1
- data/lib/plutonium/definition/wizards.rb +209 -0
- data/lib/plutonium/invites/concerns/invite_token.rb +9 -0
- data/lib/plutonium/invites/concerns/invite_user.rb +9 -0
- data/lib/plutonium/invites/controller.rb +4 -1
- data/lib/plutonium/kanban/action.rb +7 -0
- data/lib/plutonium/kanban/board.rb +40 -0
- data/lib/plutonium/kanban/broadcaster.rb +54 -0
- data/lib/plutonium/kanban/column.rb +122 -0
- data/lib/plutonium/kanban/context.rb +15 -0
- data/lib/plutonium/kanban/dsl.rb +71 -0
- data/lib/plutonium/kanban/grouping.rb +51 -0
- data/lib/plutonium/kanban/positioning.rb +75 -0
- data/lib/plutonium/kanban.rb +11 -0
- data/lib/plutonium/migrations.rb +40 -0
- data/lib/plutonium/models/has_cents.rb +30 -2
- data/lib/plutonium/positioning.rb +146 -0
- data/lib/plutonium/railtie.rb +33 -0
- data/lib/plutonium/resource/controller.rb +24 -1
- data/lib/plutonium/resource/controllers/crud_actions.rb +9 -1
- data/lib/plutonium/resource/controllers/kanban_actions.rb +851 -0
- data/lib/plutonium/resource/controllers/wizard_actions.rb +165 -0
- data/lib/plutonium/resource/policy.rb +14 -0
- data/lib/plutonium/routing/mapper_extensions.rb +45 -0
- data/lib/plutonium/routing/wizard_registration.rb +289 -0
- data/lib/plutonium/ui/display/components/currency.rb +41 -9
- data/lib/plutonium/ui/display/options/inferred_types.rb +2 -5
- data/lib/plutonium/ui/display/resource.rb +17 -12
- data/lib/plutonium/ui/form/base.rb +25 -5
- data/lib/plutonium/ui/form/components/currency.rb +64 -0
- data/lib/plutonium/ui/form/components/intl_tel_input.rb +27 -1
- data/lib/plutonium/ui/form/components/password.rb +126 -0
- data/lib/plutonium/ui/form/components/uppy.rb +26 -5
- data/lib/plutonium/ui/form/kanban_move.rb +46 -0
- data/lib/plutonium/ui/form/options/inferred_types.rb +26 -0
- data/lib/plutonium/ui/form/resource.rb +13 -1
- data/lib/plutonium/ui/form/theme.rb +7 -0
- data/lib/plutonium/ui/form/wizard.rb +63 -0
- data/lib/plutonium/ui/grid/card.rb +56 -18
- data/lib/plutonium/ui/kanban/card.rb +67 -0
- data/lib/plutonium/ui/kanban/color_dot.rb +36 -0
- data/lib/plutonium/ui/kanban/column.rb +411 -0
- data/lib/plutonium/ui/kanban/resource.rb +319 -0
- data/lib/plutonium/ui/layout/base.rb +1 -1
- data/lib/plutonium/ui/layout/resource_layout.rb +7 -1
- data/lib/plutonium/ui/modal/base.rb +30 -3
- data/lib/plutonium/ui/modal/centered.rb +5 -2
- data/lib/plutonium/ui/options/has_cents_field.rb +21 -0
- data/lib/plutonium/ui/page/index.rb +2 -1
- data/lib/plutonium/ui/page/interactive_action.rb +12 -2
- data/lib/plutonium/ui/page/kanban_move.rb +20 -0
- data/lib/plutonium/ui/page/show.rb +29 -1
- data/lib/plutonium/ui/page/wizard.rb +371 -0
- data/lib/plutonium/ui/page/wizard_chooser.rb +97 -0
- data/lib/plutonium/ui/page/wizard_completed.rb +86 -0
- data/lib/plutonium/ui/table/base.rb +1 -1
- data/lib/plutonium/ui/table/components/view_switcher.rb +2 -1
- data/lib/plutonium/ui/table/resource.rb +1 -1
- data/lib/plutonium/ui/wizard/review.rb +196 -0
- data/lib/plutonium/ui/wizard/stepper.rb +122 -0
- data/lib/plutonium/ui/wizard/summary_display.rb +92 -0
- data/lib/plutonium/version.rb +1 -1
- data/lib/plutonium/wizard/attachment_data.rb +42 -0
- data/lib/plutonium/wizard/attachments.rb +226 -0
- data/lib/plutonium/wizard/base.rb +216 -0
- data/lib/plutonium/wizard/base_controller.rb +31 -0
- data/lib/plutonium/wizard/configuration.rb +42 -0
- data/lib/plutonium/wizard/controller.rb +162 -0
- data/lib/plutonium/wizard/data.rb +134 -0
- data/lib/plutonium/wizard/driving.rb +639 -0
- data/lib/plutonium/wizard/dsl.rb +336 -0
- data/lib/plutonium/wizard/errors.rb +27 -0
- data/lib/plutonium/wizard/field_capture.rb +157 -0
- data/lib/plutonium/wizard/field_importer.rb +208 -0
- data/lib/plutonium/wizard/gate.rb +171 -0
- data/lib/plutonium/wizard/instance_key.rb +97 -0
- data/lib/plutonium/wizard/lazy_persisted.rb +77 -0
- data/lib/plutonium/wizard/resume.rb +250 -0
- data/lib/plutonium/wizard/review_step.rb +48 -0
- data/lib/plutonium/wizard/route_resolution.rb +40 -0
- data/lib/plutonium/wizard/runner.rb +684 -0
- data/lib/plutonium/wizard/session.rb +53 -0
- data/lib/plutonium/wizard/state.rb +35 -0
- data/lib/plutonium/wizard/step.rb +61 -0
- data/lib/plutonium/wizard/step_adapter.rb +103 -0
- data/lib/plutonium/wizard/store/active_record.rb +174 -0
- data/lib/plutonium/wizard/store/base.rb +42 -0
- data/lib/plutonium/wizard/store/memory.rb +44 -0
- data/lib/plutonium/wizard/sweep_job.rb +76 -0
- data/lib/plutonium/wizard.rb +86 -0
- data/lib/plutonium.rb +5 -0
- data/lib/rodauth/features/case_insensitive_login.rb +1 -1
- data/lib/tasks/release.rake +144 -191
- data/package.json +7 -5
- data/src/css/components.css +137 -0
- data/src/js/controllers/attachment_input_controller.js +15 -1
- data/src/js/controllers/currency_input_controller.js +39 -0
- data/src/js/controllers/dirty_form_guard_controller.js +155 -27
- data/src/js/controllers/intl_tel_input_controller.js +4 -0
- data/src/js/controllers/kanban_controller.js +717 -0
- data/src/js/controllers/password_sentinel_controller.js +39 -0
- data/src/js/controllers/register_controllers.js +8 -0
- data/src/js/controllers/remote_modal_controller.js +10 -0
- data/src/js/controllers/row_click_controller.js +14 -1
- data/src/js/controllers/wizard_controller.js +54 -0
- data/src/js/turbo/turbo_confirm.js +1 -1
- data/yarn.lock +945 -286
- metadata +113 -2
data/yarn.lock
CHANGED
|
@@ -360,9 +360,9 @@ __metadata:
|
|
|
360
360
|
languageName: node
|
|
361
361
|
linkType: hard
|
|
362
362
|
|
|
363
|
-
"@esbuild/aix-ppc64@npm:0.28.
|
|
364
|
-
version: 0.28.
|
|
365
|
-
resolution: "@esbuild/aix-ppc64@npm:0.28.
|
|
363
|
+
"@esbuild/aix-ppc64@npm:0.28.1":
|
|
364
|
+
version: 0.28.1
|
|
365
|
+
resolution: "@esbuild/aix-ppc64@npm:0.28.1"
|
|
366
366
|
conditions: os=aix & cpu=ppc64
|
|
367
367
|
languageName: node
|
|
368
368
|
linkType: hard
|
|
@@ -374,9 +374,9 @@ __metadata:
|
|
|
374
374
|
languageName: node
|
|
375
375
|
linkType: hard
|
|
376
376
|
|
|
377
|
-
"@esbuild/android-arm64@npm:0.28.
|
|
378
|
-
version: 0.28.
|
|
379
|
-
resolution: "@esbuild/android-arm64@npm:0.28.
|
|
377
|
+
"@esbuild/android-arm64@npm:0.28.1":
|
|
378
|
+
version: 0.28.1
|
|
379
|
+
resolution: "@esbuild/android-arm64@npm:0.28.1"
|
|
380
380
|
conditions: os=android & cpu=arm64
|
|
381
381
|
languageName: node
|
|
382
382
|
linkType: hard
|
|
@@ -388,9 +388,9 @@ __metadata:
|
|
|
388
388
|
languageName: node
|
|
389
389
|
linkType: hard
|
|
390
390
|
|
|
391
|
-
"@esbuild/android-arm@npm:0.28.
|
|
392
|
-
version: 0.28.
|
|
393
|
-
resolution: "@esbuild/android-arm@npm:0.28.
|
|
391
|
+
"@esbuild/android-arm@npm:0.28.1":
|
|
392
|
+
version: 0.28.1
|
|
393
|
+
resolution: "@esbuild/android-arm@npm:0.28.1"
|
|
394
394
|
conditions: os=android & cpu=arm
|
|
395
395
|
languageName: node
|
|
396
396
|
linkType: hard
|
|
@@ -402,9 +402,9 @@ __metadata:
|
|
|
402
402
|
languageName: node
|
|
403
403
|
linkType: hard
|
|
404
404
|
|
|
405
|
-
"@esbuild/android-x64@npm:0.28.
|
|
406
|
-
version: 0.28.
|
|
407
|
-
resolution: "@esbuild/android-x64@npm:0.28.
|
|
405
|
+
"@esbuild/android-x64@npm:0.28.1":
|
|
406
|
+
version: 0.28.1
|
|
407
|
+
resolution: "@esbuild/android-x64@npm:0.28.1"
|
|
408
408
|
conditions: os=android & cpu=x64
|
|
409
409
|
languageName: node
|
|
410
410
|
linkType: hard
|
|
@@ -416,9 +416,9 @@ __metadata:
|
|
|
416
416
|
languageName: node
|
|
417
417
|
linkType: hard
|
|
418
418
|
|
|
419
|
-
"@esbuild/darwin-arm64@npm:0.28.
|
|
420
|
-
version: 0.28.
|
|
421
|
-
resolution: "@esbuild/darwin-arm64@npm:0.28.
|
|
419
|
+
"@esbuild/darwin-arm64@npm:0.28.1":
|
|
420
|
+
version: 0.28.1
|
|
421
|
+
resolution: "@esbuild/darwin-arm64@npm:0.28.1"
|
|
422
422
|
conditions: os=darwin & cpu=arm64
|
|
423
423
|
languageName: node
|
|
424
424
|
linkType: hard
|
|
@@ -430,9 +430,9 @@ __metadata:
|
|
|
430
430
|
languageName: node
|
|
431
431
|
linkType: hard
|
|
432
432
|
|
|
433
|
-
"@esbuild/darwin-x64@npm:0.28.
|
|
434
|
-
version: 0.28.
|
|
435
|
-
resolution: "@esbuild/darwin-x64@npm:0.28.
|
|
433
|
+
"@esbuild/darwin-x64@npm:0.28.1":
|
|
434
|
+
version: 0.28.1
|
|
435
|
+
resolution: "@esbuild/darwin-x64@npm:0.28.1"
|
|
436
436
|
conditions: os=darwin & cpu=x64
|
|
437
437
|
languageName: node
|
|
438
438
|
linkType: hard
|
|
@@ -444,9 +444,9 @@ __metadata:
|
|
|
444
444
|
languageName: node
|
|
445
445
|
linkType: hard
|
|
446
446
|
|
|
447
|
-
"@esbuild/freebsd-arm64@npm:0.28.
|
|
448
|
-
version: 0.28.
|
|
449
|
-
resolution: "@esbuild/freebsd-arm64@npm:0.28.
|
|
447
|
+
"@esbuild/freebsd-arm64@npm:0.28.1":
|
|
448
|
+
version: 0.28.1
|
|
449
|
+
resolution: "@esbuild/freebsd-arm64@npm:0.28.1"
|
|
450
450
|
conditions: os=freebsd & cpu=arm64
|
|
451
451
|
languageName: node
|
|
452
452
|
linkType: hard
|
|
@@ -458,9 +458,9 @@ __metadata:
|
|
|
458
458
|
languageName: node
|
|
459
459
|
linkType: hard
|
|
460
460
|
|
|
461
|
-
"@esbuild/freebsd-x64@npm:0.28.
|
|
462
|
-
version: 0.28.
|
|
463
|
-
resolution: "@esbuild/freebsd-x64@npm:0.28.
|
|
461
|
+
"@esbuild/freebsd-x64@npm:0.28.1":
|
|
462
|
+
version: 0.28.1
|
|
463
|
+
resolution: "@esbuild/freebsd-x64@npm:0.28.1"
|
|
464
464
|
conditions: os=freebsd & cpu=x64
|
|
465
465
|
languageName: node
|
|
466
466
|
linkType: hard
|
|
@@ -472,9 +472,9 @@ __metadata:
|
|
|
472
472
|
languageName: node
|
|
473
473
|
linkType: hard
|
|
474
474
|
|
|
475
|
-
"@esbuild/linux-arm64@npm:0.28.
|
|
476
|
-
version: 0.28.
|
|
477
|
-
resolution: "@esbuild/linux-arm64@npm:0.28.
|
|
475
|
+
"@esbuild/linux-arm64@npm:0.28.1":
|
|
476
|
+
version: 0.28.1
|
|
477
|
+
resolution: "@esbuild/linux-arm64@npm:0.28.1"
|
|
478
478
|
conditions: os=linux & cpu=arm64
|
|
479
479
|
languageName: node
|
|
480
480
|
linkType: hard
|
|
@@ -486,9 +486,9 @@ __metadata:
|
|
|
486
486
|
languageName: node
|
|
487
487
|
linkType: hard
|
|
488
488
|
|
|
489
|
-
"@esbuild/linux-arm@npm:0.28.
|
|
490
|
-
version: 0.28.
|
|
491
|
-
resolution: "@esbuild/linux-arm@npm:0.28.
|
|
489
|
+
"@esbuild/linux-arm@npm:0.28.1":
|
|
490
|
+
version: 0.28.1
|
|
491
|
+
resolution: "@esbuild/linux-arm@npm:0.28.1"
|
|
492
492
|
conditions: os=linux & cpu=arm
|
|
493
493
|
languageName: node
|
|
494
494
|
linkType: hard
|
|
@@ -500,9 +500,9 @@ __metadata:
|
|
|
500
500
|
languageName: node
|
|
501
501
|
linkType: hard
|
|
502
502
|
|
|
503
|
-
"@esbuild/linux-ia32@npm:0.28.
|
|
504
|
-
version: 0.28.
|
|
505
|
-
resolution: "@esbuild/linux-ia32@npm:0.28.
|
|
503
|
+
"@esbuild/linux-ia32@npm:0.28.1":
|
|
504
|
+
version: 0.28.1
|
|
505
|
+
resolution: "@esbuild/linux-ia32@npm:0.28.1"
|
|
506
506
|
conditions: os=linux & cpu=ia32
|
|
507
507
|
languageName: node
|
|
508
508
|
linkType: hard
|
|
@@ -514,9 +514,9 @@ __metadata:
|
|
|
514
514
|
languageName: node
|
|
515
515
|
linkType: hard
|
|
516
516
|
|
|
517
|
-
"@esbuild/linux-loong64@npm:0.28.
|
|
518
|
-
version: 0.28.
|
|
519
|
-
resolution: "@esbuild/linux-loong64@npm:0.28.
|
|
517
|
+
"@esbuild/linux-loong64@npm:0.28.1":
|
|
518
|
+
version: 0.28.1
|
|
519
|
+
resolution: "@esbuild/linux-loong64@npm:0.28.1"
|
|
520
520
|
conditions: os=linux & cpu=loong64
|
|
521
521
|
languageName: node
|
|
522
522
|
linkType: hard
|
|
@@ -528,9 +528,9 @@ __metadata:
|
|
|
528
528
|
languageName: node
|
|
529
529
|
linkType: hard
|
|
530
530
|
|
|
531
|
-
"@esbuild/linux-mips64el@npm:0.28.
|
|
532
|
-
version: 0.28.
|
|
533
|
-
resolution: "@esbuild/linux-mips64el@npm:0.28.
|
|
531
|
+
"@esbuild/linux-mips64el@npm:0.28.1":
|
|
532
|
+
version: 0.28.1
|
|
533
|
+
resolution: "@esbuild/linux-mips64el@npm:0.28.1"
|
|
534
534
|
conditions: os=linux & cpu=mips64el
|
|
535
535
|
languageName: node
|
|
536
536
|
linkType: hard
|
|
@@ -542,9 +542,9 @@ __metadata:
|
|
|
542
542
|
languageName: node
|
|
543
543
|
linkType: hard
|
|
544
544
|
|
|
545
|
-
"@esbuild/linux-ppc64@npm:0.28.
|
|
546
|
-
version: 0.28.
|
|
547
|
-
resolution: "@esbuild/linux-ppc64@npm:0.28.
|
|
545
|
+
"@esbuild/linux-ppc64@npm:0.28.1":
|
|
546
|
+
version: 0.28.1
|
|
547
|
+
resolution: "@esbuild/linux-ppc64@npm:0.28.1"
|
|
548
548
|
conditions: os=linux & cpu=ppc64
|
|
549
549
|
languageName: node
|
|
550
550
|
linkType: hard
|
|
@@ -556,9 +556,9 @@ __metadata:
|
|
|
556
556
|
languageName: node
|
|
557
557
|
linkType: hard
|
|
558
558
|
|
|
559
|
-
"@esbuild/linux-riscv64@npm:0.28.
|
|
560
|
-
version: 0.28.
|
|
561
|
-
resolution: "@esbuild/linux-riscv64@npm:0.28.
|
|
559
|
+
"@esbuild/linux-riscv64@npm:0.28.1":
|
|
560
|
+
version: 0.28.1
|
|
561
|
+
resolution: "@esbuild/linux-riscv64@npm:0.28.1"
|
|
562
562
|
conditions: os=linux & cpu=riscv64
|
|
563
563
|
languageName: node
|
|
564
564
|
linkType: hard
|
|
@@ -570,9 +570,9 @@ __metadata:
|
|
|
570
570
|
languageName: node
|
|
571
571
|
linkType: hard
|
|
572
572
|
|
|
573
|
-
"@esbuild/linux-s390x@npm:0.28.
|
|
574
|
-
version: 0.28.
|
|
575
|
-
resolution: "@esbuild/linux-s390x@npm:0.28.
|
|
573
|
+
"@esbuild/linux-s390x@npm:0.28.1":
|
|
574
|
+
version: 0.28.1
|
|
575
|
+
resolution: "@esbuild/linux-s390x@npm:0.28.1"
|
|
576
576
|
conditions: os=linux & cpu=s390x
|
|
577
577
|
languageName: node
|
|
578
578
|
linkType: hard
|
|
@@ -584,16 +584,16 @@ __metadata:
|
|
|
584
584
|
languageName: node
|
|
585
585
|
linkType: hard
|
|
586
586
|
|
|
587
|
-
"@esbuild/linux-x64@npm:0.28.
|
|
588
|
-
version: 0.28.
|
|
589
|
-
resolution: "@esbuild/linux-x64@npm:0.28.
|
|
587
|
+
"@esbuild/linux-x64@npm:0.28.1":
|
|
588
|
+
version: 0.28.1
|
|
589
|
+
resolution: "@esbuild/linux-x64@npm:0.28.1"
|
|
590
590
|
conditions: os=linux & cpu=x64
|
|
591
591
|
languageName: node
|
|
592
592
|
linkType: hard
|
|
593
593
|
|
|
594
|
-
"@esbuild/netbsd-arm64@npm:0.28.
|
|
595
|
-
version: 0.28.
|
|
596
|
-
resolution: "@esbuild/netbsd-arm64@npm:0.28.
|
|
594
|
+
"@esbuild/netbsd-arm64@npm:0.28.1":
|
|
595
|
+
version: 0.28.1
|
|
596
|
+
resolution: "@esbuild/netbsd-arm64@npm:0.28.1"
|
|
597
597
|
conditions: os=netbsd & cpu=arm64
|
|
598
598
|
languageName: node
|
|
599
599
|
linkType: hard
|
|
@@ -605,16 +605,16 @@ __metadata:
|
|
|
605
605
|
languageName: node
|
|
606
606
|
linkType: hard
|
|
607
607
|
|
|
608
|
-
"@esbuild/netbsd-x64@npm:0.28.
|
|
609
|
-
version: 0.28.
|
|
610
|
-
resolution: "@esbuild/netbsd-x64@npm:0.28.
|
|
608
|
+
"@esbuild/netbsd-x64@npm:0.28.1":
|
|
609
|
+
version: 0.28.1
|
|
610
|
+
resolution: "@esbuild/netbsd-x64@npm:0.28.1"
|
|
611
611
|
conditions: os=netbsd & cpu=x64
|
|
612
612
|
languageName: node
|
|
613
613
|
linkType: hard
|
|
614
614
|
|
|
615
|
-
"@esbuild/openbsd-arm64@npm:0.28.
|
|
616
|
-
version: 0.28.
|
|
617
|
-
resolution: "@esbuild/openbsd-arm64@npm:0.28.
|
|
615
|
+
"@esbuild/openbsd-arm64@npm:0.28.1":
|
|
616
|
+
version: 0.28.1
|
|
617
|
+
resolution: "@esbuild/openbsd-arm64@npm:0.28.1"
|
|
618
618
|
conditions: os=openbsd & cpu=arm64
|
|
619
619
|
languageName: node
|
|
620
620
|
linkType: hard
|
|
@@ -626,16 +626,16 @@ __metadata:
|
|
|
626
626
|
languageName: node
|
|
627
627
|
linkType: hard
|
|
628
628
|
|
|
629
|
-
"@esbuild/openbsd-x64@npm:0.28.
|
|
630
|
-
version: 0.28.
|
|
631
|
-
resolution: "@esbuild/openbsd-x64@npm:0.28.
|
|
629
|
+
"@esbuild/openbsd-x64@npm:0.28.1":
|
|
630
|
+
version: 0.28.1
|
|
631
|
+
resolution: "@esbuild/openbsd-x64@npm:0.28.1"
|
|
632
632
|
conditions: os=openbsd & cpu=x64
|
|
633
633
|
languageName: node
|
|
634
634
|
linkType: hard
|
|
635
635
|
|
|
636
|
-
"@esbuild/openharmony-arm64@npm:0.28.
|
|
637
|
-
version: 0.28.
|
|
638
|
-
resolution: "@esbuild/openharmony-arm64@npm:0.28.
|
|
636
|
+
"@esbuild/openharmony-arm64@npm:0.28.1":
|
|
637
|
+
version: 0.28.1
|
|
638
|
+
resolution: "@esbuild/openharmony-arm64@npm:0.28.1"
|
|
639
639
|
conditions: os=openharmony & cpu=arm64
|
|
640
640
|
languageName: node
|
|
641
641
|
linkType: hard
|
|
@@ -647,9 +647,9 @@ __metadata:
|
|
|
647
647
|
languageName: node
|
|
648
648
|
linkType: hard
|
|
649
649
|
|
|
650
|
-
"@esbuild/sunos-x64@npm:0.28.
|
|
651
|
-
version: 0.28.
|
|
652
|
-
resolution: "@esbuild/sunos-x64@npm:0.28.
|
|
650
|
+
"@esbuild/sunos-x64@npm:0.28.1":
|
|
651
|
+
version: 0.28.1
|
|
652
|
+
resolution: "@esbuild/sunos-x64@npm:0.28.1"
|
|
653
653
|
conditions: os=sunos & cpu=x64
|
|
654
654
|
languageName: node
|
|
655
655
|
linkType: hard
|
|
@@ -661,9 +661,9 @@ __metadata:
|
|
|
661
661
|
languageName: node
|
|
662
662
|
linkType: hard
|
|
663
663
|
|
|
664
|
-
"@esbuild/win32-arm64@npm:0.28.
|
|
665
|
-
version: 0.28.
|
|
666
|
-
resolution: "@esbuild/win32-arm64@npm:0.28.
|
|
664
|
+
"@esbuild/win32-arm64@npm:0.28.1":
|
|
665
|
+
version: 0.28.1
|
|
666
|
+
resolution: "@esbuild/win32-arm64@npm:0.28.1"
|
|
667
667
|
conditions: os=win32 & cpu=arm64
|
|
668
668
|
languageName: node
|
|
669
669
|
linkType: hard
|
|
@@ -675,9 +675,9 @@ __metadata:
|
|
|
675
675
|
languageName: node
|
|
676
676
|
linkType: hard
|
|
677
677
|
|
|
678
|
-
"@esbuild/win32-ia32@npm:0.28.
|
|
679
|
-
version: 0.28.
|
|
680
|
-
resolution: "@esbuild/win32-ia32@npm:0.28.
|
|
678
|
+
"@esbuild/win32-ia32@npm:0.28.1":
|
|
679
|
+
version: 0.28.1
|
|
680
|
+
resolution: "@esbuild/win32-ia32@npm:0.28.1"
|
|
681
681
|
conditions: os=win32 & cpu=ia32
|
|
682
682
|
languageName: node
|
|
683
683
|
linkType: hard
|
|
@@ -689,9 +689,9 @@ __metadata:
|
|
|
689
689
|
languageName: node
|
|
690
690
|
linkType: hard
|
|
691
691
|
|
|
692
|
-
"@esbuild/win32-x64@npm:0.28.
|
|
693
|
-
version: 0.28.
|
|
694
|
-
resolution: "@esbuild/win32-x64@npm:0.28.
|
|
692
|
+
"@esbuild/win32-x64@npm:0.28.1":
|
|
693
|
+
version: 0.28.1
|
|
694
|
+
resolution: "@esbuild/win32-x64@npm:0.28.1"
|
|
695
695
|
conditions: os=win32 & cpu=x64
|
|
696
696
|
languageName: node
|
|
697
697
|
linkType: hard
|
|
@@ -888,8 +888,8 @@ __metadata:
|
|
|
888
888
|
chokidar-cli: "npm:^3.0.0"
|
|
889
889
|
concurrently: "npm:^8.2.2"
|
|
890
890
|
cssnano: "npm:^7.0.2"
|
|
891
|
-
dompurify: "npm:^3.4.
|
|
892
|
-
esbuild: "npm:^0.28.
|
|
891
|
+
dompurify: "npm:^3.4.11"
|
|
892
|
+
esbuild: "npm:^0.28.1"
|
|
893
893
|
esbuild-plugin-manifest: "npm:^1.0.3"
|
|
894
894
|
flowbite-typography: "npm:^1.0.5"
|
|
895
895
|
lodash.debounce: "npm:^4.0.8"
|
|
@@ -902,181 +902,182 @@ __metadata:
|
|
|
902
902
|
postcss-import: "npm:^16.1.1"
|
|
903
903
|
tailwindcss: "npm:^4.3.0"
|
|
904
904
|
vitepress: "npm:^1.6.4"
|
|
905
|
+
vitepress-plugin-llms: "npm:^1.13.2"
|
|
905
906
|
vitepress-plugin-mermaid: "npm:^2.0.17"
|
|
906
907
|
languageName: unknown
|
|
907
908
|
linkType: soft
|
|
908
909
|
|
|
909
|
-
"@rollup/rollup-android-arm-eabi@npm:4.
|
|
910
|
-
version: 4.
|
|
911
|
-
resolution: "@rollup/rollup-android-arm-eabi@npm:4.
|
|
910
|
+
"@rollup/rollup-android-arm-eabi@npm:4.62.2":
|
|
911
|
+
version: 4.62.2
|
|
912
|
+
resolution: "@rollup/rollup-android-arm-eabi@npm:4.62.2"
|
|
912
913
|
conditions: os=android & cpu=arm
|
|
913
914
|
languageName: node
|
|
914
915
|
linkType: hard
|
|
915
916
|
|
|
916
|
-
"@rollup/rollup-android-arm64@npm:4.
|
|
917
|
-
version: 4.
|
|
918
|
-
resolution: "@rollup/rollup-android-arm64@npm:4.
|
|
917
|
+
"@rollup/rollup-android-arm64@npm:4.62.2":
|
|
918
|
+
version: 4.62.2
|
|
919
|
+
resolution: "@rollup/rollup-android-arm64@npm:4.62.2"
|
|
919
920
|
conditions: os=android & cpu=arm64
|
|
920
921
|
languageName: node
|
|
921
922
|
linkType: hard
|
|
922
923
|
|
|
923
|
-
"@rollup/rollup-darwin-arm64@npm:4.
|
|
924
|
-
version: 4.
|
|
925
|
-
resolution: "@rollup/rollup-darwin-arm64@npm:4.
|
|
924
|
+
"@rollup/rollup-darwin-arm64@npm:4.62.2":
|
|
925
|
+
version: 4.62.2
|
|
926
|
+
resolution: "@rollup/rollup-darwin-arm64@npm:4.62.2"
|
|
926
927
|
conditions: os=darwin & cpu=arm64
|
|
927
928
|
languageName: node
|
|
928
929
|
linkType: hard
|
|
929
930
|
|
|
930
|
-
"@rollup/rollup-darwin-x64@npm:4.
|
|
931
|
-
version: 4.
|
|
932
|
-
resolution: "@rollup/rollup-darwin-x64@npm:4.
|
|
931
|
+
"@rollup/rollup-darwin-x64@npm:4.62.2":
|
|
932
|
+
version: 4.62.2
|
|
933
|
+
resolution: "@rollup/rollup-darwin-x64@npm:4.62.2"
|
|
933
934
|
conditions: os=darwin & cpu=x64
|
|
934
935
|
languageName: node
|
|
935
936
|
linkType: hard
|
|
936
937
|
|
|
937
|
-
"@rollup/rollup-freebsd-arm64@npm:4.
|
|
938
|
-
version: 4.
|
|
939
|
-
resolution: "@rollup/rollup-freebsd-arm64@npm:4.
|
|
938
|
+
"@rollup/rollup-freebsd-arm64@npm:4.62.2":
|
|
939
|
+
version: 4.62.2
|
|
940
|
+
resolution: "@rollup/rollup-freebsd-arm64@npm:4.62.2"
|
|
940
941
|
conditions: os=freebsd & cpu=arm64
|
|
941
942
|
languageName: node
|
|
942
943
|
linkType: hard
|
|
943
944
|
|
|
944
|
-
"@rollup/rollup-freebsd-x64@npm:4.
|
|
945
|
-
version: 4.
|
|
946
|
-
resolution: "@rollup/rollup-freebsd-x64@npm:4.
|
|
945
|
+
"@rollup/rollup-freebsd-x64@npm:4.62.2":
|
|
946
|
+
version: 4.62.2
|
|
947
|
+
resolution: "@rollup/rollup-freebsd-x64@npm:4.62.2"
|
|
947
948
|
conditions: os=freebsd & cpu=x64
|
|
948
949
|
languageName: node
|
|
949
950
|
linkType: hard
|
|
950
951
|
|
|
951
|
-
"@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
952
|
-
version: 4.
|
|
953
|
-
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.
|
|
952
|
+
"@rollup/rollup-linux-arm-gnueabihf@npm:4.62.2":
|
|
953
|
+
version: 4.62.2
|
|
954
|
+
resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.62.2"
|
|
954
955
|
conditions: os=linux & cpu=arm & libc=glibc
|
|
955
956
|
languageName: node
|
|
956
957
|
linkType: hard
|
|
957
958
|
|
|
958
|
-
"@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
959
|
-
version: 4.
|
|
960
|
-
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.
|
|
959
|
+
"@rollup/rollup-linux-arm-musleabihf@npm:4.62.2":
|
|
960
|
+
version: 4.62.2
|
|
961
|
+
resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.62.2"
|
|
961
962
|
conditions: os=linux & cpu=arm & libc=musl
|
|
962
963
|
languageName: node
|
|
963
964
|
linkType: hard
|
|
964
965
|
|
|
965
|
-
"@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
966
|
-
version: 4.
|
|
967
|
-
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.
|
|
966
|
+
"@rollup/rollup-linux-arm64-gnu@npm:4.62.2":
|
|
967
|
+
version: 4.62.2
|
|
968
|
+
resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.62.2"
|
|
968
969
|
conditions: os=linux & cpu=arm64 & libc=glibc
|
|
969
970
|
languageName: node
|
|
970
971
|
linkType: hard
|
|
971
972
|
|
|
972
|
-
"@rollup/rollup-linux-arm64-musl@npm:4.
|
|
973
|
-
version: 4.
|
|
974
|
-
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.
|
|
973
|
+
"@rollup/rollup-linux-arm64-musl@npm:4.62.2":
|
|
974
|
+
version: 4.62.2
|
|
975
|
+
resolution: "@rollup/rollup-linux-arm64-musl@npm:4.62.2"
|
|
975
976
|
conditions: os=linux & cpu=arm64 & libc=musl
|
|
976
977
|
languageName: node
|
|
977
978
|
linkType: hard
|
|
978
979
|
|
|
979
|
-
"@rollup/rollup-linux-loong64-gnu@npm:4.
|
|
980
|
-
version: 4.
|
|
981
|
-
resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.
|
|
980
|
+
"@rollup/rollup-linux-loong64-gnu@npm:4.62.2":
|
|
981
|
+
version: 4.62.2
|
|
982
|
+
resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.62.2"
|
|
982
983
|
conditions: os=linux & cpu=loong64 & libc=glibc
|
|
983
984
|
languageName: node
|
|
984
985
|
linkType: hard
|
|
985
986
|
|
|
986
|
-
"@rollup/rollup-linux-loong64-musl@npm:4.
|
|
987
|
-
version: 4.
|
|
988
|
-
resolution: "@rollup/rollup-linux-loong64-musl@npm:4.
|
|
987
|
+
"@rollup/rollup-linux-loong64-musl@npm:4.62.2":
|
|
988
|
+
version: 4.62.2
|
|
989
|
+
resolution: "@rollup/rollup-linux-loong64-musl@npm:4.62.2"
|
|
989
990
|
conditions: os=linux & cpu=loong64 & libc=musl
|
|
990
991
|
languageName: node
|
|
991
992
|
linkType: hard
|
|
992
993
|
|
|
993
|
-
"@rollup/rollup-linux-ppc64-gnu@npm:4.
|
|
994
|
-
version: 4.
|
|
995
|
-
resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.
|
|
994
|
+
"@rollup/rollup-linux-ppc64-gnu@npm:4.62.2":
|
|
995
|
+
version: 4.62.2
|
|
996
|
+
resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.62.2"
|
|
996
997
|
conditions: os=linux & cpu=ppc64 & libc=glibc
|
|
997
998
|
languageName: node
|
|
998
999
|
linkType: hard
|
|
999
1000
|
|
|
1000
|
-
"@rollup/rollup-linux-ppc64-musl@npm:4.
|
|
1001
|
-
version: 4.
|
|
1002
|
-
resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.
|
|
1001
|
+
"@rollup/rollup-linux-ppc64-musl@npm:4.62.2":
|
|
1002
|
+
version: 4.62.2
|
|
1003
|
+
resolution: "@rollup/rollup-linux-ppc64-musl@npm:4.62.2"
|
|
1003
1004
|
conditions: os=linux & cpu=ppc64 & libc=musl
|
|
1004
1005
|
languageName: node
|
|
1005
1006
|
linkType: hard
|
|
1006
1007
|
|
|
1007
|
-
"@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
1008
|
-
version: 4.
|
|
1009
|
-
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.
|
|
1008
|
+
"@rollup/rollup-linux-riscv64-gnu@npm:4.62.2":
|
|
1009
|
+
version: 4.62.2
|
|
1010
|
+
resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.62.2"
|
|
1010
1011
|
conditions: os=linux & cpu=riscv64 & libc=glibc
|
|
1011
1012
|
languageName: node
|
|
1012
1013
|
linkType: hard
|
|
1013
1014
|
|
|
1014
|
-
"@rollup/rollup-linux-riscv64-musl@npm:4.
|
|
1015
|
-
version: 4.
|
|
1016
|
-
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.
|
|
1015
|
+
"@rollup/rollup-linux-riscv64-musl@npm:4.62.2":
|
|
1016
|
+
version: 4.62.2
|
|
1017
|
+
resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.62.2"
|
|
1017
1018
|
conditions: os=linux & cpu=riscv64 & libc=musl
|
|
1018
1019
|
languageName: node
|
|
1019
1020
|
linkType: hard
|
|
1020
1021
|
|
|
1021
|
-
"@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
1022
|
-
version: 4.
|
|
1023
|
-
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.
|
|
1022
|
+
"@rollup/rollup-linux-s390x-gnu@npm:4.62.2":
|
|
1023
|
+
version: 4.62.2
|
|
1024
|
+
resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.62.2"
|
|
1024
1025
|
conditions: os=linux & cpu=s390x & libc=glibc
|
|
1025
1026
|
languageName: node
|
|
1026
1027
|
linkType: hard
|
|
1027
1028
|
|
|
1028
|
-
"@rollup/rollup-linux-x64-gnu@npm:4.
|
|
1029
|
-
version: 4.
|
|
1030
|
-
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.
|
|
1029
|
+
"@rollup/rollup-linux-x64-gnu@npm:4.62.2":
|
|
1030
|
+
version: 4.62.2
|
|
1031
|
+
resolution: "@rollup/rollup-linux-x64-gnu@npm:4.62.2"
|
|
1031
1032
|
conditions: os=linux & cpu=x64 & libc=glibc
|
|
1032
1033
|
languageName: node
|
|
1033
1034
|
linkType: hard
|
|
1034
1035
|
|
|
1035
|
-
"@rollup/rollup-linux-x64-musl@npm:4.
|
|
1036
|
-
version: 4.
|
|
1037
|
-
resolution: "@rollup/rollup-linux-x64-musl@npm:4.
|
|
1036
|
+
"@rollup/rollup-linux-x64-musl@npm:4.62.2":
|
|
1037
|
+
version: 4.62.2
|
|
1038
|
+
resolution: "@rollup/rollup-linux-x64-musl@npm:4.62.2"
|
|
1038
1039
|
conditions: os=linux & cpu=x64 & libc=musl
|
|
1039
1040
|
languageName: node
|
|
1040
1041
|
linkType: hard
|
|
1041
1042
|
|
|
1042
|
-
"@rollup/rollup-openbsd-x64@npm:4.
|
|
1043
|
-
version: 4.
|
|
1044
|
-
resolution: "@rollup/rollup-openbsd-x64@npm:4.
|
|
1043
|
+
"@rollup/rollup-openbsd-x64@npm:4.62.2":
|
|
1044
|
+
version: 4.62.2
|
|
1045
|
+
resolution: "@rollup/rollup-openbsd-x64@npm:4.62.2"
|
|
1045
1046
|
conditions: os=openbsd & cpu=x64
|
|
1046
1047
|
languageName: node
|
|
1047
1048
|
linkType: hard
|
|
1048
1049
|
|
|
1049
|
-
"@rollup/rollup-openharmony-arm64@npm:4.
|
|
1050
|
-
version: 4.
|
|
1051
|
-
resolution: "@rollup/rollup-openharmony-arm64@npm:4.
|
|
1050
|
+
"@rollup/rollup-openharmony-arm64@npm:4.62.2":
|
|
1051
|
+
version: 4.62.2
|
|
1052
|
+
resolution: "@rollup/rollup-openharmony-arm64@npm:4.62.2"
|
|
1052
1053
|
conditions: os=openharmony & cpu=arm64
|
|
1053
1054
|
languageName: node
|
|
1054
1055
|
linkType: hard
|
|
1055
1056
|
|
|
1056
|
-
"@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
1057
|
-
version: 4.
|
|
1058
|
-
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.
|
|
1057
|
+
"@rollup/rollup-win32-arm64-msvc@npm:4.62.2":
|
|
1058
|
+
version: 4.62.2
|
|
1059
|
+
resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.62.2"
|
|
1059
1060
|
conditions: os=win32 & cpu=arm64
|
|
1060
1061
|
languageName: node
|
|
1061
1062
|
linkType: hard
|
|
1062
1063
|
|
|
1063
|
-
"@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
1064
|
-
version: 4.
|
|
1065
|
-
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.
|
|
1064
|
+
"@rollup/rollup-win32-ia32-msvc@npm:4.62.2":
|
|
1065
|
+
version: 4.62.2
|
|
1066
|
+
resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.62.2"
|
|
1066
1067
|
conditions: os=win32 & cpu=ia32
|
|
1067
1068
|
languageName: node
|
|
1068
1069
|
linkType: hard
|
|
1069
1070
|
|
|
1070
|
-
"@rollup/rollup-win32-x64-gnu@npm:4.
|
|
1071
|
-
version: 4.
|
|
1072
|
-
resolution: "@rollup/rollup-win32-x64-gnu@npm:4.
|
|
1071
|
+
"@rollup/rollup-win32-x64-gnu@npm:4.62.2":
|
|
1072
|
+
version: 4.62.2
|
|
1073
|
+
resolution: "@rollup/rollup-win32-x64-gnu@npm:4.62.2"
|
|
1073
1074
|
conditions: os=win32 & cpu=x64
|
|
1074
1075
|
languageName: node
|
|
1075
1076
|
linkType: hard
|
|
1076
1077
|
|
|
1077
|
-
"@rollup/rollup-win32-x64-msvc@npm:4.
|
|
1078
|
-
version: 4.
|
|
1079
|
-
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.
|
|
1078
|
+
"@rollup/rollup-win32-x64-msvc@npm:4.62.2":
|
|
1079
|
+
version: 4.62.2
|
|
1080
|
+
resolution: "@rollup/rollup-win32-x64-msvc@npm:4.62.2"
|
|
1080
1081
|
conditions: os=win32 & cpu=x64
|
|
1081
1082
|
languageName: node
|
|
1082
1083
|
linkType: hard
|
|
@@ -1685,10 +1686,19 @@ __metadata:
|
|
|
1685
1686
|
languageName: node
|
|
1686
1687
|
linkType: hard
|
|
1687
1688
|
|
|
1688
|
-
"@types/
|
|
1689
|
-
version: 1.
|
|
1690
|
-
resolution: "@types/
|
|
1691
|
-
|
|
1689
|
+
"@types/debug@npm:^4.0.0":
|
|
1690
|
+
version: 4.1.13
|
|
1691
|
+
resolution: "@types/debug@npm:4.1.13"
|
|
1692
|
+
dependencies:
|
|
1693
|
+
"@types/ms": "npm:*"
|
|
1694
|
+
checksum: 10c0/e5e124021bbdb23a82727eee0a726ae0fc8a3ae1f57253cbcc47497f259afb357de7f6941375e773e1abbfa1604c1555b901a409d762ec2bb4c1612131d4afb7
|
|
1695
|
+
languageName: node
|
|
1696
|
+
linkType: hard
|
|
1697
|
+
|
|
1698
|
+
"@types/estree@npm:1.0.9":
|
|
1699
|
+
version: 1.0.9
|
|
1700
|
+
resolution: "@types/estree@npm:1.0.9"
|
|
1701
|
+
checksum: 10c0/3ad3286ca2988cd550dafb8f2ad599c8474868e954fa601a36655bdfefd8039f7c714b8c1c7f2ae219ffbd58bd4660e66fa7479a0120fc02d4777057d4865387
|
|
1692
1702
|
languageName: node
|
|
1693
1703
|
linkType: hard
|
|
1694
1704
|
|
|
@@ -1741,6 +1751,13 @@ __metadata:
|
|
|
1741
1751
|
languageName: node
|
|
1742
1752
|
linkType: hard
|
|
1743
1753
|
|
|
1754
|
+
"@types/ms@npm:*":
|
|
1755
|
+
version: 2.1.0
|
|
1756
|
+
resolution: "@types/ms@npm:2.1.0"
|
|
1757
|
+
checksum: 10c0/5ce692ffe1549e1b827d99ef8ff71187457e0eb44adbae38fdf7b9a74bae8d20642ee963c14516db1d35fa2652e65f47680fdf679dcbde52bbfadd021f497225
|
|
1758
|
+
languageName: node
|
|
1759
|
+
linkType: hard
|
|
1760
|
+
|
|
1744
1761
|
"@types/retry@npm:0.12.2":
|
|
1745
1762
|
version: 0.12.2
|
|
1746
1763
|
resolution: "@types/retry@npm:0.12.2"
|
|
@@ -1770,9 +1787,9 @@ __metadata:
|
|
|
1770
1787
|
linkType: hard
|
|
1771
1788
|
|
|
1772
1789
|
"@ungap/structured-clone@npm:^1.0.0":
|
|
1773
|
-
version: 1.3.
|
|
1774
|
-
resolution: "@ungap/structured-clone@npm:1.3.
|
|
1775
|
-
checksum: 10c0/
|
|
1790
|
+
version: 1.3.2
|
|
1791
|
+
resolution: "@ungap/structured-clone@npm:1.3.2"
|
|
1792
|
+
checksum: 10c0/4d76bb376ec3e15f38bdffe045377807c79057daf54ae17eeb977c5b95efddd2d726b38c15aeb5d5c1a45c64ad03aa7e8b1a6dc67895480cba536ffd1c7a06ec
|
|
1776
1793
|
languageName: node
|
|
1777
1794
|
linkType: hard
|
|
1778
1795
|
|
|
@@ -2234,6 +2251,22 @@ __metadata:
|
|
|
2234
2251
|
languageName: node
|
|
2235
2252
|
linkType: hard
|
|
2236
2253
|
|
|
2254
|
+
"argparse@npm:^1.0.7":
|
|
2255
|
+
version: 1.0.10
|
|
2256
|
+
resolution: "argparse@npm:1.0.10"
|
|
2257
|
+
dependencies:
|
|
2258
|
+
sprintf-js: "npm:~1.0.2"
|
|
2259
|
+
checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de
|
|
2260
|
+
languageName: node
|
|
2261
|
+
linkType: hard
|
|
2262
|
+
|
|
2263
|
+
"argparse@npm:^2.0.1":
|
|
2264
|
+
version: 2.0.1
|
|
2265
|
+
resolution: "argparse@npm:2.0.1"
|
|
2266
|
+
checksum: 10c0/c5640c2d89045371c7cedd6a70212a04e360fd34d6edeae32f6952c63949e3525ea77dbec0289d8213a99bbaeab5abfa860b5c12cf88a2e6cf8106e90dd27a7e
|
|
2267
|
+
languageName: node
|
|
2268
|
+
linkType: hard
|
|
2269
|
+
|
|
2237
2270
|
"asciinema-player@npm:^3.15.1":
|
|
2238
2271
|
version: 3.15.1
|
|
2239
2272
|
resolution: "asciinema-player@npm:3.15.1"
|
|
@@ -2245,6 +2278,13 @@ __metadata:
|
|
|
2245
2278
|
languageName: node
|
|
2246
2279
|
linkType: hard
|
|
2247
2280
|
|
|
2281
|
+
"bail@npm:^2.0.0":
|
|
2282
|
+
version: 2.0.2
|
|
2283
|
+
resolution: "bail@npm:2.0.2"
|
|
2284
|
+
checksum: 10c0/25cbea309ef6a1f56214187004e8f34014eb015713ea01fa5b9b7e9e776ca88d0fdffd64143ac42dc91966c915a4b7b683411b56e14929fad16153fc026ffb8b
|
|
2285
|
+
languageName: node
|
|
2286
|
+
linkType: hard
|
|
2287
|
+
|
|
2248
2288
|
"balanced-match@npm:^4.0.2":
|
|
2249
2289
|
version: 4.0.4
|
|
2250
2290
|
resolution: "balanced-match@npm:4.0.4"
|
|
@@ -2283,11 +2323,11 @@ __metadata:
|
|
|
2283
2323
|
linkType: hard
|
|
2284
2324
|
|
|
2285
2325
|
"brace-expansion@npm:^5.0.5":
|
|
2286
|
-
version: 5.0.
|
|
2287
|
-
resolution: "brace-expansion@npm:5.0.
|
|
2326
|
+
version: 5.0.7
|
|
2327
|
+
resolution: "brace-expansion@npm:5.0.7"
|
|
2288
2328
|
dependencies:
|
|
2289
2329
|
balanced-match: "npm:^4.0.2"
|
|
2290
|
-
checksum: 10c0/
|
|
2330
|
+
checksum: 10c0/4769109c3c082de178e449a371bcad50d51ab468f644bce2dd9188efe0cf0a080ed102105d7fc8577382cedc45bad7e6443a91bf3d8102264ee8cf927dbaf205
|
|
2291
2331
|
languageName: node
|
|
2292
2332
|
linkType: hard
|
|
2293
2333
|
|
|
@@ -2390,6 +2430,13 @@ __metadata:
|
|
|
2390
2430
|
languageName: node
|
|
2391
2431
|
linkType: hard
|
|
2392
2432
|
|
|
2433
|
+
"character-entities@npm:^2.0.0":
|
|
2434
|
+
version: 2.0.2
|
|
2435
|
+
resolution: "character-entities@npm:2.0.2"
|
|
2436
|
+
checksum: 10c0/b0c645a45bcc90ff24f0e0140f4875a8436b8ef13b6bcd31ec02cfb2ca502b680362aa95386f7815bdc04b6464d48cf191210b3840d7c04241a149ede591a308
|
|
2437
|
+
languageName: node
|
|
2438
|
+
linkType: hard
|
|
2439
|
+
|
|
2393
2440
|
"chokidar-cli@npm:^3.0.0":
|
|
2394
2441
|
version: 3.0.0
|
|
2395
2442
|
resolution: "chokidar-cli@npm:3.0.0"
|
|
@@ -3130,7 +3177,7 @@ __metadata:
|
|
|
3130
3177
|
languageName: node
|
|
3131
3178
|
linkType: hard
|
|
3132
3179
|
|
|
3133
|
-
"debug@npm:4, debug@npm:^4.3.4":
|
|
3180
|
+
"debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.3.4":
|
|
3134
3181
|
version: 4.4.3
|
|
3135
3182
|
resolution: "debug@npm:4.4.3"
|
|
3136
3183
|
dependencies:
|
|
@@ -3149,6 +3196,15 @@ __metadata:
|
|
|
3149
3196
|
languageName: node
|
|
3150
3197
|
linkType: hard
|
|
3151
3198
|
|
|
3199
|
+
"decode-named-character-reference@npm:^1.0.0":
|
|
3200
|
+
version: 1.3.0
|
|
3201
|
+
resolution: "decode-named-character-reference@npm:1.3.0"
|
|
3202
|
+
dependencies:
|
|
3203
|
+
character-entities: "npm:^2.0.0"
|
|
3204
|
+
checksum: 10c0/787f4c87f3b82ea342aa7c2d7b1882b6fb9511bb77f72ae44dcaabea0470bacd1e9c6a0080ab886545019fa0cb3a7109573fad6b61a362844c3a0ac52b36e4bb
|
|
3205
|
+
languageName: node
|
|
3206
|
+
linkType: hard
|
|
3207
|
+
|
|
3152
3208
|
"delaunator@npm:5":
|
|
3153
3209
|
version: 5.0.1
|
|
3154
3210
|
resolution: "delaunator@npm:5.0.1"
|
|
@@ -3215,15 +3271,15 @@ __metadata:
|
|
|
3215
3271
|
languageName: node
|
|
3216
3272
|
linkType: hard
|
|
3217
3273
|
|
|
3218
|
-
"dompurify@npm:^3.3.1, dompurify@npm:^3.4.
|
|
3219
|
-
version: 3.4.
|
|
3220
|
-
resolution: "dompurify@npm:3.4.
|
|
3274
|
+
"dompurify@npm:^3.3.1, dompurify@npm:^3.4.11":
|
|
3275
|
+
version: 3.4.11
|
|
3276
|
+
resolution: "dompurify@npm:3.4.11"
|
|
3221
3277
|
dependencies:
|
|
3222
3278
|
"@types/trusted-types": "npm:^2.0.7"
|
|
3223
3279
|
dependenciesMeta:
|
|
3224
3280
|
"@types/trusted-types":
|
|
3225
3281
|
optional: true
|
|
3226
|
-
checksum: 10c0/
|
|
3282
|
+
checksum: 10c0/31439481c7e8fc3805d40c376936fd66936620fb1b1a31a2ec097f6165412c37f2d868e082c9ceba62bb37661c1ea132a5db4d5213434317e30df68d4aca9cc9
|
|
3227
3283
|
languageName: node
|
|
3228
3284
|
linkType: hard
|
|
3229
3285
|
|
|
@@ -3276,7 +3332,7 @@ __metadata:
|
|
|
3276
3332
|
languageName: node
|
|
3277
3333
|
linkType: hard
|
|
3278
3334
|
|
|
3279
|
-
"entities@npm:^4.2.0":
|
|
3335
|
+
"entities@npm:^4.2.0, entities@npm:^4.4.0":
|
|
3280
3336
|
version: 4.5.0
|
|
3281
3337
|
resolution: "entities@npm:4.5.0"
|
|
3282
3338
|
checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250
|
|
@@ -3400,36 +3456,36 @@ __metadata:
|
|
|
3400
3456
|
languageName: node
|
|
3401
3457
|
linkType: hard
|
|
3402
3458
|
|
|
3403
|
-
"esbuild@npm:^0.28.
|
|
3404
|
-
version: 0.28.
|
|
3405
|
-
resolution: "esbuild@npm:0.28.
|
|
3406
|
-
dependencies:
|
|
3407
|
-
"@esbuild/aix-ppc64": "npm:0.28.
|
|
3408
|
-
"@esbuild/android-arm": "npm:0.28.
|
|
3409
|
-
"@esbuild/android-arm64": "npm:0.28.
|
|
3410
|
-
"@esbuild/android-x64": "npm:0.28.
|
|
3411
|
-
"@esbuild/darwin-arm64": "npm:0.28.
|
|
3412
|
-
"@esbuild/darwin-x64": "npm:0.28.
|
|
3413
|
-
"@esbuild/freebsd-arm64": "npm:0.28.
|
|
3414
|
-
"@esbuild/freebsd-x64": "npm:0.28.
|
|
3415
|
-
"@esbuild/linux-arm": "npm:0.28.
|
|
3416
|
-
"@esbuild/linux-arm64": "npm:0.28.
|
|
3417
|
-
"@esbuild/linux-ia32": "npm:0.28.
|
|
3418
|
-
"@esbuild/linux-loong64": "npm:0.28.
|
|
3419
|
-
"@esbuild/linux-mips64el": "npm:0.28.
|
|
3420
|
-
"@esbuild/linux-ppc64": "npm:0.28.
|
|
3421
|
-
"@esbuild/linux-riscv64": "npm:0.28.
|
|
3422
|
-
"@esbuild/linux-s390x": "npm:0.28.
|
|
3423
|
-
"@esbuild/linux-x64": "npm:0.28.
|
|
3424
|
-
"@esbuild/netbsd-arm64": "npm:0.28.
|
|
3425
|
-
"@esbuild/netbsd-x64": "npm:0.28.
|
|
3426
|
-
"@esbuild/openbsd-arm64": "npm:0.28.
|
|
3427
|
-
"@esbuild/openbsd-x64": "npm:0.28.
|
|
3428
|
-
"@esbuild/openharmony-arm64": "npm:0.28.
|
|
3429
|
-
"@esbuild/sunos-x64": "npm:0.28.
|
|
3430
|
-
"@esbuild/win32-arm64": "npm:0.28.
|
|
3431
|
-
"@esbuild/win32-ia32": "npm:0.28.
|
|
3432
|
-
"@esbuild/win32-x64": "npm:0.28.
|
|
3459
|
+
"esbuild@npm:^0.28.1":
|
|
3460
|
+
version: 0.28.1
|
|
3461
|
+
resolution: "esbuild@npm:0.28.1"
|
|
3462
|
+
dependencies:
|
|
3463
|
+
"@esbuild/aix-ppc64": "npm:0.28.1"
|
|
3464
|
+
"@esbuild/android-arm": "npm:0.28.1"
|
|
3465
|
+
"@esbuild/android-arm64": "npm:0.28.1"
|
|
3466
|
+
"@esbuild/android-x64": "npm:0.28.1"
|
|
3467
|
+
"@esbuild/darwin-arm64": "npm:0.28.1"
|
|
3468
|
+
"@esbuild/darwin-x64": "npm:0.28.1"
|
|
3469
|
+
"@esbuild/freebsd-arm64": "npm:0.28.1"
|
|
3470
|
+
"@esbuild/freebsd-x64": "npm:0.28.1"
|
|
3471
|
+
"@esbuild/linux-arm": "npm:0.28.1"
|
|
3472
|
+
"@esbuild/linux-arm64": "npm:0.28.1"
|
|
3473
|
+
"@esbuild/linux-ia32": "npm:0.28.1"
|
|
3474
|
+
"@esbuild/linux-loong64": "npm:0.28.1"
|
|
3475
|
+
"@esbuild/linux-mips64el": "npm:0.28.1"
|
|
3476
|
+
"@esbuild/linux-ppc64": "npm:0.28.1"
|
|
3477
|
+
"@esbuild/linux-riscv64": "npm:0.28.1"
|
|
3478
|
+
"@esbuild/linux-s390x": "npm:0.28.1"
|
|
3479
|
+
"@esbuild/linux-x64": "npm:0.28.1"
|
|
3480
|
+
"@esbuild/netbsd-arm64": "npm:0.28.1"
|
|
3481
|
+
"@esbuild/netbsd-x64": "npm:0.28.1"
|
|
3482
|
+
"@esbuild/openbsd-arm64": "npm:0.28.1"
|
|
3483
|
+
"@esbuild/openbsd-x64": "npm:0.28.1"
|
|
3484
|
+
"@esbuild/openharmony-arm64": "npm:0.28.1"
|
|
3485
|
+
"@esbuild/sunos-x64": "npm:0.28.1"
|
|
3486
|
+
"@esbuild/win32-arm64": "npm:0.28.1"
|
|
3487
|
+
"@esbuild/win32-ia32": "npm:0.28.1"
|
|
3488
|
+
"@esbuild/win32-x64": "npm:0.28.1"
|
|
3433
3489
|
dependenciesMeta:
|
|
3434
3490
|
"@esbuild/aix-ppc64":
|
|
3435
3491
|
optional: true
|
|
@@ -3485,7 +3541,7 @@ __metadata:
|
|
|
3485
3541
|
optional: true
|
|
3486
3542
|
bin:
|
|
3487
3543
|
esbuild: bin/esbuild
|
|
3488
|
-
checksum: 10c0/
|
|
3544
|
+
checksum: 10c0/29cd456a79ce35ac2c7e05fe871330416b2c395c045d849653f843e51378d6e0d6e774d6dcd01b35f4e83238a29bf8decd04fcd34b3780c589a250b21e5f92bb
|
|
3489
3545
|
languageName: node
|
|
3490
3546
|
linkType: hard
|
|
3491
3547
|
|
|
@@ -3496,6 +3552,23 @@ __metadata:
|
|
|
3496
3552
|
languageName: node
|
|
3497
3553
|
linkType: hard
|
|
3498
3554
|
|
|
3555
|
+
"escape-string-regexp@npm:^5.0.0":
|
|
3556
|
+
version: 5.0.0
|
|
3557
|
+
resolution: "escape-string-regexp@npm:5.0.0"
|
|
3558
|
+
checksum: 10c0/6366f474c6f37a802800a435232395e04e9885919873e382b157ab7e8f0feb8fed71497f84a6f6a81a49aab41815522f5839112bd38026d203aea0c91622df95
|
|
3559
|
+
languageName: node
|
|
3560
|
+
linkType: hard
|
|
3561
|
+
|
|
3562
|
+
"esprima@npm:^4.0.0":
|
|
3563
|
+
version: 4.0.1
|
|
3564
|
+
resolution: "esprima@npm:4.0.1"
|
|
3565
|
+
bin:
|
|
3566
|
+
esparse: ./bin/esparse.js
|
|
3567
|
+
esvalidate: ./bin/esvalidate.js
|
|
3568
|
+
checksum: 10c0/ad4bab9ead0808cf56501750fd9d3fb276f6b105f987707d059005d57e182d18a7c9ec7f3a01794ebddcca676773e42ca48a32d67a250c9d35e009ca613caba3
|
|
3569
|
+
languageName: node
|
|
3570
|
+
linkType: hard
|
|
3571
|
+
|
|
3499
3572
|
"estree-walker@npm:^2.0.2":
|
|
3500
3573
|
version: 2.0.2
|
|
3501
3574
|
resolution: "estree-walker@npm:2.0.2"
|
|
@@ -3524,6 +3597,31 @@ __metadata:
|
|
|
3524
3597
|
languageName: node
|
|
3525
3598
|
linkType: hard
|
|
3526
3599
|
|
|
3600
|
+
"extend-shallow@npm:^2.0.1":
|
|
3601
|
+
version: 2.0.1
|
|
3602
|
+
resolution: "extend-shallow@npm:2.0.1"
|
|
3603
|
+
dependencies:
|
|
3604
|
+
is-extendable: "npm:^0.1.0"
|
|
3605
|
+
checksum: 10c0/ee1cb0a18c9faddb42d791b2d64867bd6cfd0f3affb711782eb6e894dd193e2934a7f529426aac7c8ddb31ac5d38000a00aa2caf08aa3dfc3e1c8ff6ba340bd9
|
|
3606
|
+
languageName: node
|
|
3607
|
+
linkType: hard
|
|
3608
|
+
|
|
3609
|
+
"extend@npm:^3.0.0":
|
|
3610
|
+
version: 3.0.2
|
|
3611
|
+
resolution: "extend@npm:3.0.2"
|
|
3612
|
+
checksum: 10c0/73bf6e27406e80aa3e85b0d1c4fd987261e628064e170ca781125c0b635a3dabad5e05adbf07595ea0cf1e6c5396cacb214af933da7cbaf24fe75ff14818e8f9
|
|
3613
|
+
languageName: node
|
|
3614
|
+
linkType: hard
|
|
3615
|
+
|
|
3616
|
+
"fault@npm:^2.0.0":
|
|
3617
|
+
version: 2.0.1
|
|
3618
|
+
resolution: "fault@npm:2.0.1"
|
|
3619
|
+
dependencies:
|
|
3620
|
+
format: "npm:^0.2.0"
|
|
3621
|
+
checksum: 10c0/b80fbf1019b9ce8b08ee09ce86e02b028563e13a32ac3be34e42bfac00a97b96d8dee6d31e26578ffc16224eb6729e01ff1f97ddfeee00494f4f56c0aeed4bdd
|
|
3622
|
+
languageName: node
|
|
3623
|
+
linkType: hard
|
|
3624
|
+
|
|
3527
3625
|
"fdir@npm:^6.5.0":
|
|
3528
3626
|
version: 6.5.0
|
|
3529
3627
|
resolution: "fdir@npm:6.5.0"
|
|
@@ -3574,6 +3672,13 @@ __metadata:
|
|
|
3574
3672
|
languageName: node
|
|
3575
3673
|
linkType: hard
|
|
3576
3674
|
|
|
3675
|
+
"format@npm:^0.2.0":
|
|
3676
|
+
version: 0.2.2
|
|
3677
|
+
resolution: "format@npm:0.2.2"
|
|
3678
|
+
checksum: 10c0/6032ba747541a43abf3e37b402b2f72ee08ebcb58bf84d816443dd228959837f1cddf1e8775b29fa27ff133f4bd146d041bfca5f9cf27f048edf3d493cf8fee6
|
|
3679
|
+
languageName: node
|
|
3680
|
+
linkType: hard
|
|
3681
|
+
|
|
3577
3682
|
"fs-extra@npm:^11.0.0":
|
|
3578
3683
|
version: 11.3.0
|
|
3579
3684
|
resolution: "fs-extra@npm:11.3.0"
|
|
@@ -3654,6 +3759,18 @@ __metadata:
|
|
|
3654
3759
|
languageName: node
|
|
3655
3760
|
linkType: hard
|
|
3656
3761
|
|
|
3762
|
+
"gray-matter@npm:^4.0.3":
|
|
3763
|
+
version: 4.0.3
|
|
3764
|
+
resolution: "gray-matter@npm:4.0.3"
|
|
3765
|
+
dependencies:
|
|
3766
|
+
js-yaml: "npm:^3.13.1"
|
|
3767
|
+
kind-of: "npm:^6.0.2"
|
|
3768
|
+
section-matter: "npm:^1.0.0"
|
|
3769
|
+
strip-bom-string: "npm:^1.0.0"
|
|
3770
|
+
checksum: 10c0/e38489906dad4f162ca01e0dcbdbed96d1a53740cef446b9bf76d80bec66fa799af07776a18077aee642346c5e1365ed95e4c91854a12bf40ba0d4fb43a625a6
|
|
3771
|
+
languageName: node
|
|
3772
|
+
linkType: hard
|
|
3773
|
+
|
|
3657
3774
|
"hachure-fill@npm:^0.5.2":
|
|
3658
3775
|
version: 0.5.2
|
|
3659
3776
|
resolution: "hachure-fill@npm:0.5.2"
|
|
@@ -3786,9 +3903,9 @@ __metadata:
|
|
|
3786
3903
|
linkType: hard
|
|
3787
3904
|
|
|
3788
3905
|
"ip-address@npm:^10.0.1":
|
|
3789
|
-
version: 10.
|
|
3790
|
-
resolution: "ip-address@npm:10.
|
|
3791
|
-
checksum: 10c0/
|
|
3906
|
+
version: 10.2.0
|
|
3907
|
+
resolution: "ip-address@npm:10.2.0"
|
|
3908
|
+
checksum: 10c0/5a00aada6e922c9c69dfc800ed5d0fa3348675ebdeed0e1575f503f27ca385b5f534363c9af7ad1daf64c1f1409388cdd3cc2e9b9b0fe1c924a431378d55075a
|
|
3792
3909
|
languageName: node
|
|
3793
3910
|
linkType: hard
|
|
3794
3911
|
|
|
@@ -3810,6 +3927,13 @@ __metadata:
|
|
|
3810
3927
|
languageName: node
|
|
3811
3928
|
linkType: hard
|
|
3812
3929
|
|
|
3930
|
+
"is-extendable@npm:^0.1.0":
|
|
3931
|
+
version: 0.1.1
|
|
3932
|
+
resolution: "is-extendable@npm:0.1.1"
|
|
3933
|
+
checksum: 10c0/dd5ca3994a28e1740d1e25192e66eed128e0b2ff161a7ea348e87ae4f616554b486854de423877a2a2c171d5f7cd6e8093b91f54533bc88a59ee1c9838c43879
|
|
3934
|
+
languageName: node
|
|
3935
|
+
linkType: hard
|
|
3936
|
+
|
|
3813
3937
|
"is-extglob@npm:^2.1.1":
|
|
3814
3938
|
version: 2.1.1
|
|
3815
3939
|
resolution: "is-extglob@npm:2.1.1"
|
|
@@ -3854,6 +3978,13 @@ __metadata:
|
|
|
3854
3978
|
languageName: node
|
|
3855
3979
|
linkType: hard
|
|
3856
3980
|
|
|
3981
|
+
"is-plain-obj@npm:^4.0.0":
|
|
3982
|
+
version: 4.1.0
|
|
3983
|
+
resolution: "is-plain-obj@npm:4.1.0"
|
|
3984
|
+
checksum: 10c0/32130d651d71d9564dc88ba7e6fda0e91a1010a3694648e9f4f47bb6080438140696d3e3e15c741411d712e47ac9edc1a8a9de1fe76f3487b0d90be06ac9975e
|
|
3985
|
+
languageName: node
|
|
3986
|
+
linkType: hard
|
|
3987
|
+
|
|
3857
3988
|
"is-what@npm:^5.2.0":
|
|
3858
3989
|
version: 5.5.0
|
|
3859
3990
|
resolution: "is-what@npm:5.5.0"
|
|
@@ -3877,6 +4008,18 @@ __metadata:
|
|
|
3877
4008
|
languageName: node
|
|
3878
4009
|
linkType: hard
|
|
3879
4010
|
|
|
4011
|
+
"js-yaml@npm:^3.13.1":
|
|
4012
|
+
version: 3.15.0
|
|
4013
|
+
resolution: "js-yaml@npm:3.15.0"
|
|
4014
|
+
dependencies:
|
|
4015
|
+
argparse: "npm:^1.0.7"
|
|
4016
|
+
esprima: "npm:^4.0.0"
|
|
4017
|
+
bin:
|
|
4018
|
+
js-yaml: bin/js-yaml.js
|
|
4019
|
+
checksum: 10c0/ca966bd354ac5b1b7a4694ebdba46526796aa3a6a99529fa540af2abf85918bd155a50ccc0166b413130a00622999973754458ec01e7095bc902177bfdbd5b64
|
|
4020
|
+
languageName: node
|
|
4021
|
+
linkType: hard
|
|
4022
|
+
|
|
3880
4023
|
"jsonfile@npm:^6.0.1":
|
|
3881
4024
|
version: 6.1.0
|
|
3882
4025
|
resolution: "jsonfile@npm:6.1.0"
|
|
@@ -3908,6 +4051,13 @@ __metadata:
|
|
|
3908
4051
|
languageName: node
|
|
3909
4052
|
linkType: hard
|
|
3910
4053
|
|
|
4054
|
+
"kind-of@npm:^6.0.0, kind-of@npm:^6.0.2":
|
|
4055
|
+
version: 6.0.3
|
|
4056
|
+
resolution: "kind-of@npm:6.0.3"
|
|
4057
|
+
checksum: 10c0/61cdff9623dabf3568b6445e93e31376bee1cdb93f8ba7033d86022c2a9b1791a1d9510e026e6465ebd701a6dd2f7b0808483ad8838341ac52f003f512e0b4c4
|
|
4058
|
+
languageName: node
|
|
4059
|
+
linkType: hard
|
|
4060
|
+
|
|
3911
4061
|
"layout-base@npm:^1.0.0":
|
|
3912
4062
|
version: 1.0.2
|
|
3913
4063
|
resolution: "layout-base@npm:1.0.2"
|
|
@@ -4049,6 +4199,15 @@ __metadata:
|
|
|
4049
4199
|
languageName: node
|
|
4050
4200
|
linkType: hard
|
|
4051
4201
|
|
|
4202
|
+
"linkify-it@npm:^5.0.1":
|
|
4203
|
+
version: 5.0.1
|
|
4204
|
+
resolution: "linkify-it@npm:5.0.1"
|
|
4205
|
+
dependencies:
|
|
4206
|
+
uc.micro: "npm:^2.0.0"
|
|
4207
|
+
checksum: 10c0/d06d04f1ed03be131740fc900a5e74ea1f49886b052213599e306d469d5ffe2303db76dd8f771de9f28e2b0b38852de22ec46ae597d245f8b66439b0ceb19b10
|
|
4208
|
+
languageName: node
|
|
4209
|
+
linkType: hard
|
|
4210
|
+
|
|
4052
4211
|
"locate-path@npm:^3.0.0":
|
|
4053
4212
|
version: 3.0.0
|
|
4054
4213
|
resolution: "locate-path@npm:3.0.0"
|
|
@@ -4060,9 +4219,9 @@ __metadata:
|
|
|
4060
4219
|
linkType: hard
|
|
4061
4220
|
|
|
4062
4221
|
"lodash-es@npm:^4.17.21":
|
|
4063
|
-
version: 4.
|
|
4064
|
-
resolution: "lodash-es@npm:4.
|
|
4065
|
-
checksum: 10c0/
|
|
4222
|
+
version: 4.18.1
|
|
4223
|
+
resolution: "lodash-es@npm:4.18.1"
|
|
4224
|
+
checksum: 10c0/35d4dcf87ef07f8d090f409447575800108057e360b445f590d0d25d09e3d1e33a163d2fc100d4d072b0f901d5e2fc533cd7c4bfd8eeb38a06abec693823c8b8
|
|
4066
4225
|
languageName: node
|
|
4067
4226
|
linkType: hard
|
|
4068
4227
|
|
|
@@ -4116,9 +4275,16 @@ __metadata:
|
|
|
4116
4275
|
linkType: hard
|
|
4117
4276
|
|
|
4118
4277
|
"lodash@npm:^4.17.21":
|
|
4119
|
-
version: 4.
|
|
4120
|
-
resolution: "lodash@npm:4.
|
|
4121
|
-
checksum: 10c0/
|
|
4278
|
+
version: 4.18.1
|
|
4279
|
+
resolution: "lodash@npm:4.18.1"
|
|
4280
|
+
checksum: 10c0/757228fc68805c59789e82185135cf85f05d0b2d3d54631d680ca79ec21944ec8314d4533639a14b8bcfbd97a517e78960933041a5af17ecb693ec6eecb99a27
|
|
4281
|
+
languageName: node
|
|
4282
|
+
linkType: hard
|
|
4283
|
+
|
|
4284
|
+
"longest-streak@npm:^3.0.0":
|
|
4285
|
+
version: 3.1.0
|
|
4286
|
+
resolution: "longest-streak@npm:3.1.0"
|
|
4287
|
+
checksum: 10c0/7c2f02d0454b52834d1bcedef79c557bd295ee71fdabb02d041ff3aa9da48a90b5df7c0409156dedbc4df9b65da18742652aaea4759d6ece01f08971af6a7eaa
|
|
4122
4288
|
languageName: node
|
|
4123
4289
|
linkType: hard
|
|
4124
4290
|
|
|
@@ -4165,6 +4331,29 @@ __metadata:
|
|
|
4165
4331
|
languageName: node
|
|
4166
4332
|
linkType: hard
|
|
4167
4333
|
|
|
4334
|
+
"markdown-it@npm:^14.1.0":
|
|
4335
|
+
version: 14.2.0
|
|
4336
|
+
resolution: "markdown-it@npm:14.2.0"
|
|
4337
|
+
dependencies:
|
|
4338
|
+
argparse: "npm:^2.0.1"
|
|
4339
|
+
entities: "npm:^4.4.0"
|
|
4340
|
+
linkify-it: "npm:^5.0.1"
|
|
4341
|
+
mdurl: "npm:^2.0.0"
|
|
4342
|
+
punycode.js: "npm:^2.3.1"
|
|
4343
|
+
uc.micro: "npm:^2.1.0"
|
|
4344
|
+
bin:
|
|
4345
|
+
markdown-it: bin/markdown-it.mjs
|
|
4346
|
+
checksum: 10c0/1d3a50061d2fe4efbcf317aac853dbee6892ed6f5a217570eead723f2ef2dd1c9baaeef5a687cd283480c45c2d20724a73e84a9ed72843cf7b3b719067af40ef
|
|
4347
|
+
languageName: node
|
|
4348
|
+
linkType: hard
|
|
4349
|
+
|
|
4350
|
+
"markdown-title@npm:^1.0.2":
|
|
4351
|
+
version: 1.0.2
|
|
4352
|
+
resolution: "markdown-title@npm:1.0.2"
|
|
4353
|
+
checksum: 10c0/c919eeade5450d852f6daa38ef1536ac6dec822ca0e313e25237bbeae298f4db633400cbe99fdd6b61a5eee8b1e141c2265b4e346e9dfb0d27d0c033dd83657e
|
|
4354
|
+
languageName: node
|
|
4355
|
+
linkType: hard
|
|
4356
|
+
|
|
4168
4357
|
"marked@npm:^15.0.3":
|
|
4169
4358
|
version: 15.0.7
|
|
4170
4359
|
resolution: "marked@npm:15.0.7"
|
|
@@ -4183,9 +4372,53 @@ __metadata:
|
|
|
4183
4372
|
languageName: node
|
|
4184
4373
|
linkType: hard
|
|
4185
4374
|
|
|
4375
|
+
"mdast-util-from-markdown@npm:^2.0.0, mdast-util-from-markdown@npm:^2.0.3":
|
|
4376
|
+
version: 2.0.3
|
|
4377
|
+
resolution: "mdast-util-from-markdown@npm:2.0.3"
|
|
4378
|
+
dependencies:
|
|
4379
|
+
"@types/mdast": "npm:^4.0.0"
|
|
4380
|
+
"@types/unist": "npm:^3.0.0"
|
|
4381
|
+
decode-named-character-reference: "npm:^1.0.0"
|
|
4382
|
+
devlop: "npm:^1.0.0"
|
|
4383
|
+
mdast-util-to-string: "npm:^4.0.0"
|
|
4384
|
+
micromark: "npm:^4.0.0"
|
|
4385
|
+
micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
|
|
4386
|
+
micromark-util-decode-string: "npm:^2.0.0"
|
|
4387
|
+
micromark-util-normalize-identifier: "npm:^2.0.0"
|
|
4388
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4389
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4390
|
+
unist-util-stringify-position: "npm:^4.0.0"
|
|
4391
|
+
checksum: 10c0/d3eac9ac2b88e3b41fb85aa81c7bfd1f4f8a2fde497ad805e66fea7b2abfe486ffd94d2a20f9fd2951dcdebe4916f3bdcf851319891dd62d343e26c2f02583ba
|
|
4392
|
+
languageName: node
|
|
4393
|
+
linkType: hard
|
|
4394
|
+
|
|
4395
|
+
"mdast-util-frontmatter@npm:^2.0.0":
|
|
4396
|
+
version: 2.0.1
|
|
4397
|
+
resolution: "mdast-util-frontmatter@npm:2.0.1"
|
|
4398
|
+
dependencies:
|
|
4399
|
+
"@types/mdast": "npm:^4.0.0"
|
|
4400
|
+
devlop: "npm:^1.0.0"
|
|
4401
|
+
escape-string-regexp: "npm:^5.0.0"
|
|
4402
|
+
mdast-util-from-markdown: "npm:^2.0.0"
|
|
4403
|
+
mdast-util-to-markdown: "npm:^2.0.0"
|
|
4404
|
+
micromark-extension-frontmatter: "npm:^2.0.0"
|
|
4405
|
+
checksum: 10c0/d9b0b70dd9c574cc0220d4e05dd8e9d86ac972a6a5af9e0c49c839b31cb750d4313445cfbbdf9264a7fbe3f8c8d920b45358b8500f4286e6b9dc830095b25b9a
|
|
4406
|
+
languageName: node
|
|
4407
|
+
linkType: hard
|
|
4408
|
+
|
|
4409
|
+
"mdast-util-phrasing@npm:^4.0.0":
|
|
4410
|
+
version: 4.1.0
|
|
4411
|
+
resolution: "mdast-util-phrasing@npm:4.1.0"
|
|
4412
|
+
dependencies:
|
|
4413
|
+
"@types/mdast": "npm:^4.0.0"
|
|
4414
|
+
unist-util-is: "npm:^6.0.0"
|
|
4415
|
+
checksum: 10c0/bf6c31d51349aa3d74603d5e5a312f59f3f65662ed16c58017169a5fb0f84ca98578f626c5ee9e4aa3e0a81c996db8717096705521bddb4a0185f98c12c9b42f
|
|
4416
|
+
languageName: node
|
|
4417
|
+
linkType: hard
|
|
4418
|
+
|
|
4186
4419
|
"mdast-util-to-hast@npm:^13.0.0":
|
|
4187
|
-
version: 13.2.
|
|
4188
|
-
resolution: "mdast-util-to-hast@npm:13.2.
|
|
4420
|
+
version: 13.2.1
|
|
4421
|
+
resolution: "mdast-util-to-hast@npm:13.2.1"
|
|
4189
4422
|
dependencies:
|
|
4190
4423
|
"@types/hast": "npm:^3.0.0"
|
|
4191
4424
|
"@types/mdast": "npm:^4.0.0"
|
|
@@ -4196,7 +4429,33 @@ __metadata:
|
|
|
4196
4429
|
unist-util-position: "npm:^5.0.0"
|
|
4197
4430
|
unist-util-visit: "npm:^5.0.0"
|
|
4198
4431
|
vfile: "npm:^6.0.0"
|
|
4199
|
-
checksum: 10c0/
|
|
4432
|
+
checksum: 10c0/3eeaf28a5e84e1e08e6d54a1a8a06c0fca88cb5d36f4cf8086f0177248d1ce6e4e751f4ad0da19a3dea1c6ea61bd80784acc3ae021e44ceeb21aa5413a375e43
|
|
4433
|
+
languageName: node
|
|
4434
|
+
linkType: hard
|
|
4435
|
+
|
|
4436
|
+
"mdast-util-to-markdown@npm:^2.0.0":
|
|
4437
|
+
version: 2.1.2
|
|
4438
|
+
resolution: "mdast-util-to-markdown@npm:2.1.2"
|
|
4439
|
+
dependencies:
|
|
4440
|
+
"@types/mdast": "npm:^4.0.0"
|
|
4441
|
+
"@types/unist": "npm:^3.0.0"
|
|
4442
|
+
longest-streak: "npm:^3.0.0"
|
|
4443
|
+
mdast-util-phrasing: "npm:^4.0.0"
|
|
4444
|
+
mdast-util-to-string: "npm:^4.0.0"
|
|
4445
|
+
micromark-util-classify-character: "npm:^2.0.0"
|
|
4446
|
+
micromark-util-decode-string: "npm:^2.0.0"
|
|
4447
|
+
unist-util-visit: "npm:^5.0.0"
|
|
4448
|
+
zwitch: "npm:^2.0.0"
|
|
4449
|
+
checksum: 10c0/4649722a6099f12e797bd8d6469b2b43b44e526b5182862d9c7766a3431caad2c0112929c538a972f214e63c015395e5d3f54bd81d9ac1b16e6d8baaf582f749
|
|
4450
|
+
languageName: node
|
|
4451
|
+
linkType: hard
|
|
4452
|
+
|
|
4453
|
+
"mdast-util-to-string@npm:^4.0.0":
|
|
4454
|
+
version: 4.0.0
|
|
4455
|
+
resolution: "mdast-util-to-string@npm:4.0.0"
|
|
4456
|
+
dependencies:
|
|
4457
|
+
"@types/mdast": "npm:^4.0.0"
|
|
4458
|
+
checksum: 10c0/2d3c1af29bf3fe9c20f552ee9685af308002488f3b04b12fa66652c9718f66f41a32f8362aa2d770c3ff464c034860b41715902ada2306bb0a055146cef064d7
|
|
4200
4459
|
languageName: node
|
|
4201
4460
|
linkType: hard
|
|
4202
4461
|
|
|
@@ -4214,6 +4473,13 @@ __metadata:
|
|
|
4214
4473
|
languageName: node
|
|
4215
4474
|
linkType: hard
|
|
4216
4475
|
|
|
4476
|
+
"mdurl@npm:^2.0.0":
|
|
4477
|
+
version: 2.0.0
|
|
4478
|
+
resolution: "mdurl@npm:2.0.0"
|
|
4479
|
+
checksum: 10c0/633db522272f75ce4788440669137c77540d74a83e9015666a9557a152c02e245b192edc20bc90ae953bbab727503994a53b236b4d9c99bdaee594d0e7dd2ce0
|
|
4480
|
+
languageName: node
|
|
4481
|
+
linkType: hard
|
|
4482
|
+
|
|
4217
4483
|
"medium-zoom@npm:^1.1.0":
|
|
4218
4484
|
version: 1.1.0
|
|
4219
4485
|
resolution: "medium-zoom@npm:1.1.0"
|
|
@@ -4250,6 +4516,99 @@ __metadata:
|
|
|
4250
4516
|
languageName: node
|
|
4251
4517
|
linkType: hard
|
|
4252
4518
|
|
|
4519
|
+
"micromark-core-commonmark@npm:^2.0.0":
|
|
4520
|
+
version: 2.0.3
|
|
4521
|
+
resolution: "micromark-core-commonmark@npm:2.0.3"
|
|
4522
|
+
dependencies:
|
|
4523
|
+
decode-named-character-reference: "npm:^1.0.0"
|
|
4524
|
+
devlop: "npm:^1.0.0"
|
|
4525
|
+
micromark-factory-destination: "npm:^2.0.0"
|
|
4526
|
+
micromark-factory-label: "npm:^2.0.0"
|
|
4527
|
+
micromark-factory-space: "npm:^2.0.0"
|
|
4528
|
+
micromark-factory-title: "npm:^2.0.0"
|
|
4529
|
+
micromark-factory-whitespace: "npm:^2.0.0"
|
|
4530
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4531
|
+
micromark-util-chunked: "npm:^2.0.0"
|
|
4532
|
+
micromark-util-classify-character: "npm:^2.0.0"
|
|
4533
|
+
micromark-util-html-tag-name: "npm:^2.0.0"
|
|
4534
|
+
micromark-util-normalize-identifier: "npm:^2.0.0"
|
|
4535
|
+
micromark-util-resolve-all: "npm:^2.0.0"
|
|
4536
|
+
micromark-util-subtokenize: "npm:^2.0.0"
|
|
4537
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4538
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4539
|
+
checksum: 10c0/bd4a794fdc9e88dbdf59eaf1c507ddf26e5f7ddf4e52566c72239c0f1b66adbcd219ba2cd42350debbe24471434d5f5e50099d2b3f4e5762ca222ba8e5b549ee
|
|
4540
|
+
languageName: node
|
|
4541
|
+
linkType: hard
|
|
4542
|
+
|
|
4543
|
+
"micromark-extension-frontmatter@npm:^2.0.0":
|
|
4544
|
+
version: 2.0.0
|
|
4545
|
+
resolution: "micromark-extension-frontmatter@npm:2.0.0"
|
|
4546
|
+
dependencies:
|
|
4547
|
+
fault: "npm:^2.0.0"
|
|
4548
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4549
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4550
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4551
|
+
checksum: 10c0/7d0d876e598917a67146d29f536d6fbbf9d1b2401a77e2f64a3f80f934a63ff26fa94b01759c9185c24b2a91e4e6abf908fa7aa246f00a7778a6b37a17464300
|
|
4552
|
+
languageName: node
|
|
4553
|
+
linkType: hard
|
|
4554
|
+
|
|
4555
|
+
"micromark-factory-destination@npm:^2.0.0":
|
|
4556
|
+
version: 2.0.1
|
|
4557
|
+
resolution: "micromark-factory-destination@npm:2.0.1"
|
|
4558
|
+
dependencies:
|
|
4559
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4560
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4561
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4562
|
+
checksum: 10c0/bbafcf869cee5bf511161354cb87d61c142592fbecea051000ff116068dc85216e6d48519d147890b9ea5d7e2864a6341c0c09d9948c203bff624a80a476023c
|
|
4563
|
+
languageName: node
|
|
4564
|
+
linkType: hard
|
|
4565
|
+
|
|
4566
|
+
"micromark-factory-label@npm:^2.0.0":
|
|
4567
|
+
version: 2.0.1
|
|
4568
|
+
resolution: "micromark-factory-label@npm:2.0.1"
|
|
4569
|
+
dependencies:
|
|
4570
|
+
devlop: "npm:^1.0.0"
|
|
4571
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4572
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4573
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4574
|
+
checksum: 10c0/0137716b4ecb428114165505e94a2f18855c8bbea21b07a8b5ce514b32a595ed789d2b967125718fc44c4197ceaa48f6609d58807a68e778138d2e6b91b824e8
|
|
4575
|
+
languageName: node
|
|
4576
|
+
linkType: hard
|
|
4577
|
+
|
|
4578
|
+
"micromark-factory-space@npm:^2.0.0":
|
|
4579
|
+
version: 2.0.1
|
|
4580
|
+
resolution: "micromark-factory-space@npm:2.0.1"
|
|
4581
|
+
dependencies:
|
|
4582
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4583
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4584
|
+
checksum: 10c0/f9ed43f1c0652d8d898de0ac2be3f77f776fffe7dd96bdbba1e02d7ce33d3853c6ff5daa52568fc4fa32cdf3a62d86b85ead9b9189f7211e1d69ff2163c450fb
|
|
4585
|
+
languageName: node
|
|
4586
|
+
linkType: hard
|
|
4587
|
+
|
|
4588
|
+
"micromark-factory-title@npm:^2.0.0":
|
|
4589
|
+
version: 2.0.1
|
|
4590
|
+
resolution: "micromark-factory-title@npm:2.0.1"
|
|
4591
|
+
dependencies:
|
|
4592
|
+
micromark-factory-space: "npm:^2.0.0"
|
|
4593
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4594
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4595
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4596
|
+
checksum: 10c0/e72fad8d6e88823514916890099a5af20b6a9178ccf78e7e5e05f4de99bb8797acb756257d7a3a57a53854cb0086bf8aab15b1a9e9db8982500dd2c9ff5948b6
|
|
4597
|
+
languageName: node
|
|
4598
|
+
linkType: hard
|
|
4599
|
+
|
|
4600
|
+
"micromark-factory-whitespace@npm:^2.0.0":
|
|
4601
|
+
version: 2.0.1
|
|
4602
|
+
resolution: "micromark-factory-whitespace@npm:2.0.1"
|
|
4603
|
+
dependencies:
|
|
4604
|
+
micromark-factory-space: "npm:^2.0.0"
|
|
4605
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4606
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4607
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4608
|
+
checksum: 10c0/20a1ec58698f24b766510a309b23a10175034fcf1551eaa9da3adcbed3e00cd53d1ebe5f030cf873f76a1cec3c34eb8c50cc227be3344caa9ed25d56cf611224
|
|
4609
|
+
languageName: node
|
|
4610
|
+
linkType: hard
|
|
4611
|
+
|
|
4253
4612
|
"micromark-util-character@npm:^2.0.0":
|
|
4254
4613
|
version: 2.1.1
|
|
4255
4614
|
resolution: "micromark-util-character@npm:2.1.1"
|
|
@@ -4260,6 +4619,57 @@ __metadata:
|
|
|
4260
4619
|
languageName: node
|
|
4261
4620
|
linkType: hard
|
|
4262
4621
|
|
|
4622
|
+
"micromark-util-chunked@npm:^2.0.0":
|
|
4623
|
+
version: 2.0.1
|
|
4624
|
+
resolution: "micromark-util-chunked@npm:2.0.1"
|
|
4625
|
+
dependencies:
|
|
4626
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4627
|
+
checksum: 10c0/b68c0c16fe8106949537bdcfe1be9cf36c0ccd3bc54c4007003cb0984c3750b6cdd0fd77d03f269a3382b85b0de58bde4f6eedbe7ecdf7244759112289b1ab56
|
|
4628
|
+
languageName: node
|
|
4629
|
+
linkType: hard
|
|
4630
|
+
|
|
4631
|
+
"micromark-util-classify-character@npm:^2.0.0":
|
|
4632
|
+
version: 2.0.1
|
|
4633
|
+
resolution: "micromark-util-classify-character@npm:2.0.1"
|
|
4634
|
+
dependencies:
|
|
4635
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4636
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4637
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4638
|
+
checksum: 10c0/8a02e59304005c475c332f581697e92e8c585bcd45d5d225a66c1c1b14ab5a8062705188c2ccec33cc998d33502514121478b2091feddbc751887fc9c290ed08
|
|
4639
|
+
languageName: node
|
|
4640
|
+
linkType: hard
|
|
4641
|
+
|
|
4642
|
+
"micromark-util-combine-extensions@npm:^2.0.0":
|
|
4643
|
+
version: 2.0.1
|
|
4644
|
+
resolution: "micromark-util-combine-extensions@npm:2.0.1"
|
|
4645
|
+
dependencies:
|
|
4646
|
+
micromark-util-chunked: "npm:^2.0.0"
|
|
4647
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4648
|
+
checksum: 10c0/f15e282af24c8372cbb10b9b0b3e2c0aa681fea0ca323a44d6bc537dc1d9382c819c3689f14eaa000118f5a163245358ce6276b2cda9a84439cdb221f5d86ae7
|
|
4649
|
+
languageName: node
|
|
4650
|
+
linkType: hard
|
|
4651
|
+
|
|
4652
|
+
"micromark-util-decode-numeric-character-reference@npm:^2.0.0":
|
|
4653
|
+
version: 2.0.2
|
|
4654
|
+
resolution: "micromark-util-decode-numeric-character-reference@npm:2.0.2"
|
|
4655
|
+
dependencies:
|
|
4656
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4657
|
+
checksum: 10c0/9c8a9f2c790e5593ffe513901c3a110e9ec8882a08f466da014112a25e5059b51551ca0aeb7ff494657d86eceb2f02ee556c6558b8d66aadc61eae4a240da0df
|
|
4658
|
+
languageName: node
|
|
4659
|
+
linkType: hard
|
|
4660
|
+
|
|
4661
|
+
"micromark-util-decode-string@npm:^2.0.0":
|
|
4662
|
+
version: 2.0.1
|
|
4663
|
+
resolution: "micromark-util-decode-string@npm:2.0.1"
|
|
4664
|
+
dependencies:
|
|
4665
|
+
decode-named-character-reference: "npm:^1.0.0"
|
|
4666
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4667
|
+
micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
|
|
4668
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4669
|
+
checksum: 10c0/f24d75b2e5310be6e7b6dee532e0d17d3bf46996841d6295f2a9c87a2046fff4ab603c52ab9d7a7a6430a8b787b1574ae895849c603d262d1b22eef71736b5cb
|
|
4670
|
+
languageName: node
|
|
4671
|
+
linkType: hard
|
|
4672
|
+
|
|
4263
4673
|
"micromark-util-encode@npm:^2.0.0":
|
|
4264
4674
|
version: 2.0.1
|
|
4265
4675
|
resolution: "micromark-util-encode@npm:2.0.1"
|
|
@@ -4267,6 +4677,31 @@ __metadata:
|
|
|
4267
4677
|
languageName: node
|
|
4268
4678
|
linkType: hard
|
|
4269
4679
|
|
|
4680
|
+
"micromark-util-html-tag-name@npm:^2.0.0":
|
|
4681
|
+
version: 2.0.1
|
|
4682
|
+
resolution: "micromark-util-html-tag-name@npm:2.0.1"
|
|
4683
|
+
checksum: 10c0/ae80444db786fde908e9295f19a27a4aa304171852c77414516418650097b8afb401961c9edb09d677b06e97e8370cfa65638dde8438ebd41d60c0a8678b85b9
|
|
4684
|
+
languageName: node
|
|
4685
|
+
linkType: hard
|
|
4686
|
+
|
|
4687
|
+
"micromark-util-normalize-identifier@npm:^2.0.0":
|
|
4688
|
+
version: 2.0.1
|
|
4689
|
+
resolution: "micromark-util-normalize-identifier@npm:2.0.1"
|
|
4690
|
+
dependencies:
|
|
4691
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4692
|
+
checksum: 10c0/5299265fa360769fc499a89f40142f10a9d4a5c3dd8e6eac8a8ef3c2e4a6570e4c009cf75ea46dce5ee31c01f25587bde2f4a5cc0a935584ae86dd857f2babbd
|
|
4693
|
+
languageName: node
|
|
4694
|
+
linkType: hard
|
|
4695
|
+
|
|
4696
|
+
"micromark-util-resolve-all@npm:^2.0.0":
|
|
4697
|
+
version: 2.0.1
|
|
4698
|
+
resolution: "micromark-util-resolve-all@npm:2.0.1"
|
|
4699
|
+
dependencies:
|
|
4700
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4701
|
+
checksum: 10c0/bb6ca28764696bb479dc44a2d5b5fe003e7177aeae1d6b0d43f24cc223bab90234092d9c3ce4a4d2b8df095ccfd820537b10eb96bb7044d635f385d65a4c984a
|
|
4702
|
+
languageName: node
|
|
4703
|
+
linkType: hard
|
|
4704
|
+
|
|
4270
4705
|
"micromark-util-sanitize-uri@npm:^2.0.0":
|
|
4271
4706
|
version: 2.0.1
|
|
4272
4707
|
resolution: "micromark-util-sanitize-uri@npm:2.0.1"
|
|
@@ -4278,6 +4713,18 @@ __metadata:
|
|
|
4278
4713
|
languageName: node
|
|
4279
4714
|
linkType: hard
|
|
4280
4715
|
|
|
4716
|
+
"micromark-util-subtokenize@npm:^2.0.0":
|
|
4717
|
+
version: 2.1.0
|
|
4718
|
+
resolution: "micromark-util-subtokenize@npm:2.1.0"
|
|
4719
|
+
dependencies:
|
|
4720
|
+
devlop: "npm:^1.0.0"
|
|
4721
|
+
micromark-util-chunked: "npm:^2.0.0"
|
|
4722
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4723
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4724
|
+
checksum: 10c0/bee69eece4393308e657c293ba80d92ebcb637e5f55e21dcf9c3fa732b91a8eda8ac248d76ff375e675175bfadeae4712e5158ef97eef1111789da1ce7ab5067
|
|
4725
|
+
languageName: node
|
|
4726
|
+
linkType: hard
|
|
4727
|
+
|
|
4281
4728
|
"micromark-util-symbol@npm:^2.0.0":
|
|
4282
4729
|
version: 2.0.1
|
|
4283
4730
|
resolution: "micromark-util-symbol@npm:2.0.1"
|
|
@@ -4292,6 +4739,42 @@ __metadata:
|
|
|
4292
4739
|
languageName: node
|
|
4293
4740
|
linkType: hard
|
|
4294
4741
|
|
|
4742
|
+
"micromark@npm:^4.0.0":
|
|
4743
|
+
version: 4.0.2
|
|
4744
|
+
resolution: "micromark@npm:4.0.2"
|
|
4745
|
+
dependencies:
|
|
4746
|
+
"@types/debug": "npm:^4.0.0"
|
|
4747
|
+
debug: "npm:^4.0.0"
|
|
4748
|
+
decode-named-character-reference: "npm:^1.0.0"
|
|
4749
|
+
devlop: "npm:^1.0.0"
|
|
4750
|
+
micromark-core-commonmark: "npm:^2.0.0"
|
|
4751
|
+
micromark-factory-space: "npm:^2.0.0"
|
|
4752
|
+
micromark-util-character: "npm:^2.0.0"
|
|
4753
|
+
micromark-util-chunked: "npm:^2.0.0"
|
|
4754
|
+
micromark-util-combine-extensions: "npm:^2.0.0"
|
|
4755
|
+
micromark-util-decode-numeric-character-reference: "npm:^2.0.0"
|
|
4756
|
+
micromark-util-encode: "npm:^2.0.0"
|
|
4757
|
+
micromark-util-normalize-identifier: "npm:^2.0.0"
|
|
4758
|
+
micromark-util-resolve-all: "npm:^2.0.0"
|
|
4759
|
+
micromark-util-sanitize-uri: "npm:^2.0.0"
|
|
4760
|
+
micromark-util-subtokenize: "npm:^2.0.0"
|
|
4761
|
+
micromark-util-symbol: "npm:^2.0.0"
|
|
4762
|
+
micromark-util-types: "npm:^2.0.0"
|
|
4763
|
+
checksum: 10c0/07462287254219d6eda6eac8a3cebaff2994e0575499e7088027b825105e096e4f51e466b14b2a81b71933a3b6c48ee069049d87bc2c2127eee50d9cc69e8af6
|
|
4764
|
+
languageName: node
|
|
4765
|
+
linkType: hard
|
|
4766
|
+
|
|
4767
|
+
"millify@npm:^6.1.0":
|
|
4768
|
+
version: 6.1.0
|
|
4769
|
+
resolution: "millify@npm:6.1.0"
|
|
4770
|
+
dependencies:
|
|
4771
|
+
yargs: "npm:^17.0.1"
|
|
4772
|
+
bin:
|
|
4773
|
+
millify: bin/millify
|
|
4774
|
+
checksum: 10c0/a73fc2fdfaf07d5759913427b1f9d2db7fc3cb7cbc085ed9cf94bdd6425d8d4e0feb8a2a2497edfc5d6afe995bbb97237b4f6460c24cb7f4a2785bc1fb99131f
|
|
4775
|
+
languageName: node
|
|
4776
|
+
linkType: hard
|
|
4777
|
+
|
|
4295
4778
|
"mime-match@npm:^1.0.2":
|
|
4296
4779
|
version: 1.0.2
|
|
4297
4780
|
resolution: "mime-match@npm:1.0.2"
|
|
@@ -4310,7 +4793,7 @@ __metadata:
|
|
|
4310
4793
|
languageName: node
|
|
4311
4794
|
linkType: hard
|
|
4312
4795
|
|
|
4313
|
-
"minimatch@npm:^10.2.2":
|
|
4796
|
+
"minimatch@npm:^10.2.2, minimatch@npm:^10.2.5":
|
|
4314
4797
|
version: 10.2.5
|
|
4315
4798
|
resolution: "minimatch@npm:10.2.5"
|
|
4316
4799
|
dependencies:
|
|
@@ -4441,12 +4924,12 @@ __metadata:
|
|
|
4441
4924
|
languageName: node
|
|
4442
4925
|
linkType: hard
|
|
4443
4926
|
|
|
4444
|
-
"nanoid@npm:^3.3.
|
|
4445
|
-
version: 3.3.
|
|
4446
|
-
resolution: "nanoid@npm:3.3.
|
|
4927
|
+
"nanoid@npm:^3.3.12":
|
|
4928
|
+
version: 3.3.15
|
|
4929
|
+
resolution: "nanoid@npm:3.3.15"
|
|
4447
4930
|
bin:
|
|
4448
4931
|
nanoid: bin/nanoid.cjs
|
|
4449
|
-
checksum: 10c0/
|
|
4932
|
+
checksum: 10c0/e0b12e3a1d361f74150fa4b25631d0ae29f7162dab01a12f0f1be1f53b7a2a219f9b729504e474d4821207d0fe349bd3c97569ab5cf7ec2fff6aa94711956c93
|
|
4450
4933
|
languageName: node
|
|
4451
4934
|
linkType: hard
|
|
4452
4935
|
|
|
@@ -4636,6 +5119,13 @@ __metadata:
|
|
|
4636
5119
|
languageName: node
|
|
4637
5120
|
linkType: hard
|
|
4638
5121
|
|
|
5122
|
+
"path-to-regexp@npm:^6.3.0":
|
|
5123
|
+
version: 6.3.0
|
|
5124
|
+
resolution: "path-to-regexp@npm:6.3.0"
|
|
5125
|
+
checksum: 10c0/73b67f4638b41cde56254e6354e46ae3a2ebc08279583f6af3d96fe4664fc75788f74ed0d18ca44fa4a98491b69434f9eee73b97bb5314bd1b5adb700f5c18d6
|
|
5126
|
+
languageName: node
|
|
5127
|
+
linkType: hard
|
|
5128
|
+
|
|
4639
5129
|
"perfect-debounce@npm:^1.0.0":
|
|
4640
5130
|
version: 1.0.0
|
|
4641
5131
|
resolution: "perfect-debounce@npm:1.0.0"
|
|
@@ -4651,16 +5141,16 @@ __metadata:
|
|
|
4651
5141
|
linkType: hard
|
|
4652
5142
|
|
|
4653
5143
|
"picomatch@npm:^2.0.4, picomatch@npm:^2.2.1":
|
|
4654
|
-
version: 2.3.
|
|
4655
|
-
resolution: "picomatch@npm:2.3.
|
|
4656
|
-
checksum: 10c0/
|
|
5144
|
+
version: 2.3.2
|
|
5145
|
+
resolution: "picomatch@npm:2.3.2"
|
|
5146
|
+
checksum: 10c0/a554d1709e59be97d1acb9eaedbbc700a5c03dbd4579807baed95100b00420bc729335440ef15004ae2378984e2487a7c1cebd743cfdb72b6fa9ab69223c0d61
|
|
4657
5147
|
languageName: node
|
|
4658
5148
|
linkType: hard
|
|
4659
5149
|
|
|
4660
5150
|
"picomatch@npm:^4.0.3":
|
|
4661
|
-
version: 4.0.
|
|
4662
|
-
resolution: "picomatch@npm:4.0.
|
|
4663
|
-
checksum: 10c0/
|
|
5151
|
+
version: 4.0.4
|
|
5152
|
+
resolution: "picomatch@npm:4.0.4"
|
|
5153
|
+
checksum: 10c0/e2c6023372cc7b5764719a5ffb9da0f8e781212fa7ca4bd0562db929df8e117460f00dff3cb7509dacfc06b86de924b247f504d0ce1806a37fac4633081466b0
|
|
4664
5154
|
languageName: node
|
|
4665
5155
|
linkType: hard
|
|
4666
5156
|
|
|
@@ -5110,25 +5600,14 @@ __metadata:
|
|
|
5110
5600
|
languageName: node
|
|
5111
5601
|
linkType: hard
|
|
5112
5602
|
|
|
5113
|
-
"postcss@npm:^8.4.43, postcss@npm:^8.5.6":
|
|
5114
|
-
version: 8.5.
|
|
5115
|
-
resolution: "postcss@npm:8.5.
|
|
5603
|
+
"postcss@npm:^8.4.43, postcss@npm:^8.5.10, postcss@npm:^8.5.14, postcss@npm:^8.5.6":
|
|
5604
|
+
version: 8.5.16
|
|
5605
|
+
resolution: "postcss@npm:8.5.16"
|
|
5116
5606
|
dependencies:
|
|
5117
|
-
nanoid: "npm:^3.3.
|
|
5607
|
+
nanoid: "npm:^3.3.12"
|
|
5118
5608
|
picocolors: "npm:^1.1.1"
|
|
5119
5609
|
source-map-js: "npm:^1.2.1"
|
|
5120
|
-
checksum: 10c0/
|
|
5121
|
-
languageName: node
|
|
5122
|
-
linkType: hard
|
|
5123
|
-
|
|
5124
|
-
"postcss@npm:^8.5.10, postcss@npm:^8.5.14":
|
|
5125
|
-
version: 8.5.14
|
|
5126
|
-
resolution: "postcss@npm:8.5.14"
|
|
5127
|
-
dependencies:
|
|
5128
|
-
nanoid: "npm:^3.3.11"
|
|
5129
|
-
picocolors: "npm:^1.1.1"
|
|
5130
|
-
source-map-js: "npm:^1.2.1"
|
|
5131
|
-
checksum: 10c0/48138207cf5ef5581be1bfe2cb65ccfe0ac75e43888ba045afc8ed6043d7b56aeb3b9a9fe5b353ff554be943cd0cc15d826ccb991525159175971e5ee8ab0237
|
|
5610
|
+
checksum: 10c0/625de7a02f662f3a340964d14b487bd5097adf16f5f171e257d19005ba37aea8768ee446557500e88e91ca46b4d14d6cb4a0bf033c6ec0c8c0b660d85719f1ef
|
|
5132
5611
|
languageName: node
|
|
5133
5612
|
linkType: hard
|
|
5134
5613
|
|
|
@@ -5139,6 +5618,13 @@ __metadata:
|
|
|
5139
5618
|
languageName: node
|
|
5140
5619
|
linkType: hard
|
|
5141
5620
|
|
|
5621
|
+
"pretty-bytes@npm:^7.1.0":
|
|
5622
|
+
version: 7.1.0
|
|
5623
|
+
resolution: "pretty-bytes@npm:7.1.0"
|
|
5624
|
+
checksum: 10c0/9458f17007bbf8b61d11ef82091bfe7f87bb2f3fd7e6aa917744eb6dc709346995f698ecbf6597ac353b0d44bb7982054f7a2325f3260c9909d09aaafbdab5ca
|
|
5625
|
+
languageName: node
|
|
5626
|
+
linkType: hard
|
|
5627
|
+
|
|
5142
5628
|
"pretty-hrtime@npm:^1.0.3":
|
|
5143
5629
|
version: 1.0.3
|
|
5144
5630
|
resolution: "pretty-hrtime@npm:1.0.3"
|
|
@@ -5171,6 +5657,13 @@ __metadata:
|
|
|
5171
5657
|
languageName: node
|
|
5172
5658
|
linkType: hard
|
|
5173
5659
|
|
|
5660
|
+
"punycode.js@npm:^2.3.1":
|
|
5661
|
+
version: 2.3.1
|
|
5662
|
+
resolution: "punycode.js@npm:2.3.1"
|
|
5663
|
+
checksum: 10c0/1d12c1c0e06127fa5db56bd7fdf698daf9a78104456a6b67326877afc21feaa821257b171539caedd2f0524027fa38e67b13dd094159c8d70b6d26d2bea4dfdb
|
|
5664
|
+
languageName: node
|
|
5665
|
+
linkType: hard
|
|
5666
|
+
|
|
5174
5667
|
"read-cache@npm:^1.0.0":
|
|
5175
5668
|
version: 1.0.0
|
|
5176
5669
|
resolution: "read-cache@npm:1.0.0"
|
|
@@ -5214,6 +5707,53 @@ __metadata:
|
|
|
5214
5707
|
languageName: node
|
|
5215
5708
|
linkType: hard
|
|
5216
5709
|
|
|
5710
|
+
"remark-frontmatter@npm:^5.0.0":
|
|
5711
|
+
version: 5.0.0
|
|
5712
|
+
resolution: "remark-frontmatter@npm:5.0.0"
|
|
5713
|
+
dependencies:
|
|
5714
|
+
"@types/mdast": "npm:^4.0.0"
|
|
5715
|
+
mdast-util-frontmatter: "npm:^2.0.0"
|
|
5716
|
+
micromark-extension-frontmatter: "npm:^2.0.0"
|
|
5717
|
+
unified: "npm:^11.0.0"
|
|
5718
|
+
checksum: 10c0/102325d5edbcf30eaf74de8a0a6e03096cc2370dfef19080fd2dd208f368fbb2323388751ac9931a1aa38a4f2828fa4bad6c52dc5249dcadcd34861693b52bf9
|
|
5719
|
+
languageName: node
|
|
5720
|
+
linkType: hard
|
|
5721
|
+
|
|
5722
|
+
"remark-parse@npm:^11.0.0":
|
|
5723
|
+
version: 11.0.0
|
|
5724
|
+
resolution: "remark-parse@npm:11.0.0"
|
|
5725
|
+
dependencies:
|
|
5726
|
+
"@types/mdast": "npm:^4.0.0"
|
|
5727
|
+
mdast-util-from-markdown: "npm:^2.0.0"
|
|
5728
|
+
micromark-util-types: "npm:^2.0.0"
|
|
5729
|
+
unified: "npm:^11.0.0"
|
|
5730
|
+
checksum: 10c0/6eed15ddb8680eca93e04fcb2d1b8db65a743dcc0023f5007265dda558b09db595a087f622062ccad2630953cd5cddc1055ce491d25a81f3317c858348a8dd38
|
|
5731
|
+
languageName: node
|
|
5732
|
+
linkType: hard
|
|
5733
|
+
|
|
5734
|
+
"remark-stringify@npm:^11.0.0":
|
|
5735
|
+
version: 11.0.0
|
|
5736
|
+
resolution: "remark-stringify@npm:11.0.0"
|
|
5737
|
+
dependencies:
|
|
5738
|
+
"@types/mdast": "npm:^4.0.0"
|
|
5739
|
+
mdast-util-to-markdown: "npm:^2.0.0"
|
|
5740
|
+
unified: "npm:^11.0.0"
|
|
5741
|
+
checksum: 10c0/0cdb37ce1217578f6f847c7ec9f50cbab35df5b9e3903d543e74b405404e67c07defcb23cd260a567b41b769400f6de03c2c3d9cd6ae7a6707d5c8d89ead489f
|
|
5742
|
+
languageName: node
|
|
5743
|
+
linkType: hard
|
|
5744
|
+
|
|
5745
|
+
"remark@npm:^15.0.1":
|
|
5746
|
+
version: 15.0.1
|
|
5747
|
+
resolution: "remark@npm:15.0.1"
|
|
5748
|
+
dependencies:
|
|
5749
|
+
"@types/mdast": "npm:^4.0.0"
|
|
5750
|
+
remark-parse: "npm:^11.0.0"
|
|
5751
|
+
remark-stringify: "npm:^11.0.0"
|
|
5752
|
+
unified: "npm:^11.0.0"
|
|
5753
|
+
checksum: 10c0/ba675e4a5b114355991d2c6f5b09a632121fc8825257b0d148b3938420713f9e9b6f012120604435d5c217d42742f60195ac6f898dc1339d313a6608a84dbc49
|
|
5754
|
+
languageName: node
|
|
5755
|
+
linkType: hard
|
|
5756
|
+
|
|
5217
5757
|
"require-directory@npm:^2.1.1":
|
|
5218
5758
|
version: 2.1.1
|
|
5219
5759
|
resolution: "require-directory@npm:2.1.1"
|
|
@@ -5283,35 +5823,35 @@ __metadata:
|
|
|
5283
5823
|
linkType: hard
|
|
5284
5824
|
|
|
5285
5825
|
"rollup@npm:^4.20.0":
|
|
5286
|
-
version: 4.
|
|
5287
|
-
resolution: "rollup@npm:4.
|
|
5288
|
-
dependencies:
|
|
5289
|
-
"@rollup/rollup-android-arm-eabi": "npm:4.
|
|
5290
|
-
"@rollup/rollup-android-arm64": "npm:4.
|
|
5291
|
-
"@rollup/rollup-darwin-arm64": "npm:4.
|
|
5292
|
-
"@rollup/rollup-darwin-x64": "npm:4.
|
|
5293
|
-
"@rollup/rollup-freebsd-arm64": "npm:4.
|
|
5294
|
-
"@rollup/rollup-freebsd-x64": "npm:4.
|
|
5295
|
-
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.
|
|
5296
|
-
"@rollup/rollup-linux-arm-musleabihf": "npm:4.
|
|
5297
|
-
"@rollup/rollup-linux-arm64-gnu": "npm:4.
|
|
5298
|
-
"@rollup/rollup-linux-arm64-musl": "npm:4.
|
|
5299
|
-
"@rollup/rollup-linux-loong64-gnu": "npm:4.
|
|
5300
|
-
"@rollup/rollup-linux-loong64-musl": "npm:4.
|
|
5301
|
-
"@rollup/rollup-linux-ppc64-gnu": "npm:4.
|
|
5302
|
-
"@rollup/rollup-linux-ppc64-musl": "npm:4.
|
|
5303
|
-
"@rollup/rollup-linux-riscv64-gnu": "npm:4.
|
|
5304
|
-
"@rollup/rollup-linux-riscv64-musl": "npm:4.
|
|
5305
|
-
"@rollup/rollup-linux-s390x-gnu": "npm:4.
|
|
5306
|
-
"@rollup/rollup-linux-x64-gnu": "npm:4.
|
|
5307
|
-
"@rollup/rollup-linux-x64-musl": "npm:4.
|
|
5308
|
-
"@rollup/rollup-openbsd-x64": "npm:4.
|
|
5309
|
-
"@rollup/rollup-openharmony-arm64": "npm:4.
|
|
5310
|
-
"@rollup/rollup-win32-arm64-msvc": "npm:4.
|
|
5311
|
-
"@rollup/rollup-win32-ia32-msvc": "npm:4.
|
|
5312
|
-
"@rollup/rollup-win32-x64-gnu": "npm:4.
|
|
5313
|
-
"@rollup/rollup-win32-x64-msvc": "npm:4.
|
|
5314
|
-
"@types/estree": "npm:1.0.
|
|
5826
|
+
version: 4.62.2
|
|
5827
|
+
resolution: "rollup@npm:4.62.2"
|
|
5828
|
+
dependencies:
|
|
5829
|
+
"@rollup/rollup-android-arm-eabi": "npm:4.62.2"
|
|
5830
|
+
"@rollup/rollup-android-arm64": "npm:4.62.2"
|
|
5831
|
+
"@rollup/rollup-darwin-arm64": "npm:4.62.2"
|
|
5832
|
+
"@rollup/rollup-darwin-x64": "npm:4.62.2"
|
|
5833
|
+
"@rollup/rollup-freebsd-arm64": "npm:4.62.2"
|
|
5834
|
+
"@rollup/rollup-freebsd-x64": "npm:4.62.2"
|
|
5835
|
+
"@rollup/rollup-linux-arm-gnueabihf": "npm:4.62.2"
|
|
5836
|
+
"@rollup/rollup-linux-arm-musleabihf": "npm:4.62.2"
|
|
5837
|
+
"@rollup/rollup-linux-arm64-gnu": "npm:4.62.2"
|
|
5838
|
+
"@rollup/rollup-linux-arm64-musl": "npm:4.62.2"
|
|
5839
|
+
"@rollup/rollup-linux-loong64-gnu": "npm:4.62.2"
|
|
5840
|
+
"@rollup/rollup-linux-loong64-musl": "npm:4.62.2"
|
|
5841
|
+
"@rollup/rollup-linux-ppc64-gnu": "npm:4.62.2"
|
|
5842
|
+
"@rollup/rollup-linux-ppc64-musl": "npm:4.62.2"
|
|
5843
|
+
"@rollup/rollup-linux-riscv64-gnu": "npm:4.62.2"
|
|
5844
|
+
"@rollup/rollup-linux-riscv64-musl": "npm:4.62.2"
|
|
5845
|
+
"@rollup/rollup-linux-s390x-gnu": "npm:4.62.2"
|
|
5846
|
+
"@rollup/rollup-linux-x64-gnu": "npm:4.62.2"
|
|
5847
|
+
"@rollup/rollup-linux-x64-musl": "npm:4.62.2"
|
|
5848
|
+
"@rollup/rollup-openbsd-x64": "npm:4.62.2"
|
|
5849
|
+
"@rollup/rollup-openharmony-arm64": "npm:4.62.2"
|
|
5850
|
+
"@rollup/rollup-win32-arm64-msvc": "npm:4.62.2"
|
|
5851
|
+
"@rollup/rollup-win32-ia32-msvc": "npm:4.62.2"
|
|
5852
|
+
"@rollup/rollup-win32-x64-gnu": "npm:4.62.2"
|
|
5853
|
+
"@rollup/rollup-win32-x64-msvc": "npm:4.62.2"
|
|
5854
|
+
"@types/estree": "npm:1.0.9"
|
|
5315
5855
|
fsevents: "npm:~2.3.2"
|
|
5316
5856
|
dependenciesMeta:
|
|
5317
5857
|
"@rollup/rollup-android-arm-eabi":
|
|
@@ -5368,7 +5908,7 @@ __metadata:
|
|
|
5368
5908
|
optional: true
|
|
5369
5909
|
bin:
|
|
5370
5910
|
rollup: dist/bin/rollup
|
|
5371
|
-
checksum: 10c0/
|
|
5911
|
+
checksum: 10c0/83ff5f4a1fea3fa05db2ef56beceee8c33d4a72b818e19c562f1e85c41076fe5b12aadc44048bb73e60b83336df82154b017fa6bf0186f3141643e6f215fbdcb
|
|
5372
5912
|
languageName: node
|
|
5373
5913
|
linkType: hard
|
|
5374
5914
|
|
|
@@ -5407,10 +5947,20 @@ __metadata:
|
|
|
5407
5947
|
languageName: node
|
|
5408
5948
|
linkType: hard
|
|
5409
5949
|
|
|
5410
|
-
"sax@npm:^1.
|
|
5411
|
-
version: 1.
|
|
5412
|
-
resolution: "sax@npm:1.
|
|
5413
|
-
checksum: 10c0/
|
|
5950
|
+
"sax@npm:^1.5.0":
|
|
5951
|
+
version: 1.6.0
|
|
5952
|
+
resolution: "sax@npm:1.6.0"
|
|
5953
|
+
checksum: 10c0/e5593f4a91eb25761a688c4d96902e4e95a0dd6017bc65146b6f21236e3d715cf893333b76bc758923c9574c2fb5a7a76c3a81e96ea15432f2624f906c027c1e
|
|
5954
|
+
languageName: node
|
|
5955
|
+
linkType: hard
|
|
5956
|
+
|
|
5957
|
+
"section-matter@npm:^1.0.0":
|
|
5958
|
+
version: 1.0.0
|
|
5959
|
+
resolution: "section-matter@npm:1.0.0"
|
|
5960
|
+
dependencies:
|
|
5961
|
+
extend-shallow: "npm:^2.0.1"
|
|
5962
|
+
kind-of: "npm:^6.0.0"
|
|
5963
|
+
checksum: 10c0/8007f91780adc5aaa781a848eaae50b0f680bbf4043b90cf8a96778195b8fab690c87fe7a989e02394ce69890e330811ec8dab22397d384673ce59f7d750641d
|
|
5414
5964
|
languageName: node
|
|
5415
5965
|
linkType: hard
|
|
5416
5966
|
|
|
@@ -5454,9 +6004,9 @@ __metadata:
|
|
|
5454
6004
|
linkType: hard
|
|
5455
6005
|
|
|
5456
6006
|
"shell-quote@npm:^1.8.1":
|
|
5457
|
-
version: 1.
|
|
5458
|
-
resolution: "shell-quote@npm:1.
|
|
5459
|
-
checksum: 10c0/
|
|
6007
|
+
version: 1.9.0
|
|
6008
|
+
resolution: "shell-quote@npm:1.9.0"
|
|
6009
|
+
checksum: 10c0/a39960107eb086b02394cfceb3c732bd3bf567b568719ff47101448fc3f1bf4a59ecfdd8960ff7ea564d749ef8bda70f2c82a768f22d8c7aeeabf2b64f53b7e8
|
|
5460
6010
|
languageName: node
|
|
5461
6011
|
linkType: hard
|
|
5462
6012
|
|
|
@@ -5569,6 +6119,13 @@ __metadata:
|
|
|
5569
6119
|
languageName: node
|
|
5570
6120
|
linkType: hard
|
|
5571
6121
|
|
|
6122
|
+
"sprintf-js@npm:~1.0.2":
|
|
6123
|
+
version: 1.0.3
|
|
6124
|
+
resolution: "sprintf-js@npm:1.0.3"
|
|
6125
|
+
checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb
|
|
6126
|
+
languageName: node
|
|
6127
|
+
linkType: hard
|
|
6128
|
+
|
|
5572
6129
|
"ssri@npm:^13.0.0":
|
|
5573
6130
|
version: 13.0.1
|
|
5574
6131
|
resolution: "ssri@npm:13.0.1"
|
|
@@ -5628,6 +6185,13 @@ __metadata:
|
|
|
5628
6185
|
languageName: node
|
|
5629
6186
|
linkType: hard
|
|
5630
6187
|
|
|
6188
|
+
"strip-bom-string@npm:^1.0.0":
|
|
6189
|
+
version: 1.0.0
|
|
6190
|
+
resolution: "strip-bom-string@npm:1.0.0"
|
|
6191
|
+
checksum: 10c0/5c5717e2643225aa6a6d659d34176ab2657037f1fe2423ac6fcdb488f135e14fef1022030e426d8b4d0989e09adbd5c3288d5d3b9c632abeefd2358dfc512bca
|
|
6192
|
+
languageName: node
|
|
6193
|
+
linkType: hard
|
|
6194
|
+
|
|
5631
6195
|
"stylehacks@npm:^7.0.5":
|
|
5632
6196
|
version: 7.0.7
|
|
5633
6197
|
resolution: "stylehacks@npm:7.0.7"
|
|
@@ -5682,8 +6246,8 @@ __metadata:
|
|
|
5682
6246
|
linkType: hard
|
|
5683
6247
|
|
|
5684
6248
|
"svgo@npm:^4.0.0":
|
|
5685
|
-
version: 4.0.
|
|
5686
|
-
resolution: "svgo@npm:4.0.
|
|
6249
|
+
version: 4.0.1
|
|
6250
|
+
resolution: "svgo@npm:4.0.1"
|
|
5687
6251
|
dependencies:
|
|
5688
6252
|
commander: "npm:^11.1.0"
|
|
5689
6253
|
css-select: "npm:^5.1.0"
|
|
@@ -5691,10 +6255,10 @@ __metadata:
|
|
|
5691
6255
|
css-what: "npm:^6.1.0"
|
|
5692
6256
|
csso: "npm:^5.0.5"
|
|
5693
6257
|
picocolors: "npm:^1.1.1"
|
|
5694
|
-
sax: "npm:^1.
|
|
6258
|
+
sax: "npm:^1.5.0"
|
|
5695
6259
|
bin:
|
|
5696
6260
|
svgo: ./bin/svgo.js
|
|
5697
|
-
checksum: 10c0/
|
|
6261
|
+
checksum: 10c0/f61f9957b42e0c97593b49a01f3b93cb239b2e818efccb056fcc866d622704d9021c4ef8bd0287264c3e4f33da60e4af14d841b4a624b87ff8888e3b896d13d5
|
|
5698
6262
|
languageName: node
|
|
5699
6263
|
linkType: hard
|
|
5700
6264
|
|
|
@@ -5720,15 +6284,15 @@ __metadata:
|
|
|
5720
6284
|
linkType: hard
|
|
5721
6285
|
|
|
5722
6286
|
"tar@npm:^7.5.4":
|
|
5723
|
-
version: 7.5.
|
|
5724
|
-
resolution: "tar@npm:7.5.
|
|
6287
|
+
version: 7.5.19
|
|
6288
|
+
resolution: "tar@npm:7.5.19"
|
|
5725
6289
|
dependencies:
|
|
5726
6290
|
"@isaacs/fs-minipass": "npm:^4.0.0"
|
|
5727
6291
|
chownr: "npm:^3.0.0"
|
|
5728
6292
|
minipass: "npm:^7.1.2"
|
|
5729
6293
|
minizlib: "npm:^3.1.0"
|
|
5730
6294
|
yallist: "npm:^5.0.0"
|
|
5731
|
-
checksum: 10c0/
|
|
6295
|
+
checksum: 10c0/7022e8cb04a8ceccc0689f2c731743fa2aab2e3c3f559f7dbc37b65ef7d5913049b427284eded2ec0765c5db5ff72dd7939fe2ae15785ff422cef2116c95d798
|
|
5732
6296
|
languageName: node
|
|
5733
6297
|
linkType: hard
|
|
5734
6298
|
|
|
@@ -5765,6 +6329,13 @@ __metadata:
|
|
|
5765
6329
|
languageName: node
|
|
5766
6330
|
linkType: hard
|
|
5767
6331
|
|
|
6332
|
+
"tokenx@npm:^1.3.0":
|
|
6333
|
+
version: 1.3.0
|
|
6334
|
+
resolution: "tokenx@npm:1.3.0"
|
|
6335
|
+
checksum: 10c0/b8fbfb3ab29e0b13e4b7798ded083b9a73a8aa95460647b38d16b605b0160fa7ec8a12095350f50ca08fafb55e34db44a0fe8b140a09c30481e43f4fdafbcd41
|
|
6336
|
+
languageName: node
|
|
6337
|
+
linkType: hard
|
|
6338
|
+
|
|
5768
6339
|
"tree-kill@npm:^1.2.2":
|
|
5769
6340
|
version: 1.2.2
|
|
5770
6341
|
resolution: "tree-kill@npm:1.2.2"
|
|
@@ -5781,6 +6352,13 @@ __metadata:
|
|
|
5781
6352
|
languageName: node
|
|
5782
6353
|
linkType: hard
|
|
5783
6354
|
|
|
6355
|
+
"trough@npm:^2.0.0":
|
|
6356
|
+
version: 2.2.0
|
|
6357
|
+
resolution: "trough@npm:2.2.0"
|
|
6358
|
+
checksum: 10c0/58b671fc970e7867a48514168894396dd94e6d9d6456aca427cc299c004fe67f35ed7172a36449086b2edde10e78a71a284ec0076809add6834fb8f857ccb9b0
|
|
6359
|
+
languageName: node
|
|
6360
|
+
linkType: hard
|
|
6361
|
+
|
|
5784
6362
|
"ts-dedent@npm:^2.2.0":
|
|
5785
6363
|
version: 2.2.0
|
|
5786
6364
|
resolution: "ts-dedent@npm:2.2.0"
|
|
@@ -5795,6 +6373,28 @@ __metadata:
|
|
|
5795
6373
|
languageName: node
|
|
5796
6374
|
linkType: hard
|
|
5797
6375
|
|
|
6376
|
+
"uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0":
|
|
6377
|
+
version: 2.1.0
|
|
6378
|
+
resolution: "uc.micro@npm:2.1.0"
|
|
6379
|
+
checksum: 10c0/8862eddb412dda76f15db8ad1c640ccc2f47cdf8252a4a30be908d535602c8d33f9855dfcccb8b8837855c1ce1eaa563f7fa7ebe3c98fd0794351aab9b9c55fa
|
|
6380
|
+
languageName: node
|
|
6381
|
+
linkType: hard
|
|
6382
|
+
|
|
6383
|
+
"unified@npm:^11.0.0":
|
|
6384
|
+
version: 11.0.5
|
|
6385
|
+
resolution: "unified@npm:11.0.5"
|
|
6386
|
+
dependencies:
|
|
6387
|
+
"@types/unist": "npm:^3.0.0"
|
|
6388
|
+
bail: "npm:^2.0.0"
|
|
6389
|
+
devlop: "npm:^1.0.0"
|
|
6390
|
+
extend: "npm:^3.0.0"
|
|
6391
|
+
is-plain-obj: "npm:^4.0.0"
|
|
6392
|
+
trough: "npm:^2.0.0"
|
|
6393
|
+
vfile: "npm:^6.0.0"
|
|
6394
|
+
checksum: 10c0/53c8e685f56d11d9d458a43e0e74328a4d6386af51c8ac37a3dcabec74ce5026da21250590d4aff6733ccd7dc203116aae2b0769abc18cdf9639a54ae528dfc9
|
|
6395
|
+
languageName: node
|
|
6396
|
+
linkType: hard
|
|
6397
|
+
|
|
5798
6398
|
"unist-util-is@npm:^6.0.0":
|
|
5799
6399
|
version: 6.0.0
|
|
5800
6400
|
resolution: "unist-util-is@npm:6.0.0"
|
|
@@ -5813,6 +6413,17 @@ __metadata:
|
|
|
5813
6413
|
languageName: node
|
|
5814
6414
|
linkType: hard
|
|
5815
6415
|
|
|
6416
|
+
"unist-util-remove@npm:^4.0.0":
|
|
6417
|
+
version: 4.0.0
|
|
6418
|
+
resolution: "unist-util-remove@npm:4.0.0"
|
|
6419
|
+
dependencies:
|
|
6420
|
+
"@types/unist": "npm:^3.0.0"
|
|
6421
|
+
unist-util-is: "npm:^6.0.0"
|
|
6422
|
+
unist-util-visit-parents: "npm:^6.0.0"
|
|
6423
|
+
checksum: 10c0/30f3ed31095dd7f3109266d39c514fab5f2da3fb656d5f78a0e3e7700f219760f2f4d8286c810ae43c241fee3f0a8dd40f8d1e5ebeee3cb810581d5e7e8d4f7d
|
|
6424
|
+
languageName: node
|
|
6425
|
+
linkType: hard
|
|
6426
|
+
|
|
5816
6427
|
"unist-util-stringify-position@npm:^4.0.0":
|
|
5817
6428
|
version: 4.0.0
|
|
5818
6429
|
resolution: "unist-util-stringify-position@npm:4.0.0"
|
|
@@ -5843,6 +6454,17 @@ __metadata:
|
|
|
5843
6454
|
languageName: node
|
|
5844
6455
|
linkType: hard
|
|
5845
6456
|
|
|
6457
|
+
"unist-util-visit@npm:^5.1.0":
|
|
6458
|
+
version: 5.1.0
|
|
6459
|
+
resolution: "unist-util-visit@npm:5.1.0"
|
|
6460
|
+
dependencies:
|
|
6461
|
+
"@types/unist": "npm:^3.0.0"
|
|
6462
|
+
unist-util-is: "npm:^6.0.0"
|
|
6463
|
+
unist-util-visit-parents: "npm:^6.0.0"
|
|
6464
|
+
checksum: 10c0/a56e1bbbf63fcb55abe379e660b9a3367787e8be1e2473bdb7e86cfa6f32b6c1fa0092432d7040b8a30b2fc674bbbe024ffe6d03c3d6bf4839b064f584463a4e
|
|
6465
|
+
languageName: node
|
|
6466
|
+
linkType: hard
|
|
6467
|
+
|
|
5846
6468
|
"universalify@npm:^2.0.0":
|
|
5847
6469
|
version: 2.0.1
|
|
5848
6470
|
resolution: "universalify@npm:2.0.1"
|
|
@@ -5943,6 +6565,28 @@ __metadata:
|
|
|
5943
6565
|
languageName: node
|
|
5944
6566
|
linkType: hard
|
|
5945
6567
|
|
|
6568
|
+
"vitepress-plugin-llms@npm:^1.13.2":
|
|
6569
|
+
version: 1.13.2
|
|
6570
|
+
resolution: "vitepress-plugin-llms@npm:1.13.2"
|
|
6571
|
+
dependencies:
|
|
6572
|
+
gray-matter: "npm:^4.0.3"
|
|
6573
|
+
markdown-it: "npm:^14.1.0"
|
|
6574
|
+
markdown-title: "npm:^1.0.2"
|
|
6575
|
+
mdast-util-from-markdown: "npm:^2.0.3"
|
|
6576
|
+
millify: "npm:^6.1.0"
|
|
6577
|
+
minimatch: "npm:^10.2.5"
|
|
6578
|
+
path-to-regexp: "npm:^6.3.0"
|
|
6579
|
+
picocolors: "npm:^1.1.1"
|
|
6580
|
+
pretty-bytes: "npm:^7.1.0"
|
|
6581
|
+
remark: "npm:^15.0.1"
|
|
6582
|
+
remark-frontmatter: "npm:^5.0.0"
|
|
6583
|
+
tokenx: "npm:^1.3.0"
|
|
6584
|
+
unist-util-remove: "npm:^4.0.0"
|
|
6585
|
+
unist-util-visit: "npm:^5.1.0"
|
|
6586
|
+
checksum: 10c0/09d523e5c73771cc1a1677a46034afb13b89d7b023767ab1f4ef13daf59a105bd35f73635005cc46697bcb4c186a9c9ba895d8381dc045b8743eac86580a54cf
|
|
6587
|
+
languageName: node
|
|
6588
|
+
linkType: hard
|
|
6589
|
+
|
|
5946
6590
|
"vitepress-plugin-mermaid@npm:^2.0.17":
|
|
5947
6591
|
version: 2.0.17
|
|
5948
6592
|
resolution: "vitepress-plugin-mermaid@npm:2.0.17"
|
|
@@ -6146,7 +6790,22 @@ __metadata:
|
|
|
6146
6790
|
languageName: node
|
|
6147
6791
|
linkType: hard
|
|
6148
6792
|
|
|
6149
|
-
"
|
|
6793
|
+
"yargs@npm:^17.0.1":
|
|
6794
|
+
version: 17.7.3
|
|
6795
|
+
resolution: "yargs@npm:17.7.3"
|
|
6796
|
+
dependencies:
|
|
6797
|
+
cliui: "npm:^8.0.1"
|
|
6798
|
+
escalade: "npm:^3.1.1"
|
|
6799
|
+
get-caller-file: "npm:^2.0.5"
|
|
6800
|
+
require-directory: "npm:^2.1.1"
|
|
6801
|
+
string-width: "npm:^4.2.3"
|
|
6802
|
+
y18n: "npm:^5.0.5"
|
|
6803
|
+
yargs-parser: "npm:^21.1.1"
|
|
6804
|
+
checksum: 10c0/7a28572f7e785a57886e34fdbddb9b28756dec552e1453d5f6e7cdd00ad8721a4e8c4321d33683f5e61cacb36ad43258adbb48396b71ec4ed14abee0fc0d0c1f
|
|
6805
|
+
languageName: node
|
|
6806
|
+
linkType: hard
|
|
6807
|
+
|
|
6808
|
+
"zwitch@npm:^2.0.0, zwitch@npm:^2.0.4":
|
|
6150
6809
|
version: 2.0.4
|
|
6151
6810
|
resolution: "zwitch@npm:2.0.4"
|
|
6152
6811
|
checksum: 10c0/3c7830cdd3378667e058ffdb4cf2bb78ac5711214e2725900873accb23f3dfe5f9e7e5a06dcdc5f29605da976fc45c26d9a13ca334d6eea2245a15e77b8fc06e
|