winter-super-cli 2026.5.26 → 2026.5.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -0
- package/README.md +601 -47
- package/bin/winter.js +8 -1
- package/package.json +13 -2
- package/src/agent/swe-agent.js +169 -0
- package/src/ai/prompts/success-criteria.js +210 -0
- package/src/ai/prompts/system-prompt.js +113 -0
- package/src/ai/prompts/task-classifier.js +121 -0
- package/src/ai/prompts/tool-templates.js +116 -0
- package/src/ai/providers.js +113 -23
- package/src/cache/contextreuse.js +159 -0
- package/src/cache/embeddings.js +185 -0
- package/src/cache/similarity.js +175 -0
- package/src/cli/commands.js +253 -4
- package/src/cli/config.js +163 -7
- package/src/cli/context-loader.js +277 -0
- package/src/cli/conversation-format.js +253 -0
- package/src/cli/markdown-format.js +143 -0
- package/src/cli/prompt-builder.js +189 -0
- package/src/cli/repl-commands.js +344 -0
- package/src/cli/repl.js +505 -847
- package/src/cli/secret-env.js +69 -0
- package/src/cli/slash-commands.js +50 -0
- package/src/cli/spinner.js +32 -0
- package/src/cli/terminal-ui.js +34 -1
- package/src/context/compress.js +71 -0
- package/src/context/priority.js +115 -0
- package/src/context/router.js +36 -0
- package/src/context/selector.js +145 -0
- package/src/context/summarizer.js +146 -0
- package/src/mcp/client.js +146 -0
- package/src/mcp/completions.js +246 -0
- package/src/mcp/diagnostics.js +169 -0
- package/src/mcp/ide-server.js +195 -0
- package/src/mcp/protocol.js +42 -0
- package/src/session/manager.js +47 -1
- package/src/tools/agent.js +69 -0
- package/src/tools/analytics.js +160 -0
- package/src/tools/executor.js +597 -28
- package/src/tools/fallback.js +123 -0
- package/src/tools/insert-text.js +93 -0
- package/src/tools/interactive.js +122 -0
- package/src/tools/notebook.js +136 -0
- package/src/tools/optimizer.js +141 -0
- package/src/tools/parallel.js +159 -0
- package/src/tools/permission.js +86 -0
- package/src/tools/retry.js +88 -0
- package/src/tools/scheduler.js +160 -0
- package/src/tools/str-replace-all.js +61 -0
- package/src/tools/todo.js +98 -0
- package/src/tools/web-archive.js +212 -0
- package/CLAUDE.md +0 -118
- package/memories/readme.md +0 -35
- package/resources/local/agents.md/AGENTS.md +0 -43
- package/resources/local/agents.md/LICENSE +0 -21
- package/resources/local/agents.md/README.md +0 -49
- package/resources/local/agents.md/components/AboutSection.tsx +0 -37
- package/resources/local/agents.md/components/CodeExample.tsx +0 -207
- package/resources/local/agents.md/components/CompatibilitySection.tsx +0 -378
- package/resources/local/agents.md/components/ExampleListSection.tsx +0 -188
- package/resources/local/agents.md/components/ExamplesSection.tsx +0 -22
- package/resources/local/agents.md/components/FAQSection.tsx +0 -113
- package/resources/local/agents.md/components/Footer.tsx +0 -17
- package/resources/local/agents.md/components/Hero.tsx +0 -230
- package/resources/local/agents.md/components/HowToUseSection.tsx +0 -66
- package/resources/local/agents.md/components/Section.tsx +0 -44
- package/resources/local/agents.md/components/ThreeCanvas.tsx +0 -240
- package/resources/local/agents.md/components/WhySection.tsx +0 -64
- package/resources/local/agents.md/components/icons/ClipboardIcon.tsx +0 -27
- package/resources/local/agents.md/components/icons/CopyIcon.tsx +0 -15
- package/resources/local/agents.md/components/icons/GitHubIcon.tsx +0 -24
- package/resources/local/agents.md/components/icons/LinkIcon.tsx +0 -27
- package/resources/local/agents.md/components/icons/UserIcon.tsx +0 -27
- package/resources/local/agents.md/next.config.ts +0 -8
- package/resources/local/agents.md/package.json +0 -27
- package/resources/local/agents.md/pages/_app.tsx +0 -24
- package/resources/local/agents.md/pages/_document.tsx +0 -24
- package/resources/local/agents.md/pages/index.tsx +0 -160
- package/resources/local/agents.md/pnpm-lock.yaml +0 -2782
- package/resources/local/agents.md/postcss.config.mjs +0 -5
- package/resources/local/agents.md/public/favicon-dark.png +0 -0
- package/resources/local/agents.md/public/favicon-light.png +0 -0
- package/resources/local/agents.md/public/favicon.ico +0 -0
- package/resources/local/agents.md/public/logos/aider.svg +0 -16
- package/resources/local/agents.md/public/logos/amp.svg +0 -5
- package/resources/local/agents.md/public/logos/augment.svg +0 -9
- package/resources/local/agents.md/public/logos/codex.svg +0 -3
- package/resources/local/agents.md/public/logos/copilot.svg +0 -1
- package/resources/local/agents.md/public/logos/cursor.svg +0 -15
- package/resources/local/agents.md/public/logos/devin-dark.svg +0 -1
- package/resources/local/agents.md/public/logos/devin-light.svg +0 -1
- package/resources/local/agents.md/public/logos/factory.svg +0 -3
- package/resources/local/agents.md/public/logos/gemini.svg +0 -27
- package/resources/local/agents.md/public/logos/goose.svg +0 -12
- package/resources/local/agents.md/public/logos/jules.svg +0 -3
- package/resources/local/agents.md/public/logos/junie.svg +0 -5
- package/resources/local/agents.md/public/logos/kilo-code.svg +0 -43
- package/resources/local/agents.md/public/logos/ona-dark.svg +0 -3
- package/resources/local/agents.md/public/logos/ona-light.svg +0 -3
- package/resources/local/agents.md/public/logos/opencode.svg +0 -40
- package/resources/local/agents.md/public/logos/phoenix.svg +0 -44
- package/resources/local/agents.md/public/logos/roocode.svg +0 -3
- package/resources/local/agents.md/public/logos/semgrep.svg +0 -7
- package/resources/local/agents.md/public/logos/uipath.svg +0 -6
- package/resources/local/agents.md/public/logos/vscode-dark.svg +0 -19
- package/resources/local/agents.md/public/logos/vscode-light.svg +0 -12
- package/resources/local/agents.md/public/logos/warp.svg +0 -7
- package/resources/local/agents.md/public/logos/windsurf-dark.svg +0 -3
- package/resources/local/agents.md/public/logos/windsurf-light.svg +0 -3
- package/resources/local/agents.md/public/logos/zed.svg +0 -3
- package/resources/local/agents.md/public/og.png +0 -0
- package/resources/local/agents.md/styles/globals.css +0 -415
- package/resources/local/agents.md/tsconfig.json +0 -34
- package/resources/local/awesome-design-md/README.md +0 -197
- package/resources/local/awesome-design-md/design-md/airbnb/DESIGN.md +0 -545
- package/resources/local/awesome-design-md/design-md/airbnb/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/airtable/DESIGN.md +0 -554
- package/resources/local/awesome-design-md/design-md/airtable/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/apple/DESIGN.md +0 -562
- package/resources/local/awesome-design-md/design-md/apple/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/binance/DESIGN.md +0 -634
- package/resources/local/awesome-design-md/design-md/binance/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/bmw/DESIGN.md +0 -544
- package/resources/local/awesome-design-md/design-md/bmw/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/bmw-m/DESIGN.md +0 -503
- package/resources/local/awesome-design-md/design-md/bmw-m/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/bugatti/DESIGN.md +0 -454
- package/resources/local/awesome-design-md/design-md/bugatti/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/cal/DESIGN.md +0 -542
- package/resources/local/awesome-design-md/design-md/cal/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/claude/DESIGN.md +0 -589
- package/resources/local/awesome-design-md/design-md/claude/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/clay/DESIGN.md +0 -541
- package/resources/local/awesome-design-md/design-md/clay/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/clickhouse/DESIGN.md +0 -544
- package/resources/local/awesome-design-md/design-md/clickhouse/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/cohere/DESIGN.md +0 -451
- package/resources/local/awesome-design-md/design-md/cohere/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/coinbase/DESIGN.md +0 -570
- package/resources/local/awesome-design-md/design-md/coinbase/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/composio/DESIGN.md +0 -506
- package/resources/local/awesome-design-md/design-md/composio/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/cursor/DESIGN.md +0 -537
- package/resources/local/awesome-design-md/design-md/cursor/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/elevenlabs/DESIGN.md +0 -504
- package/resources/local/awesome-design-md/design-md/elevenlabs/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/expo/DESIGN.md +0 -526
- package/resources/local/awesome-design-md/design-md/expo/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/ferrari/DESIGN.md +0 -531
- package/resources/local/awesome-design-md/design-md/ferrari/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/figma/DESIGN.md +0 -578
- package/resources/local/awesome-design-md/design-md/figma/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/framer/DESIGN.md +0 -544
- package/resources/local/awesome-design-md/design-md/framer/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/hashicorp/DESIGN.md +0 -575
- package/resources/local/awesome-design-md/design-md/hashicorp/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/ibm/DESIGN.md +0 -550
- package/resources/local/awesome-design-md/design-md/ibm/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/intercom/DESIGN.md +0 -546
- package/resources/local/awesome-design-md/design-md/intercom/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/kraken/DESIGN.md +0 -125
- package/resources/local/awesome-design-md/design-md/kraken/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/lamborghini/DESIGN.md +0 -288
- package/resources/local/awesome-design-md/design-md/lamborghini/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/linear.app/DESIGN.md +0 -548
- package/resources/local/awesome-design-md/design-md/linear.app/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/lovable/DESIGN.md +0 -298
- package/resources/local/awesome-design-md/design-md/lovable/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/mastercard/DESIGN.md +0 -365
- package/resources/local/awesome-design-md/design-md/mastercard/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/meta/DESIGN.md +0 -683
- package/resources/local/awesome-design-md/design-md/meta/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/minimax/DESIGN.md +0 -746
- package/resources/local/awesome-design-md/design-md/minimax/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/mintlify/DESIGN.md +0 -852
- package/resources/local/awesome-design-md/design-md/mintlify/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/miro/DESIGN.md +0 -825
- package/resources/local/awesome-design-md/design-md/miro/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/mistral.ai/DESIGN.md +0 -773
- package/resources/local/awesome-design-md/design-md/mistral.ai/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/mongodb/DESIGN.md +0 -767
- package/resources/local/awesome-design-md/design-md/mongodb/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/nike/DESIGN.md +0 -575
- package/resources/local/awesome-design-md/design-md/nike/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/notion/DESIGN.md +0 -821
- package/resources/local/awesome-design-md/design-md/notion/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/nvidia/DESIGN.md +0 -640
- package/resources/local/awesome-design-md/design-md/nvidia/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/ollama/DESIGN.md +0 -539
- package/resources/local/awesome-design-md/design-md/ollama/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/opencode.ai/DESIGN.md +0 -521
- package/resources/local/awesome-design-md/design-md/opencode.ai/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/pinterest/DESIGN.md +0 -597
- package/resources/local/awesome-design-md/design-md/pinterest/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/playstation/DESIGN.md +0 -661
- package/resources/local/awesome-design-md/design-md/playstation/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/posthog/DESIGN.md +0 -690
- package/resources/local/awesome-design-md/design-md/posthog/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/raycast/DESIGN.md +0 -669
- package/resources/local/awesome-design-md/design-md/raycast/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/renault/DESIGN.md +0 -589
- package/resources/local/awesome-design-md/design-md/renault/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/replicate/DESIGN.md +0 -616
- package/resources/local/awesome-design-md/design-md/replicate/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/resend/DESIGN.md +0 -585
- package/resources/local/awesome-design-md/design-md/resend/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/revolut/DESIGN.md +0 -636
- package/resources/local/awesome-design-md/design-md/revolut/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/runwayml/DESIGN.md +0 -244
- package/resources/local/awesome-design-md/design-md/runwayml/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/sanity/DESIGN.md +0 -357
- package/resources/local/awesome-design-md/design-md/sanity/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/sentry/DESIGN.md +0 -262
- package/resources/local/awesome-design-md/design-md/sentry/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/shopify/DESIGN.md +0 -350
- package/resources/local/awesome-design-md/design-md/shopify/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/spacex/DESIGN.md +0 -194
- package/resources/local/awesome-design-md/design-md/spacex/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/spotify/DESIGN.md +0 -246
- package/resources/local/awesome-design-md/design-md/spotify/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/starbucks/DESIGN.md +0 -580
- package/resources/local/awesome-design-md/design-md/starbucks/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/stripe/DESIGN.md +0 -322
- package/resources/local/awesome-design-md/design-md/stripe/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/supabase/DESIGN.md +0 -255
- package/resources/local/awesome-design-md/design-md/supabase/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/superhuman/DESIGN.md +0 -252
- package/resources/local/awesome-design-md/design-md/superhuman/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/tesla/DESIGN.md +0 -286
- package/resources/local/awesome-design-md/design-md/tesla/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/theverge/DESIGN.md +0 -339
- package/resources/local/awesome-design-md/design-md/theverge/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/together.ai/DESIGN.md +0 -263
- package/resources/local/awesome-design-md/design-md/together.ai/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/uber/DESIGN.md +0 -295
- package/resources/local/awesome-design-md/design-md/uber/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/vercel/DESIGN.md +0 -310
- package/resources/local/awesome-design-md/design-md/vercel/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/vodafone/DESIGN.md +0 -423
- package/resources/local/awesome-design-md/design-md/vodafone/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/voltagent/DESIGN.md +0 -323
- package/resources/local/awesome-design-md/design-md/voltagent/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/warp/DESIGN.md +0 -253
- package/resources/local/awesome-design-md/design-md/warp/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/webflow/DESIGN.md +0 -92
- package/resources/local/awesome-design-md/design-md/webflow/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/wired/DESIGN.md +0 -278
- package/resources/local/awesome-design-md/design-md/wired/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/wise/DESIGN.md +0 -173
- package/resources/local/awesome-design-md/design-md/wise/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/x.ai/DESIGN.md +0 -257
- package/resources/local/awesome-design-md/design-md/x.ai/README.md +0 -5
- package/resources/local/awesome-design-md/design-md/zapier/DESIGN.md +0 -328
- package/resources/local/awesome-design-md/design-md/zapier/README.md +0 -5
- package/resources/local/awesome-design-md/design-md-cli.js +0 -167
- package/resources/local/claude/plugins/blocklist.json +0 -17
- package/resources/local/claude/plugins/installed_plugins.json +0 -37
- package/resources/local/claude/plugins/known_marketplaces.json +0 -18
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/.claude-plugin/marketplace.json +0 -55
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/README.md +0 -94
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/THIRD_PARTY_NOTICES.md +0 -405
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/algorithmic-art/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/algorithmic-art/SKILL.md +0 -405
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/algorithmic-art/templates/generator_template.js +0 -223
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/algorithmic-art/templates/viewer.html +0 -599
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/brand-guidelines/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/brand-guidelines/SKILL.md +0 -73
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/SKILL.md +0 -130
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/ArsenalSC-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/ArsenalSC-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/BigShoulders-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/BigShoulders-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/BigShoulders-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Boldonse-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Boldonse-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/BricolageGrotesque-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/BricolageGrotesque-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/BricolageGrotesque-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/CrimsonPro-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/CrimsonPro-Italic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/CrimsonPro-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/CrimsonPro-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/DMMono-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/DMMono-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/EricaOne-OFL.txt +0 -94
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/EricaOne-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/GeistMono-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/GeistMono-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/GeistMono-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Gloock-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Gloock-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/IBMPlexMono-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/IBMPlexMono-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/IBMPlexMono-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/IBMPlexSerif-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/IBMPlexSerif-BoldItalic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/IBMPlexSerif-Italic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/IBMPlexSerif-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/InstrumentSans-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/InstrumentSans-BoldItalic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/InstrumentSans-Italic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/InstrumentSans-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/InstrumentSans-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/InstrumentSerif-Italic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/InstrumentSerif-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Italiana-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Italiana-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/JetBrainsMono-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/JetBrainsMono-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/JetBrainsMono-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Jura-Light.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Jura-Medium.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Jura-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/LibreBaskerville-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/LibreBaskerville-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Lora-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Lora-BoldItalic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Lora-Italic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Lora-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Lora-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/NationalPark-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/NationalPark-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/NationalPark-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/NothingYouCouldDo-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/NothingYouCouldDo-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Outfit-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Outfit-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Outfit-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/PixelifySans-Medium.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/PixelifySans-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/PoiretOne-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/PoiretOne-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/RedHatMono-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/RedHatMono-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/RedHatMono-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Silkscreen-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Silkscreen-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/SmoochSans-Medium.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/SmoochSans-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Tektur-Medium.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Tektur-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/Tektur-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/WorkSans-Bold.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/WorkSans-BoldItalic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/WorkSans-Italic.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/WorkSans-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/WorkSans-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/YoungSerif-OFL.txt +0 -93
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/canvas-design/canvas-fonts/YoungSerif-Regular.ttf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/SKILL.md +0 -324
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/csharp/claude-api.md +0 -402
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/curl/examples.md +0 -216
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/curl/managed-agents.md +0 -336
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/go/claude-api.md +0 -421
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/go/managed-agents/README.md +0 -561
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/java/claude-api.md +0 -432
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/java/managed-agents/README.md +0 -442
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/php/claude-api.md +0 -375
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/php/managed-agents/README.md +0 -435
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/python/claude-api/README.md +0 -420
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/python/claude-api/batches.md +0 -185
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/python/claude-api/files-api.md +0 -165
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/python/claude-api/streaming.md +0 -162
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/python/claude-api/tool-use.md +0 -590
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/python/managed-agents/README.md +0 -332
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/ruby/claude-api.md +0 -113
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/ruby/managed-agents/README.md +0 -389
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/agent-design.md +0 -101
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/error-codes.md +0 -213
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/live-sources.md +0 -132
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-api-reference.md +0 -337
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-client-patterns.md +0 -209
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-core.md +0 -218
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-environments.md +0 -211
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-events.md +0 -189
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-memory.md +0 -197
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-onboarding.md +0 -114
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-overview.md +0 -64
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/managed-agents-tools.md +0 -315
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/model-migration.md +0 -779
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/models.md +0 -121
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/prompt-caching.md +0 -171
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/shared/tool-use-concepts.md +0 -327
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/typescript/claude-api/README.md +0 -333
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/typescript/claude-api/batches.md +0 -106
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/typescript/claude-api/files-api.md +0 -98
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/typescript/claude-api/streaming.md +0 -178
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/typescript/claude-api/tool-use.md +0 -527
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/claude-api/typescript/managed-agents/README.md +0 -359
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/doc-coauthoring/SKILL.md +0 -375
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/LICENSE.txt +0 -30
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/SKILL.md +0 -590
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/__init__.py +0 -1
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/accept_changes.py +0 -135
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/comment.py +0 -318
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/helpers/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/helpers/merge_runs.py +0 -199
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/helpers/simplify_redlines.py +0 -197
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/pack.py +0 -159
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -1499
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -146
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -1085
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -11
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -3081
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -23
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -185
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -287
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -1676
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -28
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -144
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -174
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -25
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -18
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -59
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -56
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -195
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -582
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -25
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -4439
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -570
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -509
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -12
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -108
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -96
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -3646
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -116
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -42
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -50
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -49
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -33
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/mce/mc.xsd +0 -75
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/microsoft/wml-2010.xsd +0 -560
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/microsoft/wml-2012.xsd +0 -67
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/microsoft/wml-2018.xsd +0 -14
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +0 -20
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +0 -13
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -4
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +0 -8
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/soffice.py +0 -183
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/unpack.py +0 -132
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/validate.py +0 -111
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/validators/__init__.py +0 -15
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/validators/base.py +0 -847
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/validators/docx.py +0 -446
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/validators/pptx.py +0 -275
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/office/validators/redlining.py +0 -247
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/templates/comments.xml +0 -3
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/templates/commentsExtended.xml +0 -3
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/templates/commentsExtensible.xml +0 -3
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/templates/commentsIds.xml +0 -3
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/docx/scripts/templates/people.xml +0 -3
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/frontend-design/LICENSE.txt +0 -177
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/frontend-design/SKILL.md +0 -42
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/internal-comms/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/internal-comms/SKILL.md +0 -32
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/internal-comms/examples/3p-updates.md +0 -47
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/internal-comms/examples/company-newsletter.md +0 -65
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/internal-comms/examples/faq-answers.md +0 -30
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/internal-comms/examples/general-comms.md +0 -16
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/SKILL.md +0 -236
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/reference/evaluation.md +0 -602
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/reference/mcp_best_practices.md +0 -249
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/reference/node_mcp_server.md +0 -970
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/reference/python_mcp_server.md +0 -719
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/scripts/connections.py +0 -151
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/scripts/evaluation.py +0 -373
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/scripts/example_evaluation.xml +0 -22
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/mcp-builder/scripts/requirements.txt +0 -2
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/LICENSE.txt +0 -30
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/SKILL.md +0 -314
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/forms.md +0 -294
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/reference.md +0 -612
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/scripts/check_bounding_boxes.py +0 -65
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/scripts/check_fillable_fields.py +0 -11
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/scripts/convert_pdf_to_images.py +0 -33
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/scripts/create_validation_image.py +0 -37
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/scripts/extract_form_field_info.py +0 -122
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/scripts/extract_form_structure.py +0 -115
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/scripts/fill_fillable_fields.py +0 -98
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pdf/scripts/fill_pdf_form_with_annotations.py +0 -107
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/LICENSE.txt +0 -30
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/SKILL.md +0 -232
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/editing.md +0 -205
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/pptxgenjs.md +0 -420
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/add_slide.py +0 -195
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/clean.py +0 -286
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/helpers/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/helpers/merge_runs.py +0 -199
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/helpers/simplify_redlines.py +0 -197
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/pack.py +0 -159
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -1499
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -146
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -1085
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -11
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -3081
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -23
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -185
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -287
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -1676
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -28
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -144
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -174
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -25
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -18
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -59
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -56
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -195
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -582
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -25
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -4439
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -570
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -509
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -12
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -108
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -96
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -3646
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -116
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -42
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -50
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -49
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -33
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/mce/mc.xsd +0 -75
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/microsoft/wml-2010.xsd +0 -560
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/microsoft/wml-2012.xsd +0 -67
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/microsoft/wml-2018.xsd +0 -14
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +0 -20
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +0 -13
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -4
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +0 -8
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/soffice.py +0 -183
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/unpack.py +0 -132
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/validate.py +0 -111
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/validators/__init__.py +0 -15
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/validators/base.py +0 -847
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/validators/docx.py +0 -446
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/validators/pptx.py +0 -275
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/office/validators/redlining.py +0 -247
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/pptx/scripts/thumbnail.py +0 -289
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/SKILL.md +0 -485
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/agents/analyzer.md +0 -274
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/agents/comparator.md +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/agents/grader.md +0 -223
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/assets/eval_review.html +0 -146
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/eval-viewer/generate_review.py +0 -471
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/eval-viewer/viewer.html +0 -1325
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/references/schemas.md +0 -430
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/aggregate_benchmark.py +0 -401
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/generate_report.py +0 -326
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/improve_description.py +0 -247
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/package_skill.py +0 -136
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/quick_validate.py +0 -103
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/run_eval.py +0 -310
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/run_loop.py +0 -328
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/skill-creator/scripts/utils.py +0 -47
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/slack-gif-creator/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/slack-gif-creator/SKILL.md +0 -254
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/slack-gif-creator/core/easing.py +0 -234
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/slack-gif-creator/core/frame_composer.py +0 -176
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/slack-gif-creator/core/gif_builder.py +0 -269
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/slack-gif-creator/core/validators.py +0 -136
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/slack-gif-creator/requirements.txt +0 -4
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/SKILL.md +0 -59
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/theme-showcase.pdf +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/arctic-frost.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/botanical-garden.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/desert-rose.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/forest-canopy.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/golden-hour.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/midnight-galaxy.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/modern-minimalist.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/ocean-depths.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/sunset-boulevard.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/theme-factory/themes/tech-innovation.md +0 -19
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/web-artifacts-builder/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/web-artifacts-builder/SKILL.md +0 -74
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/web-artifacts-builder/scripts/bundle-artifact.sh +0 -54
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/web-artifacts-builder/scripts/init-artifact.sh +0 -322
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/web-artifacts-builder/scripts/shadcn-components.tar.gz +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/webapp-testing/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/webapp-testing/SKILL.md +0 -96
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/webapp-testing/examples/console_logging.py +0 -35
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/webapp-testing/examples/element_discovery.py +0 -40
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/webapp-testing/examples/static_html_automation.py +0 -33
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/webapp-testing/scripts/with_server.py +0 -106
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/LICENSE.txt +0 -30
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/SKILL.md +0 -292
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/helpers/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/helpers/merge_runs.py +0 -199
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/helpers/simplify_redlines.py +0 -197
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/pack.py +0 -159
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +0 -1499
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +0 -146
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +0 -1085
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +0 -11
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +0 -3081
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +0 -23
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +0 -185
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +0 -287
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +0 -1676
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +0 -28
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +0 -144
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +0 -174
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +0 -25
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +0 -18
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +0 -59
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +0 -56
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +0 -195
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +0 -582
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +0 -25
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +0 -4439
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +0 -570
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +0 -509
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +0 -12
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +0 -108
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +0 -96
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +0 -3646
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +0 -116
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-contentTypes.xsd +0 -42
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-coreProperties.xsd +0 -50
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-digSig.xsd +0 -49
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/ecma/fouth-edition/opc-relationships.xsd +0 -33
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/mce/mc.xsd +0 -75
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/microsoft/wml-2010.xsd +0 -560
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/microsoft/wml-2012.xsd +0 -67
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/microsoft/wml-2018.xsd +0 -14
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/microsoft/wml-cex-2018.xsd +0 -20
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/microsoft/wml-cid-2016.xsd +0 -13
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +0 -4
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/schemas/microsoft/wml-symex-2015.xsd +0 -8
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/soffice.py +0 -183
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/unpack.py +0 -132
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/validate.py +0 -111
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/validators/__init__.py +0 -15
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/validators/base.py +0 -847
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/validators/docx.py +0 -446
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/validators/pptx.py +0 -275
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/office/validators/redlining.py +0 -247
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/skills/xlsx/scripts/recalc.py +0 -184
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/spec/agent-skills-spec.md +0 -3
- package/resources/local/claude/plugins/marketplaces/anthropic-agent-skills/template/SKILL.md +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/.claude-plugin/marketplace.json +0 -1724
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/.gcs-sha +0 -1
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/README.md +0 -51
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/asana/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/asana/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/context7/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/context7/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/.claude-plugin/plugin.json +0 -11
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/.mcp.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/ACCESS.md +0 -143
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/README.md +0 -112
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/bun.lock +0 -244
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/package.json +0 -14
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/server.ts +0 -900
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/skills/access/SKILL.md +0 -137
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/discord/skills/configure/SKILL.md +0 -99
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/fakechat/.claude-plugin/plugin.json +0 -13
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/fakechat/.mcp.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/fakechat/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/fakechat/README.md +0 -47
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/fakechat/bun.lock +0 -206
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/fakechat/package.json +0 -16
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/fakechat/server.ts +0 -295
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/firebase/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/firebase/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/github/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/github/.mcp.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/gitlab/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/gitlab/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/greptile/.claude-plugin/plugin.json +0 -10
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/greptile/.mcp.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/greptile/README.md +0 -57
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/.claude-plugin/plugin.json +0 -11
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/.mcp.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/ACCESS.md +0 -142
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/README.md +0 -84
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/bun.lock +0 -207
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/package.json +0 -17
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/server.ts +0 -875
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/skills/access/SKILL.md +0 -140
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/imessage/skills/configure/SKILL.md +0 -82
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/laravel-boost/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/laravel-boost/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/linear/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/linear/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/playwright/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/playwright/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/serena/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/serena/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/.claude-plugin/plugin.json +0 -11
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/.mcp.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/ACCESS.md +0 -147
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/README.md +0 -99
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/bun.lock +0 -212
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/package.json +0 -14
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/server.ts +0 -1032
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/skills/access/SKILL.md +0 -136
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/telegram/skills/configure/SKILL.md +0 -96
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/terraform/.claude-plugin/plugin.json +0 -7
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/external_plugins/terraform/.mcp.json +0 -12
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/agent-sdk-dev/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/agent-sdk-dev/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/agent-sdk-dev/README.md +0 -208
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/agent-sdk-dev/agents/agent-sdk-verifier-py.md +0 -140
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/agent-sdk-dev/agents/agent-sdk-verifier-ts.md +0 -145
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/agent-sdk-dev/commands/new-sdk-app.md +0 -176
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/clangd-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/clangd-lsp/README.md +0 -36
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/.claude-plugin/plugin.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/README.md +0 -29
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/automation-recommender-example.png +0 -0
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/skills/claude-automation-recommender/SKILL.md +0 -288
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/skills/claude-automation-recommender/references/hooks-patterns.md +0 -226
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/skills/claude-automation-recommender/references/mcp-servers.md +0 -263
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/skills/claude-automation-recommender/references/plugins-reference.md +0 -98
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/skills/claude-automation-recommender/references/skills-reference.md +0 -408
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-code-setup/skills/claude-automation-recommender/references/subagent-templates.md +0 -181
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/.claude-plugin/plugin.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/README.md +0 -40
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/claude-md-improver-example.png +0 -0
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/commands/revise-claude-md.md +0 -54
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/revise-claude-md-example.png +0 -0
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/skills/claude-md-improver/SKILL.md +0 -179
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/skills/claude-md-improver/references/quality-criteria.md +0 -109
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/skills/claude-md-improver/references/templates.md +0 -253
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/claude-md-management/skills/claude-md-improver/references/update-guidelines.md +0 -150
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/code-review/.claude-plugin/plugin.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/code-review/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/code-review/README.md +0 -246
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/code-review/commands/code-review.md +0 -92
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/code-simplifier/.claude-plugin/plugin.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/code-simplifier/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/code-simplifier/agents/code-simplifier.md +0 -52
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/.claude-plugin/plugin.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/README.md +0 -225
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/commands/clean_gone.md +0 -53
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/commands/commit-push-pr.md +0 -20
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/commit-commands/commands/commit.md +0 -17
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/csharp-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/csharp-lsp/README.md +0 -25
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/example-plugin/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/example-plugin/.mcp.json +0 -6
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/example-plugin/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/example-plugin/README.md +0 -69
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/example-plugin/commands/example-command.md +0 -39
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/example-plugin/skills/example-command/SKILL.md +0 -39
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/example-plugin/skills/example-skill/SKILL.md +0 -84
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/explanatory-output-style/.claude-plugin/plugin.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/explanatory-output-style/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/explanatory-output-style/README.md +0 -72
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/explanatory-output-style/hooks/hooks.json +0 -15
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/explanatory-output-style/hooks-handlers/session-start.sh +0 -15
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/feature-dev/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/feature-dev/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/feature-dev/README.md +0 -412
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/feature-dev/agents/code-architect.md +0 -34
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/feature-dev/agents/code-explorer.md +0 -51
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/feature-dev/agents/code-reviewer.md +0 -46
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/feature-dev/commands/feature-dev.md +0 -125
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/frontend-design/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/frontend-design/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/frontend-design/README.md +0 -31
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/frontend-design/skills/frontend-design/SKILL.md +0 -42
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/gopls-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/gopls-lsp/README.md +0 -20
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/README.md +0 -340
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/agents/conversation-analyzer.md +0 -176
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/commands/configure.md +0 -128
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/commands/help.md +0 -175
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/commands/hookify.md +0 -231
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/commands/list.md +0 -82
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/core/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/core/config_loader.py +0 -297
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/core/rule_engine.py +0 -313
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/examples/console-log-warning.local.md +0 -14
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/examples/dangerous-rm.local.md +0 -14
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/examples/require-tests-stop.local.md +0 -22
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/examples/sensitive-files-warning.local.md +0 -18
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/hooks/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/hooks/hooks.json +0 -49
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/hooks/posttooluse.py +0 -62
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/hooks/pretooluse.py +0 -66
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/hooks/stop.py +0 -55
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/hooks/userpromptsubmit.py +0 -54
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/matchers/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/skills/writing-rules/SKILL.md +0 -374
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/hookify/utils/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/jdtls-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/jdtls-lsp/README.md +0 -33
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/kotlin-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/kotlin-lsp/README.md +0 -16
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/learning-output-style/.claude-plugin/plugin.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/learning-output-style/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/learning-output-style/README.md +0 -93
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/learning-output-style/hooks/hooks.json +0 -15
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/learning-output-style/hooks-handlers/session-start.sh +0 -15
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/lua-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/lua-lsp/README.md +0 -32
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/README.md +0 -40
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/SKILL.md +0 -411
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/evals/trigger_eval.json +0 -23
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/references/adversarial_prompts.md +0 -293
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/references/attempt_agent.md +0 -63
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/references/known_constructions.md +0 -46
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/references/model_tier_defaults.md +0 -66
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/references/presentation_prompts.md +0 -153
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/references/solver_heuristics.md +0 -135
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/references/verifier_patterns.md +0 -206
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/scripts/check_latex.sh +0 -4
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/math-olympiad/skills/math-olympiad/scripts/compile_pdf.sh +0 -54
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/README.md +0 -32
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-app/SKILL.md +0 -361
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-app/references/apps-sdk-messages.md +0 -160
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-app/references/iframe-sandbox.md +0 -149
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-app/references/widget-templates.md +0 -249
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/SKILL.md +0 -221
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/references/auth.md +0 -108
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/references/deploy-cloudflare-workers.md +0 -106
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/references/elicitation.md +0 -129
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/references/remote-http-scaffold.md +0 -211
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/references/resources-and-prompts.md +0 -122
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/references/server-capabilities.md +0 -164
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/references/tool-design.md +0 -189
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcp-server/references/versions.md +0 -25
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcpb/SKILL.md +0 -199
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcpb/references/local-security.md +0 -149
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/mcp-server-dev/skills/build-mcpb/references/manifest-schema.md +0 -156
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/php-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/php-lsp/README.md +0 -24
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/README.md +0 -28
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/skills/playground/SKILL.md +0 -76
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/skills/playground/templates/code-map.md +0 -158
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/skills/playground/templates/concept-map.md +0 -73
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/skills/playground/templates/data-explorer.md +0 -67
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/skills/playground/templates/design-playground.md +0 -67
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/skills/playground/templates/diff-review.md +0 -179
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/playground/skills/playground/templates/document-critique.md +0 -171
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/README.md +0 -402
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/agents/agent-creator.md +0 -176
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/agents/plugin-validator.md +0 -184
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/agents/skill-reviewer.md +0 -184
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/commands/create-plugin.md +0 -449
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/agent-development/SKILL.md +0 -415
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/agent-development/examples/agent-creation-prompt.md +0 -238
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/agent-development/examples/complete-agent-examples.md +0 -427
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/agent-development/references/agent-creation-system-prompt.md +0 -207
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/agent-development/references/system-prompt-design.md +0 -411
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/agent-development/references/triggering-examples.md +0 -491
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/agent-development/scripts/validate-agent.sh +0 -217
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/README.md +0 -272
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/SKILL.md +0 -884
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/examples/plugin-commands.md +0 -557
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/examples/simple-commands.md +0 -504
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/references/advanced-workflows.md +0 -722
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/references/documentation-patterns.md +0 -739
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/references/frontmatter-reference.md +0 -463
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/references/interactive-commands.md +0 -920
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/references/marketplace-considerations.md +0 -904
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/references/plugin-features-reference.md +0 -609
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/command-development/references/testing-strategies.md +0 -702
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/SKILL.md +0 -712
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/examples/load-context.sh +0 -55
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/examples/validate-bash.sh +0 -43
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/examples/validate-write.sh +0 -38
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/references/advanced.md +0 -479
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/references/migration.md +0 -369
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/references/patterns.md +0 -346
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/scripts/README.md +0 -164
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/scripts/hook-linter.sh +0 -153
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/scripts/test-hook.sh +0 -252
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/hook-development/scripts/validate-hook-schema.sh +0 -159
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/mcp-integration/SKILL.md +0 -554
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/mcp-integration/examples/http-server.json +0 -20
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/mcp-integration/examples/sse-server.json +0 -19
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/mcp-integration/examples/stdio-server.json +0 -26
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/mcp-integration/references/authentication.md +0 -549
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/mcp-integration/references/server-types.md +0 -536
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/mcp-integration/references/tool-usage.md +0 -538
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-settings/SKILL.md +0 -544
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-settings/examples/create-settings-command.md +0 -98
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-settings/examples/example-settings.md +0 -159
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-settings/examples/read-settings-hook.sh +0 -65
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-settings/references/parsing-techniques.md +0 -549
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-settings/references/real-world-examples.md +0 -395
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-settings/scripts/parse-frontmatter.sh +0 -59
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-settings/scripts/validate-settings.sh +0 -101
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure/README.md +0 -109
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure/SKILL.md +0 -476
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure/examples/advanced-plugin.md +0 -765
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure/examples/minimal-plugin.md +0 -83
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure/examples/standard-plugin.md +0 -587
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure/references/component-patterns.md +0 -567
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/plugin-structure/references/manifest-reference.md +0 -552
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/skill-development/SKILL.md +0 -637
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/plugin-dev/skills/skill-development/references/skill-creator-original.md +0 -209
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/README.md +0 -313
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/agents/code-reviewer.md +0 -47
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/agents/code-simplifier.md +0 -88
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/agents/comment-analyzer.md +0 -70
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/agents/pr-test-analyzer.md +0 -69
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/agents/silent-failure-hunter.md +0 -130
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/agents/type-design-analyzer.md +0 -110
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pr-review-toolkit/commands/review-pr.md +0 -189
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pyright-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/pyright-lsp/README.md +0 -31
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/.claude-plugin/plugin.json +0 -9
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/README.md +0 -197
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/commands/cancel-ralph.md +0 -18
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/commands/help.md +0 -126
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/commands/ralph-loop.md +0 -18
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/hooks/hooks.json +0 -15
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/hooks/stop-hook.sh +0 -191
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ralph-loop/scripts/setup-ralph-loop.sh +0 -204
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ruby-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/ruby-lsp/README.md +0 -31
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/rust-analyzer-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/rust-analyzer-lsp/README.md +0 -34
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/security-guidance/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/security-guidance/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/security-guidance/hooks/hooks.json +0 -16
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/security-guidance/hooks/security_reminder_hook.py +0 -280
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/session-report/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/session-report/skills/session-report/SKILL.md +0 -42
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/session-report/skills/session-report/analyze-sessions.mjs +0 -875
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/session-report/skills/session-report/template.html +0 -569
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/.claude-plugin/plugin.json +0 -8
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/README.md +0 -3
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/LICENSE.txt +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/SKILL.md +0 -479
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/agents/analyzer.md +0 -274
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/agents/comparator.md +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/agents/grader.md +0 -223
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/assets/eval_review.html +0 -146
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/eval-viewer/generate_review.py +0 -471
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/eval-viewer/viewer.html +0 -1325
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/references/schemas.md +0 -430
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/__init__.py +0 -0
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/aggregate_benchmark.py +0 -401
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/generate_report.py +0 -326
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/improve_description.py +0 -248
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/package_skill.py +0 -136
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/quick_validate.py +0 -103
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/run_eval.py +0 -310
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/run_loop.py +0 -332
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/skill-creator/skills/skill-creator/scripts/utils.py +0 -47
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/swift-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/swift-lsp/README.md +0 -25
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/typescript-lsp/LICENSE +0 -202
- package/resources/local/claude/plugins/marketplaces/claude-plugins-official/plugins/typescript-lsp/README.md +0 -24
- package/resources/local/claude/skills/skill-creator/SKILL.md +0 -39
- package/resources/local/claude/skills/vercel-react-best-practices/AGENTS.md +0 -2410
- package/resources/local/claude/skills/vercel-react-best-practices/SKILL.md +0 -125
- package/resources/local/claude/skills/vercel-react-best-practices/rules/advanced-event-handler-refs.md +0 -55
- package/resources/local/claude/skills/vercel-react-best-practices/rules/advanced-use-latest.md +0 -49
- package/resources/local/claude/skills/vercel-react-best-practices/rules/async-api-routes.md +0 -38
- package/resources/local/claude/skills/vercel-react-best-practices/rules/async-defer-await.md +0 -80
- package/resources/local/claude/skills/vercel-react-best-practices/rules/async-dependencies.md +0 -36
- package/resources/local/claude/skills/vercel-react-best-practices/rules/async-parallel.md +0 -28
- package/resources/local/claude/skills/vercel-react-best-practices/rules/async-suspense-boundaries.md +0 -99
- package/resources/local/claude/skills/vercel-react-best-practices/rules/bundle-barrel-imports.md +0 -59
- package/resources/local/claude/skills/vercel-react-best-practices/rules/bundle-conditional.md +0 -31
- package/resources/local/claude/skills/vercel-react-best-practices/rules/bundle-defer-third-party.md +0 -49
- package/resources/local/claude/skills/vercel-react-best-practices/rules/bundle-dynamic-imports.md +0 -35
- package/resources/local/claude/skills/vercel-react-best-practices/rules/bundle-preload.md +0 -50
- package/resources/local/claude/skills/vercel-react-best-practices/rules/client-event-listeners.md +0 -74
- package/resources/local/claude/skills/vercel-react-best-practices/rules/client-localstorage-schema.md +0 -71
- package/resources/local/claude/skills/vercel-react-best-practices/rules/client-passive-event-listeners.md +0 -48
- package/resources/local/claude/skills/vercel-react-best-practices/rules/client-swr-dedup.md +0 -56
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-batch-dom-css.md +0 -57
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-cache-function-results.md +0 -80
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-cache-property-access.md +0 -28
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-cache-storage.md +0 -70
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-combine-iterations.md +0 -32
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-early-exit.md +0 -50
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-hoist-regexp.md +0 -45
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-index-maps.md +0 -37
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-length-check-first.md +0 -49
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-min-max-loop.md +0 -82
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-set-map-lookups.md +0 -24
- package/resources/local/claude/skills/vercel-react-best-practices/rules/js-tosorted-immutable.md +0 -57
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rendering-activity.md +0 -26
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rendering-animate-svg-wrapper.md +0 -47
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rendering-conditional-render.md +0 -40
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rendering-content-visibility.md +0 -38
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rendering-hoist-jsx.md +0 -46
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rendering-hydration-no-flicker.md +0 -82
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rendering-svg-precision.md +0 -28
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rerender-defer-reads.md +0 -39
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rerender-dependencies.md +0 -45
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rerender-derived-state.md +0 -29
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rerender-functional-setstate.md +0 -74
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rerender-lazy-state-init.md +0 -58
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rerender-memo.md +0 -44
- package/resources/local/claude/skills/vercel-react-best-practices/rules/rerender-transitions.md +0 -40
- package/resources/local/claude/skills/vercel-react-best-practices/rules/server-after-nonblocking.md +0 -73
- package/resources/local/claude/skills/vercel-react-best-practices/rules/server-cache-lru.md +0 -41
- package/resources/local/claude/skills/vercel-react-best-practices/rules/server-cache-react.md +0 -76
- package/resources/local/claude/skills/vercel-react-best-practices/rules/server-parallel-fetching.md +0 -83
- package/resources/local/claude/skills/vercel-react-best-practices/rules/server-serialization.md +0 -38
- package/resources/local/claude/skills/web-design-guidelines/SKILL.md +0 -39
- package/resources/local/codex/AGENTS.md +0 -0
- package/resources/local/codex/models_cache.json +0 -395
- package/resources/local/codex/plugins/cache/openai-bundled/browser-use/0.1.0-alpha1/.codex-plugin/plugin.json +0 -42
- package/resources/local/codex/plugins/cache/openai-bundled/browser-use/0.1.0-alpha1/assets/browser.png +0 -0
- package/resources/local/codex/plugins/cache/openai-bundled/browser-use/0.1.0-alpha1/scripts/browser-client.mjs +0 -177
- package/resources/local/codex/plugins/cache/openai-bundled/browser-use/0.1.0-alpha1/skills/browser/SKILL.md +0 -734
- package/resources/local/codex/plugins/cache/openai-bundled/browser-use/0.1.0-alpha1/skills/browser/agents/openai.yaml +0 -4
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/.codex-plugin/plugin.json +0 -49
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/README.md +0 -17
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/assets/icon.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/assets/logo.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/LICENSE.txt +0 -19
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/SKILL.md +0 -400
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/agents/openai.yaml +0 -7
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/assets/file-document.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/examples/end_to_end_smoke_test.md +0 -32
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/manifest.txt +0 -72
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/ooxml/comments.md +0 -37
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/ooxml/hyperlinks_and_fields.md +0 -69
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/ooxml/rels_and_content_types.md +0 -37
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/ooxml/tracked_changes.md +0 -41
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/references/design_presets.md +0 -243
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/references/header_templates.md +0 -373
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/render_docx.py +0 -392
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/a11y_audit.py +0 -372
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/accept_tracked_changes.py +0 -180
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/add_tracked_replacements.py +0 -190
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/apply_template_styles.py +0 -131
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/captions_and_crossrefs.py +0 -305
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/comments_add.py +0 -260
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/comments_apply_patch.py +0 -156
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/comments_extract.py +0 -168
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/comments_strip.py +0 -151
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/content_controls.py +0 -358
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/docx_ooxml_patch.py +0 -649
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/docx_table_to_csv.py +0 -72
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/fields_materialize.py +0 -310
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/fields_report.py +0 -182
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/flatten_ref_fields.py +0 -154
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/footnotes_report.py +0 -99
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/heading_audit.py +0 -103
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/images_audit.py +0 -171
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/insert_note.py +0 -244
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/insert_ref_fields.py +0 -239
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/insert_toc.py +0 -154
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/internal_nav.py +0 -365
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/make_fixtures.py +0 -258
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/merge_docx_append.py +0 -110
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/privacy_scrub.py +0 -176
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/redact_docx.py +0 -315
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/render_and_diff.py +0 -165
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/section_audit.py +0 -86
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/set_protection.py +0 -149
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/style_lint.py +0 -170
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/style_normalize.py +0 -187
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/table_geometry.py +0 -270
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/watermark_add.py +0 -170
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/watermark_audit_remove.py +0 -145
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/scripts/xlsx_to_docx_table.py +0 -179
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/accessibility_a11y.md +0 -55
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/captions_crossrefs.md +0 -97
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/clean_tracked_changes.md +0 -44
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/comments_manage.md +0 -71
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/compare_diff.md +0 -32
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/create_edit.md +0 -47
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/fields_update.md +0 -66
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/fixtures_edge_cases.md +0 -42
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/footnotes_endnotes.md +0 -52
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/forms_content_controls.md +0 -49
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/headings_numbering.md +0 -44
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/images_figures.md +0 -35
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/multi_doc_merge.md +0 -31
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/navigation_internal_links.md +0 -62
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/privacy_scrub_metadata.md +0 -24
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/protection_restrict_editing.md +0 -36
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/read_review.md +0 -60
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/redaction_anonymization.md +0 -57
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/sections_layout.md +0 -62
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/style_lint_normalize.md +0 -70
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/tables_spreadsheets.md +0 -36
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/templates_style_packs.md +0 -34
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/toc_workflow.md +0 -61
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/verify_render.md +0 -54
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/tasks/watermarks_background.md +0 -35
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/troubleshooting/libreoffice_headless.md +0 -42
- package/resources/local/codex/plugins/cache/openai-primary-runtime/documents/26.505.10851/skills/documents/troubleshooting/run_splitting.md +0 -15
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/.codex-plugin/plugin.json +0 -48
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/README.md +0 -17
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/assets/icon.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/assets/logo.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/SKILL.md +0 -743
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/agents/openai.yaml +0 -7
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/assets/file-presentation.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/profiles/appendix-heavy.md +0 -24
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/profiles/consumer-retail.md +0 -59
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/profiles/engineering-platform.md +0 -30
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/profiles/finance-ir.md +0 -33
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/profiles/gtm-growth.md +0 -30
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/profiles/product-platform.md +0 -31
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/profiles/template-and-edit.md +0 -153
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/artifact_tool_utils.mjs +0 -504
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/build_artifact_deck.mjs +0 -209
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/check_icon_manifest.mjs +0 -138
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/check_layout_quality.mjs +0 -495
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/cleanup_presentation_workspace.mjs +0 -164
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/create_reference_slide.py +0 -96
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/create_reference_slides.py +0 -264
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/inspect_template_deck.mjs +0 -216
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/make_contact_sheet.py +0 -58
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/openai_generate_image.py +0 -146
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/prepare_template_starter_deck.mjs +0 -229
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/render_artifact_slide.mjs +0 -105
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/render_lucide_icon.mjs +0 -229
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/scripts/run_prompt_battle.mjs +0 -872
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/subagent-instructions.md +0 -128
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/templates/design-system-template.md +0 -107
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/templates/icon-manifest-template.json +0 -38
- package/resources/local/codex/plugins/cache/openai-primary-runtime/presentations/26.505.10851/skills/presentations/templates/visual-qa-template.md +0 -114
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/.codex-plugin/plugin.json +0 -48
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/README.md +0 -17
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/assets/icon.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/assets/logo.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/SKILL.md +0 -607
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/agents/openai.yaml +0 -7
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/assets/file-spreadsheet.png +0 -0
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/charts.md +0 -31
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/style_guidelines.md +0 -99
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/templates/financial_models.md +0 -121
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/templates/healthcare.md +0 -33
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/templates/marketing_advertising.md +0 -31
- package/resources/local/codex/plugins/cache/openai-primary-runtime/spreadsheets/26.505.10851/skills/spreadsheets/templates/scientific_research.md +0 -19
- package/resources/local/codex/rules/default.rules +0 -13
- package/resources/local/codex/skills/.system/.codex-system-skills.marker +0 -1
- package/resources/local/codex/skills/.system/imagegen/LICENSE.txt +0 -201
- package/resources/local/codex/skills/.system/imagegen/SKILL.md +0 -356
- package/resources/local/codex/skills/.system/imagegen/agents/openai.yaml +0 -6
- package/resources/local/codex/skills/.system/imagegen/assets/imagegen-small.svg +0 -5
- package/resources/local/codex/skills/.system/imagegen/assets/imagegen.png +0 -0
- package/resources/local/codex/skills/.system/imagegen/references/cli.md +0 -242
- package/resources/local/codex/skills/.system/imagegen/references/codex-network.md +0 -33
- package/resources/local/codex/skills/.system/imagegen/references/image-api.md +0 -90
- package/resources/local/codex/skills/.system/imagegen/references/prompting.md +0 -118
- package/resources/local/codex/skills/.system/imagegen/references/sample-prompts.md +0 -433
- package/resources/local/codex/skills/.system/imagegen/scripts/image_gen.py +0 -995
- package/resources/local/codex/skills/.system/imagegen/scripts/remove_chroma_key.py +0 -440
- package/resources/local/codex/skills/.system/openai-docs/LICENSE.txt +0 -201
- package/resources/local/codex/skills/.system/openai-docs/SKILL.md +0 -88
- package/resources/local/codex/skills/.system/openai-docs/agents/openai.yaml +0 -14
- package/resources/local/codex/skills/.system/openai-docs/assets/openai-small.svg +0 -3
- package/resources/local/codex/skills/.system/openai-docs/assets/openai.png +0 -0
- package/resources/local/codex/skills/.system/openai-docs/references/latest-model.md +0 -37
- package/resources/local/codex/skills/.system/openai-docs/references/prompting-guide.md +0 -244
- package/resources/local/codex/skills/.system/openai-docs/references/upgrade-guide.md +0 -181
- package/resources/local/codex/skills/.system/openai-docs/scripts/resolve-latest-model-info.js +0 -147
- package/resources/local/codex/skills/.system/plugin-creator/SKILL.md +0 -160
- package/resources/local/codex/skills/.system/plugin-creator/agents/openai.yaml +0 -6
- package/resources/local/codex/skills/.system/plugin-creator/assets/plugin-creator-small.svg +0 -3
- package/resources/local/codex/skills/.system/plugin-creator/assets/plugin-creator.png +0 -0
- package/resources/local/codex/skills/.system/plugin-creator/references/plugin-json-spec.md +0 -170
- package/resources/local/codex/skills/.system/plugin-creator/scripts/create_basic_plugin.py +0 -301
- package/resources/local/codex/skills/.system/skill-creator/SKILL.md +0 -416
- package/resources/local/codex/skills/.system/skill-creator/agents/openai.yaml +0 -5
- package/resources/local/codex/skills/.system/skill-creator/assets/skill-creator-small.svg +0 -3
- package/resources/local/codex/skills/.system/skill-creator/assets/skill-creator.png +0 -0
- package/resources/local/codex/skills/.system/skill-creator/license.txt +0 -202
- package/resources/local/codex/skills/.system/skill-creator/references/openai_yaml.md +0 -49
- package/resources/local/codex/skills/.system/skill-creator/scripts/generate_openai_yaml.py +0 -226
- package/resources/local/codex/skills/.system/skill-creator/scripts/init_skill.py +0 -400
- package/resources/local/codex/skills/.system/skill-creator/scripts/quick_validate.py +0 -101
- package/resources/local/codex/skills/.system/skill-installer/LICENSE.txt +0 -202
- package/resources/local/codex/skills/.system/skill-installer/SKILL.md +0 -58
- package/resources/local/codex/skills/.system/skill-installer/agents/openai.yaml +0 -5
- package/resources/local/codex/skills/.system/skill-installer/assets/skill-installer-small.svg +0 -3
- package/resources/local/codex/skills/.system/skill-installer/assets/skill-installer.png +0 -0
- package/resources/local/codex/skills/.system/skill-installer/scripts/github_utils.py +0 -21
- package/resources/local/codex/skills/.system/skill-installer/scripts/install-skill-from-github.py +0 -308
- package/resources/local/codex/skills/.system/skill-installer/scripts/list-skills.py +0 -107
- package/resources/local/codex/skills/vibefigma/SKILL.md +0 -87
- package/resources/local/codex/skills/vibefigma/references/responsive-cleanup.md +0 -180
- package/resources/local/karpathy-tools/CLAUDE.md +0 -65
- package/resources/local/karpathy-tools/karpathy-md.js +0 -140
- package/rules/default.md +0 -108
- package/skills/coding.md +0 -87
- package/skills/debug.md +0 -63
- package/skills/test.md +0 -64
- package/src/ai/providers.test.js +0 -137
- package/src/cli/commands.test.js +0 -179
- package/src/cli/repl.test.js +0 -507
- package/src/cli/terminal-ui.test.js +0 -33
- package/src/session/manager.test.js +0 -72
- package/src/tools/executor.test.js +0 -286
|
@@ -1,2782 +0,0 @@
|
|
|
1
|
-
lockfileVersion: '6.0'
|
|
2
|
-
|
|
3
|
-
settings:
|
|
4
|
-
autoInstallPeers: true
|
|
5
|
-
excludeLinksFromLockfile: false
|
|
6
|
-
|
|
7
|
-
dependencies:
|
|
8
|
-
'@tailwindcss/postcss':
|
|
9
|
-
specifier: 4.1.11
|
|
10
|
-
version: 4.1.11
|
|
11
|
-
'@vercel/analytics':
|
|
12
|
-
specifier: ^1.5.0
|
|
13
|
-
version: 1.5.0(next@16.1.0)(react@19.2.3)
|
|
14
|
-
next:
|
|
15
|
-
specifier: 16.1.0
|
|
16
|
-
version: 16.1.0(@babel/core@7.28.3)(react-dom@19.2.3)(react@19.2.3)
|
|
17
|
-
react:
|
|
18
|
-
specifier: 19.2.3
|
|
19
|
-
version: 19.2.3
|
|
20
|
-
react-dom:
|
|
21
|
-
specifier: 19.2.3
|
|
22
|
-
version: 19.2.3(react@19.2.3)
|
|
23
|
-
tailwindcss:
|
|
24
|
-
specifier: 4.1.11
|
|
25
|
-
version: 4.1.11
|
|
26
|
-
|
|
27
|
-
devDependencies:
|
|
28
|
-
'@svgr/webpack':
|
|
29
|
-
specifier: ^8.1.0
|
|
30
|
-
version: 8.1.0(typescript@5.9.2)
|
|
31
|
-
'@types/node':
|
|
32
|
-
specifier: '20'
|
|
33
|
-
version: 20.19.11
|
|
34
|
-
'@types/react':
|
|
35
|
-
specifier: '19'
|
|
36
|
-
version: 19.1.10
|
|
37
|
-
'@types/react-dom':
|
|
38
|
-
specifier: '19'
|
|
39
|
-
version: 19.1.7(@types/react@19.1.10)
|
|
40
|
-
typescript:
|
|
41
|
-
specifier: '5'
|
|
42
|
-
version: 5.9.2
|
|
43
|
-
|
|
44
|
-
packages:
|
|
45
|
-
|
|
46
|
-
/@alloc/quick-lru@5.2.0:
|
|
47
|
-
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
48
|
-
engines: {node: '>=10'}
|
|
49
|
-
dev: false
|
|
50
|
-
|
|
51
|
-
/@ampproject/remapping@2.3.0:
|
|
52
|
-
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
|
53
|
-
engines: {node: '>=6.0.0'}
|
|
54
|
-
dependencies:
|
|
55
|
-
'@jridgewell/gen-mapping': 0.3.13
|
|
56
|
-
'@jridgewell/trace-mapping': 0.3.30
|
|
57
|
-
|
|
58
|
-
/@babel/code-frame@7.27.1:
|
|
59
|
-
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
|
|
60
|
-
engines: {node: '>=6.9.0'}
|
|
61
|
-
dependencies:
|
|
62
|
-
'@babel/helper-validator-identifier': 7.27.1
|
|
63
|
-
js-tokens: 4.0.0
|
|
64
|
-
picocolors: 1.1.1
|
|
65
|
-
|
|
66
|
-
/@babel/compat-data@7.28.0:
|
|
67
|
-
resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
|
|
68
|
-
engines: {node: '>=6.9.0'}
|
|
69
|
-
|
|
70
|
-
/@babel/core@7.28.3:
|
|
71
|
-
resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==}
|
|
72
|
-
engines: {node: '>=6.9.0'}
|
|
73
|
-
dependencies:
|
|
74
|
-
'@ampproject/remapping': 2.3.0
|
|
75
|
-
'@babel/code-frame': 7.27.1
|
|
76
|
-
'@babel/generator': 7.28.3
|
|
77
|
-
'@babel/helper-compilation-targets': 7.27.2
|
|
78
|
-
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
|
|
79
|
-
'@babel/helpers': 7.28.3
|
|
80
|
-
'@babel/parser': 7.28.3
|
|
81
|
-
'@babel/template': 7.27.2
|
|
82
|
-
'@babel/traverse': 7.28.3
|
|
83
|
-
'@babel/types': 7.28.2
|
|
84
|
-
convert-source-map: 2.0.0
|
|
85
|
-
debug: 4.4.1
|
|
86
|
-
gensync: 1.0.0-beta.2
|
|
87
|
-
json5: 2.2.3
|
|
88
|
-
semver: 6.3.1
|
|
89
|
-
transitivePeerDependencies:
|
|
90
|
-
- supports-color
|
|
91
|
-
|
|
92
|
-
/@babel/generator@7.28.3:
|
|
93
|
-
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
|
|
94
|
-
engines: {node: '>=6.9.0'}
|
|
95
|
-
dependencies:
|
|
96
|
-
'@babel/parser': 7.28.3
|
|
97
|
-
'@babel/types': 7.28.2
|
|
98
|
-
'@jridgewell/gen-mapping': 0.3.13
|
|
99
|
-
'@jridgewell/trace-mapping': 0.3.30
|
|
100
|
-
jsesc: 3.1.0
|
|
101
|
-
|
|
102
|
-
/@babel/helper-annotate-as-pure@7.27.3:
|
|
103
|
-
resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==}
|
|
104
|
-
engines: {node: '>=6.9.0'}
|
|
105
|
-
dependencies:
|
|
106
|
-
'@babel/types': 7.28.2
|
|
107
|
-
dev: true
|
|
108
|
-
|
|
109
|
-
/@babel/helper-compilation-targets@7.27.2:
|
|
110
|
-
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
|
|
111
|
-
engines: {node: '>=6.9.0'}
|
|
112
|
-
dependencies:
|
|
113
|
-
'@babel/compat-data': 7.28.0
|
|
114
|
-
'@babel/helper-validator-option': 7.27.1
|
|
115
|
-
browserslist: 4.25.3
|
|
116
|
-
lru-cache: 5.1.1
|
|
117
|
-
semver: 6.3.1
|
|
118
|
-
|
|
119
|
-
/@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.3):
|
|
120
|
-
resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
|
|
121
|
-
engines: {node: '>=6.9.0'}
|
|
122
|
-
peerDependencies:
|
|
123
|
-
'@babel/core': ^7.0.0
|
|
124
|
-
dependencies:
|
|
125
|
-
'@babel/core': 7.28.3
|
|
126
|
-
'@babel/helper-annotate-as-pure': 7.27.3
|
|
127
|
-
'@babel/helper-member-expression-to-functions': 7.27.1
|
|
128
|
-
'@babel/helper-optimise-call-expression': 7.27.1
|
|
129
|
-
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
|
|
130
|
-
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
|
131
|
-
'@babel/traverse': 7.28.3
|
|
132
|
-
semver: 6.3.1
|
|
133
|
-
transitivePeerDependencies:
|
|
134
|
-
- supports-color
|
|
135
|
-
dev: true
|
|
136
|
-
|
|
137
|
-
/@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.3):
|
|
138
|
-
resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
|
|
139
|
-
engines: {node: '>=6.9.0'}
|
|
140
|
-
peerDependencies:
|
|
141
|
-
'@babel/core': ^7.0.0
|
|
142
|
-
dependencies:
|
|
143
|
-
'@babel/core': 7.28.3
|
|
144
|
-
'@babel/helper-annotate-as-pure': 7.27.3
|
|
145
|
-
regexpu-core: 6.2.0
|
|
146
|
-
semver: 6.3.1
|
|
147
|
-
dev: true
|
|
148
|
-
|
|
149
|
-
/@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.3):
|
|
150
|
-
resolution: {integrity: sha512-uJnGFcPsWQK8fvjgGP5LZUZZsYGIoPeRjSF5PGwrelYgq7Q15/Ft9NGFp1zglwgIv//W0uG4BevRuSJRyylZPg==}
|
|
151
|
-
peerDependencies:
|
|
152
|
-
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
153
|
-
dependencies:
|
|
154
|
-
'@babel/core': 7.28.3
|
|
155
|
-
'@babel/helper-compilation-targets': 7.27.2
|
|
156
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
157
|
-
debug: 4.4.1
|
|
158
|
-
lodash.debounce: 4.0.8
|
|
159
|
-
resolve: 1.22.10
|
|
160
|
-
transitivePeerDependencies:
|
|
161
|
-
- supports-color
|
|
162
|
-
dev: true
|
|
163
|
-
|
|
164
|
-
/@babel/helper-globals@7.28.0:
|
|
165
|
-
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
|
|
166
|
-
engines: {node: '>=6.9.0'}
|
|
167
|
-
|
|
168
|
-
/@babel/helper-member-expression-to-functions@7.27.1:
|
|
169
|
-
resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
|
|
170
|
-
engines: {node: '>=6.9.0'}
|
|
171
|
-
dependencies:
|
|
172
|
-
'@babel/traverse': 7.28.3
|
|
173
|
-
'@babel/types': 7.28.2
|
|
174
|
-
transitivePeerDependencies:
|
|
175
|
-
- supports-color
|
|
176
|
-
dev: true
|
|
177
|
-
|
|
178
|
-
/@babel/helper-module-imports@7.27.1:
|
|
179
|
-
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
|
|
180
|
-
engines: {node: '>=6.9.0'}
|
|
181
|
-
dependencies:
|
|
182
|
-
'@babel/traverse': 7.28.3
|
|
183
|
-
'@babel/types': 7.28.2
|
|
184
|
-
transitivePeerDependencies:
|
|
185
|
-
- supports-color
|
|
186
|
-
|
|
187
|
-
/@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3):
|
|
188
|
-
resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
|
|
189
|
-
engines: {node: '>=6.9.0'}
|
|
190
|
-
peerDependencies:
|
|
191
|
-
'@babel/core': ^7.0.0
|
|
192
|
-
dependencies:
|
|
193
|
-
'@babel/core': 7.28.3
|
|
194
|
-
'@babel/helper-module-imports': 7.27.1
|
|
195
|
-
'@babel/helper-validator-identifier': 7.27.1
|
|
196
|
-
'@babel/traverse': 7.28.3
|
|
197
|
-
transitivePeerDependencies:
|
|
198
|
-
- supports-color
|
|
199
|
-
|
|
200
|
-
/@babel/helper-optimise-call-expression@7.27.1:
|
|
201
|
-
resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==}
|
|
202
|
-
engines: {node: '>=6.9.0'}
|
|
203
|
-
dependencies:
|
|
204
|
-
'@babel/types': 7.28.2
|
|
205
|
-
dev: true
|
|
206
|
-
|
|
207
|
-
/@babel/helper-plugin-utils@7.27.1:
|
|
208
|
-
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
|
|
209
|
-
engines: {node: '>=6.9.0'}
|
|
210
|
-
dev: true
|
|
211
|
-
|
|
212
|
-
/@babel/helper-remap-async-to-generator@7.27.1(@babel/core@7.28.3):
|
|
213
|
-
resolution: {integrity: sha512-7fiA521aVw8lSPeI4ZOD3vRFkoqkJcS+z4hFo82bFSH/2tNd6eJ5qCVMS5OzDmZh/kaHQeBaeyxK6wljcPtveA==}
|
|
214
|
-
engines: {node: '>=6.9.0'}
|
|
215
|
-
peerDependencies:
|
|
216
|
-
'@babel/core': ^7.0.0
|
|
217
|
-
dependencies:
|
|
218
|
-
'@babel/core': 7.28.3
|
|
219
|
-
'@babel/helper-annotate-as-pure': 7.27.3
|
|
220
|
-
'@babel/helper-wrap-function': 7.28.3
|
|
221
|
-
'@babel/traverse': 7.28.3
|
|
222
|
-
transitivePeerDependencies:
|
|
223
|
-
- supports-color
|
|
224
|
-
dev: true
|
|
225
|
-
|
|
226
|
-
/@babel/helper-replace-supers@7.27.1(@babel/core@7.28.3):
|
|
227
|
-
resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==}
|
|
228
|
-
engines: {node: '>=6.9.0'}
|
|
229
|
-
peerDependencies:
|
|
230
|
-
'@babel/core': ^7.0.0
|
|
231
|
-
dependencies:
|
|
232
|
-
'@babel/core': 7.28.3
|
|
233
|
-
'@babel/helper-member-expression-to-functions': 7.27.1
|
|
234
|
-
'@babel/helper-optimise-call-expression': 7.27.1
|
|
235
|
-
'@babel/traverse': 7.28.3
|
|
236
|
-
transitivePeerDependencies:
|
|
237
|
-
- supports-color
|
|
238
|
-
dev: true
|
|
239
|
-
|
|
240
|
-
/@babel/helper-skip-transparent-expression-wrappers@7.27.1:
|
|
241
|
-
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
|
|
242
|
-
engines: {node: '>=6.9.0'}
|
|
243
|
-
dependencies:
|
|
244
|
-
'@babel/traverse': 7.28.3
|
|
245
|
-
'@babel/types': 7.28.2
|
|
246
|
-
transitivePeerDependencies:
|
|
247
|
-
- supports-color
|
|
248
|
-
dev: true
|
|
249
|
-
|
|
250
|
-
/@babel/helper-string-parser@7.27.1:
|
|
251
|
-
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
|
|
252
|
-
engines: {node: '>=6.9.0'}
|
|
253
|
-
|
|
254
|
-
/@babel/helper-validator-identifier@7.27.1:
|
|
255
|
-
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
|
|
256
|
-
engines: {node: '>=6.9.0'}
|
|
257
|
-
|
|
258
|
-
/@babel/helper-validator-option@7.27.1:
|
|
259
|
-
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
|
|
260
|
-
engines: {node: '>=6.9.0'}
|
|
261
|
-
|
|
262
|
-
/@babel/helper-wrap-function@7.28.3:
|
|
263
|
-
resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
|
|
264
|
-
engines: {node: '>=6.9.0'}
|
|
265
|
-
dependencies:
|
|
266
|
-
'@babel/template': 7.27.2
|
|
267
|
-
'@babel/traverse': 7.28.3
|
|
268
|
-
'@babel/types': 7.28.2
|
|
269
|
-
transitivePeerDependencies:
|
|
270
|
-
- supports-color
|
|
271
|
-
dev: true
|
|
272
|
-
|
|
273
|
-
/@babel/helpers@7.28.3:
|
|
274
|
-
resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==}
|
|
275
|
-
engines: {node: '>=6.9.0'}
|
|
276
|
-
dependencies:
|
|
277
|
-
'@babel/template': 7.27.2
|
|
278
|
-
'@babel/types': 7.28.2
|
|
279
|
-
|
|
280
|
-
/@babel/parser@7.28.3:
|
|
281
|
-
resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
|
|
282
|
-
engines: {node: '>=6.0.0'}
|
|
283
|
-
hasBin: true
|
|
284
|
-
dependencies:
|
|
285
|
-
'@babel/types': 7.28.2
|
|
286
|
-
|
|
287
|
-
/@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.27.1(@babel/core@7.28.3):
|
|
288
|
-
resolution: {integrity: sha512-QPG3C9cCVRQLxAVwmefEmwdTanECuUBMQZ/ym5kiw3XKCGA7qkuQLcjWWHcrD/GKbn/WmJwaezfuuAOcyKlRPA==}
|
|
289
|
-
engines: {node: '>=6.9.0'}
|
|
290
|
-
peerDependencies:
|
|
291
|
-
'@babel/core': ^7.0.0
|
|
292
|
-
dependencies:
|
|
293
|
-
'@babel/core': 7.28.3
|
|
294
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
295
|
-
'@babel/traverse': 7.28.3
|
|
296
|
-
transitivePeerDependencies:
|
|
297
|
-
- supports-color
|
|
298
|
-
dev: true
|
|
299
|
-
|
|
300
|
-
/@babel/plugin-bugfix-safari-class-field-initializer-scope@7.27.1(@babel/core@7.28.3):
|
|
301
|
-
resolution: {integrity: sha512-qNeq3bCKnGgLkEXUuFry6dPlGfCdQNZbn7yUAPCInwAJHMU7THJfrBSozkcWq5sNM6RcF3S8XyQL2A52KNR9IA==}
|
|
302
|
-
engines: {node: '>=6.9.0'}
|
|
303
|
-
peerDependencies:
|
|
304
|
-
'@babel/core': ^7.0.0
|
|
305
|
-
dependencies:
|
|
306
|
-
'@babel/core': 7.28.3
|
|
307
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
308
|
-
dev: true
|
|
309
|
-
|
|
310
|
-
/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.27.1(@babel/core@7.28.3):
|
|
311
|
-
resolution: {integrity: sha512-g4L7OYun04N1WyqMNjldFwlfPCLVkgB54A/YCXICZYBsvJJE3kByKv9c9+R/nAfmIfjl2rKYLNyMHboYbZaWaA==}
|
|
312
|
-
engines: {node: '>=6.9.0'}
|
|
313
|
-
peerDependencies:
|
|
314
|
-
'@babel/core': ^7.0.0
|
|
315
|
-
dependencies:
|
|
316
|
-
'@babel/core': 7.28.3
|
|
317
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
318
|
-
dev: true
|
|
319
|
-
|
|
320
|
-
/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.27.1(@babel/core@7.28.3):
|
|
321
|
-
resolution: {integrity: sha512-oO02gcONcD5O1iTLi/6frMJBIwWEHceWGSGqrpCmEL8nogiS6J9PBlE48CaK20/Jx1LuRml9aDftLgdjXT8+Cw==}
|
|
322
|
-
engines: {node: '>=6.9.0'}
|
|
323
|
-
peerDependencies:
|
|
324
|
-
'@babel/core': ^7.13.0
|
|
325
|
-
dependencies:
|
|
326
|
-
'@babel/core': 7.28.3
|
|
327
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
328
|
-
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
|
329
|
-
'@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.3)
|
|
330
|
-
transitivePeerDependencies:
|
|
331
|
-
- supports-color
|
|
332
|
-
dev: true
|
|
333
|
-
|
|
334
|
-
/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.28.3(@babel/core@7.28.3):
|
|
335
|
-
resolution: {integrity: sha512-b6YTX108evsvE4YgWyQ921ZAFFQm3Bn+CA3+ZXlNVnPhx+UfsVURoPjfGAPCjBgrqo30yX/C2nZGX96DxvR9Iw==}
|
|
336
|
-
engines: {node: '>=6.9.0'}
|
|
337
|
-
peerDependencies:
|
|
338
|
-
'@babel/core': ^7.0.0
|
|
339
|
-
dependencies:
|
|
340
|
-
'@babel/core': 7.28.3
|
|
341
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
342
|
-
'@babel/traverse': 7.28.3
|
|
343
|
-
transitivePeerDependencies:
|
|
344
|
-
- supports-color
|
|
345
|
-
dev: true
|
|
346
|
-
|
|
347
|
-
/@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.3):
|
|
348
|
-
resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==}
|
|
349
|
-
engines: {node: '>=6.9.0'}
|
|
350
|
-
peerDependencies:
|
|
351
|
-
'@babel/core': ^7.0.0-0
|
|
352
|
-
dependencies:
|
|
353
|
-
'@babel/core': 7.28.3
|
|
354
|
-
dev: true
|
|
355
|
-
|
|
356
|
-
/@babel/plugin-syntax-import-assertions@7.27.1(@babel/core@7.28.3):
|
|
357
|
-
resolution: {integrity: sha512-UT/Jrhw57xg4ILHLFnzFpPDlMbcdEicaAtjPQpbj9wa8T4r5KVWCimHcL/460g8Ht0DMxDyjsLgiWSkVjnwPFg==}
|
|
358
|
-
engines: {node: '>=6.9.0'}
|
|
359
|
-
peerDependencies:
|
|
360
|
-
'@babel/core': ^7.0.0-0
|
|
361
|
-
dependencies:
|
|
362
|
-
'@babel/core': 7.28.3
|
|
363
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
364
|
-
dev: true
|
|
365
|
-
|
|
366
|
-
/@babel/plugin-syntax-import-attributes@7.27.1(@babel/core@7.28.3):
|
|
367
|
-
resolution: {integrity: sha512-oFT0FrKHgF53f4vOsZGi2Hh3I35PfSmVs4IBFLFj4dnafP+hIWDLg3VyKmUHfLoLHlyxY4C7DGtmHuJgn+IGww==}
|
|
368
|
-
engines: {node: '>=6.9.0'}
|
|
369
|
-
peerDependencies:
|
|
370
|
-
'@babel/core': ^7.0.0-0
|
|
371
|
-
dependencies:
|
|
372
|
-
'@babel/core': 7.28.3
|
|
373
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
374
|
-
dev: true
|
|
375
|
-
|
|
376
|
-
/@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.3):
|
|
377
|
-
resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
|
|
378
|
-
engines: {node: '>=6.9.0'}
|
|
379
|
-
peerDependencies:
|
|
380
|
-
'@babel/core': ^7.0.0-0
|
|
381
|
-
dependencies:
|
|
382
|
-
'@babel/core': 7.28.3
|
|
383
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
384
|
-
dev: true
|
|
385
|
-
|
|
386
|
-
/@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.3):
|
|
387
|
-
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
|
|
388
|
-
engines: {node: '>=6.9.0'}
|
|
389
|
-
peerDependencies:
|
|
390
|
-
'@babel/core': ^7.0.0-0
|
|
391
|
-
dependencies:
|
|
392
|
-
'@babel/core': 7.28.3
|
|
393
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
394
|
-
dev: true
|
|
395
|
-
|
|
396
|
-
/@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.3):
|
|
397
|
-
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
|
|
398
|
-
engines: {node: '>=6.9.0'}
|
|
399
|
-
peerDependencies:
|
|
400
|
-
'@babel/core': ^7.0.0
|
|
401
|
-
dependencies:
|
|
402
|
-
'@babel/core': 7.28.3
|
|
403
|
-
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
|
|
404
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
405
|
-
dev: true
|
|
406
|
-
|
|
407
|
-
/@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.3):
|
|
408
|
-
resolution: {integrity: sha512-8Z4TGic6xW70FKThA5HYEKKyBpOOsucTOD1DjU3fZxDg+K3zBJcXMFnt/4yQiZnf5+MiOMSXQ9PaEK/Ilh1DeA==}
|
|
409
|
-
engines: {node: '>=6.9.0'}
|
|
410
|
-
peerDependencies:
|
|
411
|
-
'@babel/core': ^7.0.0-0
|
|
412
|
-
dependencies:
|
|
413
|
-
'@babel/core': 7.28.3
|
|
414
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
415
|
-
dev: true
|
|
416
|
-
|
|
417
|
-
/@babel/plugin-transform-async-generator-functions@7.28.0(@babel/core@7.28.3):
|
|
418
|
-
resolution: {integrity: sha512-BEOdvX4+M765icNPZeidyADIvQ1m1gmunXufXxvRESy/jNNyfovIqUyE7MVgGBjWktCoJlzvFA1To2O4ymIO3Q==}
|
|
419
|
-
engines: {node: '>=6.9.0'}
|
|
420
|
-
peerDependencies:
|
|
421
|
-
'@babel/core': ^7.0.0-0
|
|
422
|
-
dependencies:
|
|
423
|
-
'@babel/core': 7.28.3
|
|
424
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
425
|
-
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.3)
|
|
426
|
-
'@babel/traverse': 7.28.3
|
|
427
|
-
transitivePeerDependencies:
|
|
428
|
-
- supports-color
|
|
429
|
-
dev: true
|
|
430
|
-
|
|
431
|
-
/@babel/plugin-transform-async-to-generator@7.27.1(@babel/core@7.28.3):
|
|
432
|
-
resolution: {integrity: sha512-NREkZsZVJS4xmTr8qzE5y8AfIPqsdQfRuUiLRTEzb7Qii8iFWCyDKaUV2c0rCuh4ljDZ98ALHP/PetiBV2nddA==}
|
|
433
|
-
engines: {node: '>=6.9.0'}
|
|
434
|
-
peerDependencies:
|
|
435
|
-
'@babel/core': ^7.0.0-0
|
|
436
|
-
dependencies:
|
|
437
|
-
'@babel/core': 7.28.3
|
|
438
|
-
'@babel/helper-module-imports': 7.27.1
|
|
439
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
440
|
-
'@babel/helper-remap-async-to-generator': 7.27.1(@babel/core@7.28.3)
|
|
441
|
-
transitivePeerDependencies:
|
|
442
|
-
- supports-color
|
|
443
|
-
dev: true
|
|
444
|
-
|
|
445
|
-
/@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.28.3):
|
|
446
|
-
resolution: {integrity: sha512-cnqkuOtZLapWYZUYM5rVIdv1nXYuFVIltZ6ZJ7nIj585QsjKM5dhL2Fu/lICXZ1OyIAFc7Qy+bvDAtTXqGrlhg==}
|
|
447
|
-
engines: {node: '>=6.9.0'}
|
|
448
|
-
peerDependencies:
|
|
449
|
-
'@babel/core': ^7.0.0-0
|
|
450
|
-
dependencies:
|
|
451
|
-
'@babel/core': 7.28.3
|
|
452
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
453
|
-
dev: true
|
|
454
|
-
|
|
455
|
-
/@babel/plugin-transform-block-scoping@7.28.0(@babel/core@7.28.3):
|
|
456
|
-
resolution: {integrity: sha512-gKKnwjpdx5sER/wl0WN0efUBFzF/56YZO0RJrSYP4CljXnP31ByY7fol89AzomdlLNzI36AvOTmYHsnZTCkq8Q==}
|
|
457
|
-
engines: {node: '>=6.9.0'}
|
|
458
|
-
peerDependencies:
|
|
459
|
-
'@babel/core': ^7.0.0-0
|
|
460
|
-
dependencies:
|
|
461
|
-
'@babel/core': 7.28.3
|
|
462
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
463
|
-
dev: true
|
|
464
|
-
|
|
465
|
-
/@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.3):
|
|
466
|
-
resolution: {integrity: sha512-D0VcalChDMtuRvJIu3U/fwWjf8ZMykz5iZsg77Nuj821vCKI3zCyRLwRdWbsuJ/uRwZhZ002QtCqIkwC/ZkvbA==}
|
|
467
|
-
engines: {node: '>=6.9.0'}
|
|
468
|
-
peerDependencies:
|
|
469
|
-
'@babel/core': ^7.0.0-0
|
|
470
|
-
dependencies:
|
|
471
|
-
'@babel/core': 7.28.3
|
|
472
|
-
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
|
|
473
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
474
|
-
transitivePeerDependencies:
|
|
475
|
-
- supports-color
|
|
476
|
-
dev: true
|
|
477
|
-
|
|
478
|
-
/@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.3):
|
|
479
|
-
resolution: {integrity: sha512-LtPXlBbRoc4Njl/oh1CeD/3jC+atytbnf/UqLoqTDcEYGUPj022+rvfkbDYieUrSj3CaV4yHDByPE+T2HwfsJg==}
|
|
480
|
-
engines: {node: '>=6.9.0'}
|
|
481
|
-
peerDependencies:
|
|
482
|
-
'@babel/core': ^7.12.0
|
|
483
|
-
dependencies:
|
|
484
|
-
'@babel/core': 7.28.3
|
|
485
|
-
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
|
|
486
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
487
|
-
transitivePeerDependencies:
|
|
488
|
-
- supports-color
|
|
489
|
-
dev: true
|
|
490
|
-
|
|
491
|
-
/@babel/plugin-transform-classes@7.28.3(@babel/core@7.28.3):
|
|
492
|
-
resolution: {integrity: sha512-DoEWC5SuxuARF2KdKmGUq3ghfPMO6ZzR12Dnp5gubwbeWJo4dbNWXJPVlwvh4Zlq6Z7YVvL8VFxeSOJgjsx4Sg==}
|
|
493
|
-
engines: {node: '>=6.9.0'}
|
|
494
|
-
peerDependencies:
|
|
495
|
-
'@babel/core': ^7.0.0-0
|
|
496
|
-
dependencies:
|
|
497
|
-
'@babel/core': 7.28.3
|
|
498
|
-
'@babel/helper-annotate-as-pure': 7.27.3
|
|
499
|
-
'@babel/helper-compilation-targets': 7.27.2
|
|
500
|
-
'@babel/helper-globals': 7.28.0
|
|
501
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
502
|
-
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
|
|
503
|
-
'@babel/traverse': 7.28.3
|
|
504
|
-
transitivePeerDependencies:
|
|
505
|
-
- supports-color
|
|
506
|
-
dev: true
|
|
507
|
-
|
|
508
|
-
/@babel/plugin-transform-computed-properties@7.27.1(@babel/core@7.28.3):
|
|
509
|
-
resolution: {integrity: sha512-lj9PGWvMTVksbWiDT2tW68zGS/cyo4AkZ/QTp0sQT0mjPopCmrSkzxeXkznjqBxzDI6TclZhOJbBmbBLjuOZUw==}
|
|
510
|
-
engines: {node: '>=6.9.0'}
|
|
511
|
-
peerDependencies:
|
|
512
|
-
'@babel/core': ^7.0.0-0
|
|
513
|
-
dependencies:
|
|
514
|
-
'@babel/core': 7.28.3
|
|
515
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
516
|
-
'@babel/template': 7.27.2
|
|
517
|
-
dev: true
|
|
518
|
-
|
|
519
|
-
/@babel/plugin-transform-destructuring@7.28.0(@babel/core@7.28.3):
|
|
520
|
-
resolution: {integrity: sha512-v1nrSMBiKcodhsyJ4Gf+Z0U/yawmJDBOTpEB3mcQY52r9RIyPneGyAS/yM6seP/8I+mWI3elOMtT5dB8GJVs+A==}
|
|
521
|
-
engines: {node: '>=6.9.0'}
|
|
522
|
-
peerDependencies:
|
|
523
|
-
'@babel/core': ^7.0.0-0
|
|
524
|
-
dependencies:
|
|
525
|
-
'@babel/core': 7.28.3
|
|
526
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
527
|
-
'@babel/traverse': 7.28.3
|
|
528
|
-
transitivePeerDependencies:
|
|
529
|
-
- supports-color
|
|
530
|
-
dev: true
|
|
531
|
-
|
|
532
|
-
/@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.3):
|
|
533
|
-
resolution: {integrity: sha512-gEbkDVGRvjj7+T1ivxrfgygpT7GUd4vmODtYpbs0gZATdkX8/iSnOtZSxiZnsgm1YjTgjI6VKBGSJJevkrclzw==}
|
|
534
|
-
engines: {node: '>=6.9.0'}
|
|
535
|
-
peerDependencies:
|
|
536
|
-
'@babel/core': ^7.0.0-0
|
|
537
|
-
dependencies:
|
|
538
|
-
'@babel/core': 7.28.3
|
|
539
|
-
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
|
|
540
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
541
|
-
dev: true
|
|
542
|
-
|
|
543
|
-
/@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.3):
|
|
544
|
-
resolution: {integrity: sha512-MTyJk98sHvSs+cvZ4nOauwTTG1JeonDjSGvGGUNHreGQns+Mpt6WX/dVzWBHgg+dYZhkC4X+zTDfkTU+Vy9y7Q==}
|
|
545
|
-
engines: {node: '>=6.9.0'}
|
|
546
|
-
peerDependencies:
|
|
547
|
-
'@babel/core': ^7.0.0-0
|
|
548
|
-
dependencies:
|
|
549
|
-
'@babel/core': 7.28.3
|
|
550
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
551
|
-
dev: true
|
|
552
|
-
|
|
553
|
-
/@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.3):
|
|
554
|
-
resolution: {integrity: sha512-hkGcueTEzuhB30B3eJCbCYeCaaEQOmQR0AdvzpD4LoN0GXMWzzGSuRrxR2xTnCrvNbVwK9N6/jQ92GSLfiZWoQ==}
|
|
555
|
-
engines: {node: '>=6.9.0'}
|
|
556
|
-
peerDependencies:
|
|
557
|
-
'@babel/core': ^7.0.0
|
|
558
|
-
dependencies:
|
|
559
|
-
'@babel/core': 7.28.3
|
|
560
|
-
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
|
|
561
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
562
|
-
dev: true
|
|
563
|
-
|
|
564
|
-
/@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.3):
|
|
565
|
-
resolution: {integrity: sha512-MHzkWQcEmjzzVW9j2q8LGjwGWpG2mjwaaB0BNQwst3FIjqsg8Ct/mIZlvSPJvfi9y2AC8mi/ktxbFVL9pZ1I4A==}
|
|
566
|
-
engines: {node: '>=6.9.0'}
|
|
567
|
-
peerDependencies:
|
|
568
|
-
'@babel/core': ^7.0.0-0
|
|
569
|
-
dependencies:
|
|
570
|
-
'@babel/core': 7.28.3
|
|
571
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
572
|
-
dev: true
|
|
573
|
-
|
|
574
|
-
/@babel/plugin-transform-explicit-resource-management@7.28.0(@babel/core@7.28.3):
|
|
575
|
-
resolution: {integrity: sha512-K8nhUcn3f6iB+P3gwCv/no7OdzOZQcKchW6N389V6PD8NUWKZHzndOd9sPDVbMoBsbmjMqlB4L9fm+fEFNVlwQ==}
|
|
576
|
-
engines: {node: '>=6.9.0'}
|
|
577
|
-
peerDependencies:
|
|
578
|
-
'@babel/core': ^7.0.0-0
|
|
579
|
-
dependencies:
|
|
580
|
-
'@babel/core': 7.28.3
|
|
581
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
582
|
-
'@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
|
|
583
|
-
transitivePeerDependencies:
|
|
584
|
-
- supports-color
|
|
585
|
-
dev: true
|
|
586
|
-
|
|
587
|
-
/@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.28.3):
|
|
588
|
-
resolution: {integrity: sha512-uspvXnhHvGKf2r4VVtBpeFnuDWsJLQ6MF6lGJLC89jBR1uoVeqM416AZtTuhTezOfgHicpJQmoD5YUakO/YmXQ==}
|
|
589
|
-
engines: {node: '>=6.9.0'}
|
|
590
|
-
peerDependencies:
|
|
591
|
-
'@babel/core': ^7.0.0-0
|
|
592
|
-
dependencies:
|
|
593
|
-
'@babel/core': 7.28.3
|
|
594
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
595
|
-
dev: true
|
|
596
|
-
|
|
597
|
-
/@babel/plugin-transform-export-namespace-from@7.27.1(@babel/core@7.28.3):
|
|
598
|
-
resolution: {integrity: sha512-tQvHWSZ3/jH2xuq/vZDy0jNn+ZdXJeM8gHvX4lnJmsc3+50yPlWdZXIc5ay+umX+2/tJIqHqiEqcJvxlmIvRvQ==}
|
|
599
|
-
engines: {node: '>=6.9.0'}
|
|
600
|
-
peerDependencies:
|
|
601
|
-
'@babel/core': ^7.0.0-0
|
|
602
|
-
dependencies:
|
|
603
|
-
'@babel/core': 7.28.3
|
|
604
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
605
|
-
dev: true
|
|
606
|
-
|
|
607
|
-
/@babel/plugin-transform-for-of@7.27.1(@babel/core@7.28.3):
|
|
608
|
-
resolution: {integrity: sha512-BfbWFFEJFQzLCQ5N8VocnCtA8J1CLkNTe2Ms2wocj75dd6VpiqS5Z5quTYcUoo4Yq+DN0rtikODccuv7RU81sw==}
|
|
609
|
-
engines: {node: '>=6.9.0'}
|
|
610
|
-
peerDependencies:
|
|
611
|
-
'@babel/core': ^7.0.0-0
|
|
612
|
-
dependencies:
|
|
613
|
-
'@babel/core': 7.28.3
|
|
614
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
615
|
-
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
|
616
|
-
transitivePeerDependencies:
|
|
617
|
-
- supports-color
|
|
618
|
-
dev: true
|
|
619
|
-
|
|
620
|
-
/@babel/plugin-transform-function-name@7.27.1(@babel/core@7.28.3):
|
|
621
|
-
resolution: {integrity: sha512-1bQeydJF9Nr1eBCMMbC+hdwmRlsv5XYOMu03YSWFwNs0HsAmtSxxF1fyuYPqemVldVyFmlCU7w8UE14LupUSZQ==}
|
|
622
|
-
engines: {node: '>=6.9.0'}
|
|
623
|
-
peerDependencies:
|
|
624
|
-
'@babel/core': ^7.0.0-0
|
|
625
|
-
dependencies:
|
|
626
|
-
'@babel/core': 7.28.3
|
|
627
|
-
'@babel/helper-compilation-targets': 7.27.2
|
|
628
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
629
|
-
'@babel/traverse': 7.28.3
|
|
630
|
-
transitivePeerDependencies:
|
|
631
|
-
- supports-color
|
|
632
|
-
dev: true
|
|
633
|
-
|
|
634
|
-
/@babel/plugin-transform-json-strings@7.27.1(@babel/core@7.28.3):
|
|
635
|
-
resolution: {integrity: sha512-6WVLVJiTjqcQauBhn1LkICsR2H+zm62I3h9faTDKt1qP4jn2o72tSvqMwtGFKGTpojce0gJs+76eZ2uCHRZh0Q==}
|
|
636
|
-
engines: {node: '>=6.9.0'}
|
|
637
|
-
peerDependencies:
|
|
638
|
-
'@babel/core': ^7.0.0-0
|
|
639
|
-
dependencies:
|
|
640
|
-
'@babel/core': 7.28.3
|
|
641
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
642
|
-
dev: true
|
|
643
|
-
|
|
644
|
-
/@babel/plugin-transform-literals@7.27.1(@babel/core@7.28.3):
|
|
645
|
-
resolution: {integrity: sha512-0HCFSepIpLTkLcsi86GG3mTUzxV5jpmbv97hTETW3yzrAij8aqlD36toB1D0daVFJM8NK6GvKO0gslVQmm+zZA==}
|
|
646
|
-
engines: {node: '>=6.9.0'}
|
|
647
|
-
peerDependencies:
|
|
648
|
-
'@babel/core': ^7.0.0-0
|
|
649
|
-
dependencies:
|
|
650
|
-
'@babel/core': 7.28.3
|
|
651
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
652
|
-
dev: true
|
|
653
|
-
|
|
654
|
-
/@babel/plugin-transform-logical-assignment-operators@7.27.1(@babel/core@7.28.3):
|
|
655
|
-
resolution: {integrity: sha512-SJvDs5dXxiae4FbSL1aBJlG4wvl594N6YEVVn9e3JGulwioy6z3oPjx/sQBO3Y4NwUu5HNix6KJ3wBZoewcdbw==}
|
|
656
|
-
engines: {node: '>=6.9.0'}
|
|
657
|
-
peerDependencies:
|
|
658
|
-
'@babel/core': ^7.0.0-0
|
|
659
|
-
dependencies:
|
|
660
|
-
'@babel/core': 7.28.3
|
|
661
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
662
|
-
dev: true
|
|
663
|
-
|
|
664
|
-
/@babel/plugin-transform-member-expression-literals@7.27.1(@babel/core@7.28.3):
|
|
665
|
-
resolution: {integrity: sha512-hqoBX4dcZ1I33jCSWcXrP+1Ku7kdqXf1oeah7ooKOIiAdKQ+uqftgCFNOSzA5AMS2XIHEYeGFg4cKRCdpxzVOQ==}
|
|
666
|
-
engines: {node: '>=6.9.0'}
|
|
667
|
-
peerDependencies:
|
|
668
|
-
'@babel/core': ^7.0.0-0
|
|
669
|
-
dependencies:
|
|
670
|
-
'@babel/core': 7.28.3
|
|
671
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
672
|
-
dev: true
|
|
673
|
-
|
|
674
|
-
/@babel/plugin-transform-modules-amd@7.27.1(@babel/core@7.28.3):
|
|
675
|
-
resolution: {integrity: sha512-iCsytMg/N9/oFq6n+gFTvUYDZQOMK5kEdeYxmxt91fcJGycfxVP9CnrxoliM0oumFERba2i8ZtwRUCMhvP1LnA==}
|
|
676
|
-
engines: {node: '>=6.9.0'}
|
|
677
|
-
peerDependencies:
|
|
678
|
-
'@babel/core': ^7.0.0-0
|
|
679
|
-
dependencies:
|
|
680
|
-
'@babel/core': 7.28.3
|
|
681
|
-
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
|
|
682
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
683
|
-
transitivePeerDependencies:
|
|
684
|
-
- supports-color
|
|
685
|
-
dev: true
|
|
686
|
-
|
|
687
|
-
/@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.28.3):
|
|
688
|
-
resolution: {integrity: sha512-OJguuwlTYlN0gBZFRPqwOGNWssZjfIUdS7HMYtN8c1KmwpwHFBwTeFZrg9XZa+DFTitWOW5iTAG7tyCUPsCCyw==}
|
|
689
|
-
engines: {node: '>=6.9.0'}
|
|
690
|
-
peerDependencies:
|
|
691
|
-
'@babel/core': ^7.0.0-0
|
|
692
|
-
dependencies:
|
|
693
|
-
'@babel/core': 7.28.3
|
|
694
|
-
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
|
|
695
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
696
|
-
transitivePeerDependencies:
|
|
697
|
-
- supports-color
|
|
698
|
-
dev: true
|
|
699
|
-
|
|
700
|
-
/@babel/plugin-transform-modules-systemjs@7.27.1(@babel/core@7.28.3):
|
|
701
|
-
resolution: {integrity: sha512-w5N1XzsRbc0PQStASMksmUeqECuzKuTJer7kFagK8AXgpCMkeDMO5S+aaFb7A51ZYDF7XI34qsTX+fkHiIm5yA==}
|
|
702
|
-
engines: {node: '>=6.9.0'}
|
|
703
|
-
peerDependencies:
|
|
704
|
-
'@babel/core': ^7.0.0-0
|
|
705
|
-
dependencies:
|
|
706
|
-
'@babel/core': 7.28.3
|
|
707
|
-
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
|
|
708
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
709
|
-
'@babel/helper-validator-identifier': 7.27.1
|
|
710
|
-
'@babel/traverse': 7.28.3
|
|
711
|
-
transitivePeerDependencies:
|
|
712
|
-
- supports-color
|
|
713
|
-
dev: true
|
|
714
|
-
|
|
715
|
-
/@babel/plugin-transform-modules-umd@7.27.1(@babel/core@7.28.3):
|
|
716
|
-
resolution: {integrity: sha512-iQBE/xC5BV1OxJbp6WG7jq9IWiD+xxlZhLrdwpPkTX3ydmXdvoCpyfJN7acaIBZaOqTfr76pgzqBJflNbeRK+w==}
|
|
717
|
-
engines: {node: '>=6.9.0'}
|
|
718
|
-
peerDependencies:
|
|
719
|
-
'@babel/core': ^7.0.0-0
|
|
720
|
-
dependencies:
|
|
721
|
-
'@babel/core': 7.28.3
|
|
722
|
-
'@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
|
|
723
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
724
|
-
transitivePeerDependencies:
|
|
725
|
-
- supports-color
|
|
726
|
-
dev: true
|
|
727
|
-
|
|
728
|
-
/@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.3):
|
|
729
|
-
resolution: {integrity: sha512-SstR5JYy8ddZvD6MhV0tM/j16Qds4mIpJTOd1Yu9J9pJjH93bxHECF7pgtc28XvkzTD6Pxcm/0Z73Hvk7kb3Ng==}
|
|
730
|
-
engines: {node: '>=6.9.0'}
|
|
731
|
-
peerDependencies:
|
|
732
|
-
'@babel/core': ^7.0.0
|
|
733
|
-
dependencies:
|
|
734
|
-
'@babel/core': 7.28.3
|
|
735
|
-
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
|
|
736
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
737
|
-
dev: true
|
|
738
|
-
|
|
739
|
-
/@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.3):
|
|
740
|
-
resolution: {integrity: sha512-f6PiYeqXQ05lYq3TIfIDu/MtliKUbNwkGApPUvyo6+tc7uaR4cPjPe7DFPr15Uyycg2lZU6btZ575CuQoYh7MQ==}
|
|
741
|
-
engines: {node: '>=6.9.0'}
|
|
742
|
-
peerDependencies:
|
|
743
|
-
'@babel/core': ^7.0.0-0
|
|
744
|
-
dependencies:
|
|
745
|
-
'@babel/core': 7.28.3
|
|
746
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
747
|
-
dev: true
|
|
748
|
-
|
|
749
|
-
/@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.28.3):
|
|
750
|
-
resolution: {integrity: sha512-aGZh6xMo6q9vq1JGcw58lZ1Z0+i0xB2x0XaauNIUXd6O1xXc3RwoWEBlsTQrY4KQ9Jf0s5rgD6SiNkaUdJegTA==}
|
|
751
|
-
engines: {node: '>=6.9.0'}
|
|
752
|
-
peerDependencies:
|
|
753
|
-
'@babel/core': ^7.0.0-0
|
|
754
|
-
dependencies:
|
|
755
|
-
'@babel/core': 7.28.3
|
|
756
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
757
|
-
dev: true
|
|
758
|
-
|
|
759
|
-
/@babel/plugin-transform-numeric-separator@7.27.1(@babel/core@7.28.3):
|
|
760
|
-
resolution: {integrity: sha512-fdPKAcujuvEChxDBJ5c+0BTaS6revLV7CJL08e4m3de8qJfNIuCc2nc7XJYOjBoTMJeqSmwXJ0ypE14RCjLwaw==}
|
|
761
|
-
engines: {node: '>=6.9.0'}
|
|
762
|
-
peerDependencies:
|
|
763
|
-
'@babel/core': ^7.0.0-0
|
|
764
|
-
dependencies:
|
|
765
|
-
'@babel/core': 7.28.3
|
|
766
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
767
|
-
dev: true
|
|
768
|
-
|
|
769
|
-
/@babel/plugin-transform-object-rest-spread@7.28.0(@babel/core@7.28.3):
|
|
770
|
-
resolution: {integrity: sha512-9VNGikXxzu5eCiQjdE4IZn8sb9q7Xsk5EXLDBKUYg1e/Tve8/05+KJEtcxGxAgCY5t/BpKQM+JEL/yT4tvgiUA==}
|
|
771
|
-
engines: {node: '>=6.9.0'}
|
|
772
|
-
peerDependencies:
|
|
773
|
-
'@babel/core': ^7.0.0-0
|
|
774
|
-
dependencies:
|
|
775
|
-
'@babel/core': 7.28.3
|
|
776
|
-
'@babel/helper-compilation-targets': 7.27.2
|
|
777
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
778
|
-
'@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
|
|
779
|
-
'@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.3)
|
|
780
|
-
'@babel/traverse': 7.28.3
|
|
781
|
-
transitivePeerDependencies:
|
|
782
|
-
- supports-color
|
|
783
|
-
dev: true
|
|
784
|
-
|
|
785
|
-
/@babel/plugin-transform-object-super@7.27.1(@babel/core@7.28.3):
|
|
786
|
-
resolution: {integrity: sha512-SFy8S9plRPbIcxlJ8A6mT/CxFdJx/c04JEctz4jf8YZaVS2px34j7NXRrlGlHkN/M2gnpL37ZpGRGVFLd3l8Ng==}
|
|
787
|
-
engines: {node: '>=6.9.0'}
|
|
788
|
-
peerDependencies:
|
|
789
|
-
'@babel/core': ^7.0.0-0
|
|
790
|
-
dependencies:
|
|
791
|
-
'@babel/core': 7.28.3
|
|
792
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
793
|
-
'@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.3)
|
|
794
|
-
transitivePeerDependencies:
|
|
795
|
-
- supports-color
|
|
796
|
-
dev: true
|
|
797
|
-
|
|
798
|
-
/@babel/plugin-transform-optional-catch-binding@7.27.1(@babel/core@7.28.3):
|
|
799
|
-
resolution: {integrity: sha512-txEAEKzYrHEX4xSZN4kJ+OfKXFVSWKB2ZxM9dpcE3wT7smwkNmXo5ORRlVzMVdJbD+Q8ILTgSD7959uj+3Dm3Q==}
|
|
800
|
-
engines: {node: '>=6.9.0'}
|
|
801
|
-
peerDependencies:
|
|
802
|
-
'@babel/core': ^7.0.0-0
|
|
803
|
-
dependencies:
|
|
804
|
-
'@babel/core': 7.28.3
|
|
805
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
806
|
-
dev: true
|
|
807
|
-
|
|
808
|
-
/@babel/plugin-transform-optional-chaining@7.27.1(@babel/core@7.28.3):
|
|
809
|
-
resolution: {integrity: sha512-BQmKPPIuc8EkZgNKsv0X4bPmOoayeu4F1YCwx2/CfmDSXDbp7GnzlUH+/ul5VGfRg1AoFPsrIThlEBj2xb4CAg==}
|
|
810
|
-
engines: {node: '>=6.9.0'}
|
|
811
|
-
peerDependencies:
|
|
812
|
-
'@babel/core': ^7.0.0-0
|
|
813
|
-
dependencies:
|
|
814
|
-
'@babel/core': 7.28.3
|
|
815
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
816
|
-
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
|
817
|
-
transitivePeerDependencies:
|
|
818
|
-
- supports-color
|
|
819
|
-
dev: true
|
|
820
|
-
|
|
821
|
-
/@babel/plugin-transform-parameters@7.27.7(@babel/core@7.28.3):
|
|
822
|
-
resolution: {integrity: sha512-qBkYTYCb76RRxUM6CcZA5KRu8K4SM8ajzVeUgVdMVO9NN9uI/GaVmBg/WKJJGnNokV9SY8FxNOVWGXzqzUidBg==}
|
|
823
|
-
engines: {node: '>=6.9.0'}
|
|
824
|
-
peerDependencies:
|
|
825
|
-
'@babel/core': ^7.0.0-0
|
|
826
|
-
dependencies:
|
|
827
|
-
'@babel/core': 7.28.3
|
|
828
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
829
|
-
dev: true
|
|
830
|
-
|
|
831
|
-
/@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.3):
|
|
832
|
-
resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==}
|
|
833
|
-
engines: {node: '>=6.9.0'}
|
|
834
|
-
peerDependencies:
|
|
835
|
-
'@babel/core': ^7.0.0-0
|
|
836
|
-
dependencies:
|
|
837
|
-
'@babel/core': 7.28.3
|
|
838
|
-
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
|
|
839
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
840
|
-
transitivePeerDependencies:
|
|
841
|
-
- supports-color
|
|
842
|
-
dev: true
|
|
843
|
-
|
|
844
|
-
/@babel/plugin-transform-private-property-in-object@7.27.1(@babel/core@7.28.3):
|
|
845
|
-
resolution: {integrity: sha512-5J+IhqTi1XPa0DXF83jYOaARrX+41gOewWbkPyjMNRDqgOCqdffGh8L3f/Ek5utaEBZExjSAzcyjmV9SSAWObQ==}
|
|
846
|
-
engines: {node: '>=6.9.0'}
|
|
847
|
-
peerDependencies:
|
|
848
|
-
'@babel/core': ^7.0.0-0
|
|
849
|
-
dependencies:
|
|
850
|
-
'@babel/core': 7.28.3
|
|
851
|
-
'@babel/helper-annotate-as-pure': 7.27.3
|
|
852
|
-
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
|
|
853
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
854
|
-
transitivePeerDependencies:
|
|
855
|
-
- supports-color
|
|
856
|
-
dev: true
|
|
857
|
-
|
|
858
|
-
/@babel/plugin-transform-property-literals@7.27.1(@babel/core@7.28.3):
|
|
859
|
-
resolution: {integrity: sha512-oThy3BCuCha8kDZ8ZkgOg2exvPYUlprMukKQXI1r1pJ47NCvxfkEy8vK+r/hT9nF0Aa4H1WUPZZjHTFtAhGfmQ==}
|
|
860
|
-
engines: {node: '>=6.9.0'}
|
|
861
|
-
peerDependencies:
|
|
862
|
-
'@babel/core': ^7.0.0-0
|
|
863
|
-
dependencies:
|
|
864
|
-
'@babel/core': 7.28.3
|
|
865
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
866
|
-
dev: true
|
|
867
|
-
|
|
868
|
-
/@babel/plugin-transform-react-constant-elements@7.27.1(@babel/core@7.28.3):
|
|
869
|
-
resolution: {integrity: sha512-edoidOjl/ZxvYo4lSBOQGDSyToYVkTAwyVoa2tkuYTSmjrB1+uAedoL5iROVLXkxH+vRgA7uP4tMg2pUJpZ3Ug==}
|
|
870
|
-
engines: {node: '>=6.9.0'}
|
|
871
|
-
peerDependencies:
|
|
872
|
-
'@babel/core': ^7.0.0-0
|
|
873
|
-
dependencies:
|
|
874
|
-
'@babel/core': 7.28.3
|
|
875
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
876
|
-
dev: true
|
|
877
|
-
|
|
878
|
-
/@babel/plugin-transform-react-display-name@7.28.0(@babel/core@7.28.3):
|
|
879
|
-
resolution: {integrity: sha512-D6Eujc2zMxKjfa4Zxl4GHMsmhKKZ9VpcqIchJLvwTxad9zWIYulwYItBovpDOoNLISpcZSXoDJ5gaGbQUDqViA==}
|
|
880
|
-
engines: {node: '>=6.9.0'}
|
|
881
|
-
peerDependencies:
|
|
882
|
-
'@babel/core': ^7.0.0-0
|
|
883
|
-
dependencies:
|
|
884
|
-
'@babel/core': 7.28.3
|
|
885
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
886
|
-
dev: true
|
|
887
|
-
|
|
888
|
-
/@babel/plugin-transform-react-jsx-development@7.27.1(@babel/core@7.28.3):
|
|
889
|
-
resolution: {integrity: sha512-ykDdF5yI4f1WrAolLqeF3hmYU12j9ntLQl/AOG1HAS21jxyg1Q0/J/tpREuYLfatGdGmXp/3yS0ZA76kOlVq9Q==}
|
|
890
|
-
engines: {node: '>=6.9.0'}
|
|
891
|
-
peerDependencies:
|
|
892
|
-
'@babel/core': ^7.0.0-0
|
|
893
|
-
dependencies:
|
|
894
|
-
'@babel/core': 7.28.3
|
|
895
|
-
'@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.3)
|
|
896
|
-
transitivePeerDependencies:
|
|
897
|
-
- supports-color
|
|
898
|
-
dev: true
|
|
899
|
-
|
|
900
|
-
/@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.3):
|
|
901
|
-
resolution: {integrity: sha512-2KH4LWGSrJIkVf5tSiBFYuXDAoWRq2MMwgivCf+93dd0GQi8RXLjKA/0EvRnVV5G0hrHczsquXuD01L8s6dmBw==}
|
|
902
|
-
engines: {node: '>=6.9.0'}
|
|
903
|
-
peerDependencies:
|
|
904
|
-
'@babel/core': ^7.0.0-0
|
|
905
|
-
dependencies:
|
|
906
|
-
'@babel/core': 7.28.3
|
|
907
|
-
'@babel/helper-annotate-as-pure': 7.27.3
|
|
908
|
-
'@babel/helper-module-imports': 7.27.1
|
|
909
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
910
|
-
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
|
|
911
|
-
'@babel/types': 7.28.2
|
|
912
|
-
transitivePeerDependencies:
|
|
913
|
-
- supports-color
|
|
914
|
-
dev: true
|
|
915
|
-
|
|
916
|
-
/@babel/plugin-transform-react-pure-annotations@7.27.1(@babel/core@7.28.3):
|
|
917
|
-
resolution: {integrity: sha512-JfuinvDOsD9FVMTHpzA/pBLisxpv1aSf+OIV8lgH3MuWrks19R27e6a6DipIg4aX1Zm9Wpb04p8wljfKrVSnPA==}
|
|
918
|
-
engines: {node: '>=6.9.0'}
|
|
919
|
-
peerDependencies:
|
|
920
|
-
'@babel/core': ^7.0.0-0
|
|
921
|
-
dependencies:
|
|
922
|
-
'@babel/core': 7.28.3
|
|
923
|
-
'@babel/helper-annotate-as-pure': 7.27.3
|
|
924
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
925
|
-
dev: true
|
|
926
|
-
|
|
927
|
-
/@babel/plugin-transform-regenerator@7.28.3(@babel/core@7.28.3):
|
|
928
|
-
resolution: {integrity: sha512-K3/M/a4+ESb5LEldjQb+XSrpY0nF+ZBFlTCbSnKaYAMfD8v33O6PMs4uYnOk19HlcsI8WMu3McdFPTiQHF/1/A==}
|
|
929
|
-
engines: {node: '>=6.9.0'}
|
|
930
|
-
peerDependencies:
|
|
931
|
-
'@babel/core': ^7.0.0-0
|
|
932
|
-
dependencies:
|
|
933
|
-
'@babel/core': 7.28.3
|
|
934
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
935
|
-
dev: true
|
|
936
|
-
|
|
937
|
-
/@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.3):
|
|
938
|
-
resolution: {integrity: sha512-TtEciroaiODtXvLZv4rmfMhkCv8jx3wgKpL68PuiPh2M4fvz5jhsA7697N1gMvkvr/JTF13DrFYyEbY9U7cVPA==}
|
|
939
|
-
engines: {node: '>=6.9.0'}
|
|
940
|
-
peerDependencies:
|
|
941
|
-
'@babel/core': ^7.0.0
|
|
942
|
-
dependencies:
|
|
943
|
-
'@babel/core': 7.28.3
|
|
944
|
-
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
|
|
945
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
946
|
-
dev: true
|
|
947
|
-
|
|
948
|
-
/@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.3):
|
|
949
|
-
resolution: {integrity: sha512-V2ABPHIJX4kC7HegLkYoDpfg9PVmuWy/i6vUM5eGK22bx4YVFD3M5F0QQnWQoDs6AGsUWTVOopBiMFQgHaSkVw==}
|
|
950
|
-
engines: {node: '>=6.9.0'}
|
|
951
|
-
peerDependencies:
|
|
952
|
-
'@babel/core': ^7.0.0-0
|
|
953
|
-
dependencies:
|
|
954
|
-
'@babel/core': 7.28.3
|
|
955
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
956
|
-
dev: true
|
|
957
|
-
|
|
958
|
-
/@babel/plugin-transform-shorthand-properties@7.27.1(@babel/core@7.28.3):
|
|
959
|
-
resolution: {integrity: sha512-N/wH1vcn4oYawbJ13Y/FxcQrWk63jhfNa7jef0ih7PHSIHX2LB7GWE1rkPrOnka9kwMxb6hMl19p7lidA+EHmQ==}
|
|
960
|
-
engines: {node: '>=6.9.0'}
|
|
961
|
-
peerDependencies:
|
|
962
|
-
'@babel/core': ^7.0.0-0
|
|
963
|
-
dependencies:
|
|
964
|
-
'@babel/core': 7.28.3
|
|
965
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
966
|
-
dev: true
|
|
967
|
-
|
|
968
|
-
/@babel/plugin-transform-spread@7.27.1(@babel/core@7.28.3):
|
|
969
|
-
resolution: {integrity: sha512-kpb3HUqaILBJcRFVhFUs6Trdd4mkrzcGXss+6/mxUd273PfbWqSDHRzMT2234gIg2QYfAjvXLSquP1xECSg09Q==}
|
|
970
|
-
engines: {node: '>=6.9.0'}
|
|
971
|
-
peerDependencies:
|
|
972
|
-
'@babel/core': ^7.0.0-0
|
|
973
|
-
dependencies:
|
|
974
|
-
'@babel/core': 7.28.3
|
|
975
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
976
|
-
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
|
977
|
-
transitivePeerDependencies:
|
|
978
|
-
- supports-color
|
|
979
|
-
dev: true
|
|
980
|
-
|
|
981
|
-
/@babel/plugin-transform-sticky-regex@7.27.1(@babel/core@7.28.3):
|
|
982
|
-
resolution: {integrity: sha512-lhInBO5bi/Kowe2/aLdBAawijx+q1pQzicSgnkB6dUPc1+RC8QmJHKf2OjvU+NZWitguJHEaEmbV6VWEouT58g==}
|
|
983
|
-
engines: {node: '>=6.9.0'}
|
|
984
|
-
peerDependencies:
|
|
985
|
-
'@babel/core': ^7.0.0-0
|
|
986
|
-
dependencies:
|
|
987
|
-
'@babel/core': 7.28.3
|
|
988
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
989
|
-
dev: true
|
|
990
|
-
|
|
991
|
-
/@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.28.3):
|
|
992
|
-
resolution: {integrity: sha512-fBJKiV7F2DxZUkg5EtHKXQdbsbURW3DZKQUWphDum0uRP6eHGGa/He9mc0mypL680pb+e/lDIthRohlv8NCHkg==}
|
|
993
|
-
engines: {node: '>=6.9.0'}
|
|
994
|
-
peerDependencies:
|
|
995
|
-
'@babel/core': ^7.0.0-0
|
|
996
|
-
dependencies:
|
|
997
|
-
'@babel/core': 7.28.3
|
|
998
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
999
|
-
dev: true
|
|
1000
|
-
|
|
1001
|
-
/@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.28.3):
|
|
1002
|
-
resolution: {integrity: sha512-RiSILC+nRJM7FY5srIyc4/fGIwUhyDuuBSdWn4y6yT6gm652DpCHZjIipgn6B7MQ1ITOUnAKWixEUjQRIBIcLw==}
|
|
1003
|
-
engines: {node: '>=6.9.0'}
|
|
1004
|
-
peerDependencies:
|
|
1005
|
-
'@babel/core': ^7.0.0-0
|
|
1006
|
-
dependencies:
|
|
1007
|
-
'@babel/core': 7.28.3
|
|
1008
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1009
|
-
dev: true
|
|
1010
|
-
|
|
1011
|
-
/@babel/plugin-transform-typescript@7.28.0(@babel/core@7.28.3):
|
|
1012
|
-
resolution: {integrity: sha512-4AEiDEBPIZvLQaWlc9liCavE0xRM0dNca41WtBeM3jgFptfUOSG9z0uteLhq6+3rq+WB6jIvUwKDTpXEHPJ2Vg==}
|
|
1013
|
-
engines: {node: '>=6.9.0'}
|
|
1014
|
-
peerDependencies:
|
|
1015
|
-
'@babel/core': ^7.0.0-0
|
|
1016
|
-
dependencies:
|
|
1017
|
-
'@babel/core': 7.28.3
|
|
1018
|
-
'@babel/helper-annotate-as-pure': 7.27.3
|
|
1019
|
-
'@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.3)
|
|
1020
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1021
|
-
'@babel/helper-skip-transparent-expression-wrappers': 7.27.1
|
|
1022
|
-
'@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.3)
|
|
1023
|
-
transitivePeerDependencies:
|
|
1024
|
-
- supports-color
|
|
1025
|
-
dev: true
|
|
1026
|
-
|
|
1027
|
-
/@babel/plugin-transform-unicode-escapes@7.27.1(@babel/core@7.28.3):
|
|
1028
|
-
resolution: {integrity: sha512-Ysg4v6AmF26k9vpfFuTZg8HRfVWzsh1kVfowA23y9j/Gu6dOuahdUVhkLqpObp3JIv27MLSii6noRnuKN8H0Mg==}
|
|
1029
|
-
engines: {node: '>=6.9.0'}
|
|
1030
|
-
peerDependencies:
|
|
1031
|
-
'@babel/core': ^7.0.0-0
|
|
1032
|
-
dependencies:
|
|
1033
|
-
'@babel/core': 7.28.3
|
|
1034
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1035
|
-
dev: true
|
|
1036
|
-
|
|
1037
|
-
/@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.3):
|
|
1038
|
-
resolution: {integrity: sha512-uW20S39PnaTImxp39O5qFlHLS9LJEmANjMG7SxIhap8rCHqu0Ik+tLEPX5DKmHn6CsWQ7j3lix2tFOa5YtL12Q==}
|
|
1039
|
-
engines: {node: '>=6.9.0'}
|
|
1040
|
-
peerDependencies:
|
|
1041
|
-
'@babel/core': ^7.0.0-0
|
|
1042
|
-
dependencies:
|
|
1043
|
-
'@babel/core': 7.28.3
|
|
1044
|
-
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
|
|
1045
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1046
|
-
dev: true
|
|
1047
|
-
|
|
1048
|
-
/@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.3):
|
|
1049
|
-
resolution: {integrity: sha512-xvINq24TRojDuyt6JGtHmkVkrfVV3FPT16uytxImLeBZqW3/H52yN+kM1MGuyPkIQxrzKwPHs5U/MP3qKyzkGw==}
|
|
1050
|
-
engines: {node: '>=6.9.0'}
|
|
1051
|
-
peerDependencies:
|
|
1052
|
-
'@babel/core': ^7.0.0-0
|
|
1053
|
-
dependencies:
|
|
1054
|
-
'@babel/core': 7.28.3
|
|
1055
|
-
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
|
|
1056
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1057
|
-
dev: true
|
|
1058
|
-
|
|
1059
|
-
/@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.3):
|
|
1060
|
-
resolution: {integrity: sha512-EtkOujbc4cgvb0mlpQefi4NTPBzhSIevblFevACNLUspmrALgmEBdL/XfnyyITfd8fKBZrZys92zOWcik7j9Tw==}
|
|
1061
|
-
engines: {node: '>=6.9.0'}
|
|
1062
|
-
peerDependencies:
|
|
1063
|
-
'@babel/core': ^7.0.0
|
|
1064
|
-
dependencies:
|
|
1065
|
-
'@babel/core': 7.28.3
|
|
1066
|
-
'@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.3)
|
|
1067
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1068
|
-
dev: true
|
|
1069
|
-
|
|
1070
|
-
/@babel/preset-env@7.28.3(@babel/core@7.28.3):
|
|
1071
|
-
resolution: {integrity: sha512-ROiDcM+GbYVPYBOeCR6uBXKkQpBExLl8k9HO1ygXEyds39j+vCCsjmj7S8GOniZQlEs81QlkdJZe76IpLSiqpg==}
|
|
1072
|
-
engines: {node: '>=6.9.0'}
|
|
1073
|
-
peerDependencies:
|
|
1074
|
-
'@babel/core': ^7.0.0-0
|
|
1075
|
-
dependencies:
|
|
1076
|
-
'@babel/compat-data': 7.28.0
|
|
1077
|
-
'@babel/core': 7.28.3
|
|
1078
|
-
'@babel/helper-compilation-targets': 7.27.2
|
|
1079
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1080
|
-
'@babel/helper-validator-option': 7.27.1
|
|
1081
|
-
'@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.27.1(@babel/core@7.28.3)
|
|
1082
|
-
'@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.27.1(@babel/core@7.28.3)
|
|
1083
|
-
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.27.1(@babel/core@7.28.3)
|
|
1084
|
-
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.27.1(@babel/core@7.28.3)
|
|
1085
|
-
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.28.3(@babel/core@7.28.3)
|
|
1086
|
-
'@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.28.3)
|
|
1087
|
-
'@babel/plugin-syntax-import-assertions': 7.27.1(@babel/core@7.28.3)
|
|
1088
|
-
'@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.3)
|
|
1089
|
-
'@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.28.3)
|
|
1090
|
-
'@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.28.3)
|
|
1091
|
-
'@babel/plugin-transform-async-generator-functions': 7.28.0(@babel/core@7.28.3)
|
|
1092
|
-
'@babel/plugin-transform-async-to-generator': 7.27.1(@babel/core@7.28.3)
|
|
1093
|
-
'@babel/plugin-transform-block-scoped-functions': 7.27.1(@babel/core@7.28.3)
|
|
1094
|
-
'@babel/plugin-transform-block-scoping': 7.28.0(@babel/core@7.28.3)
|
|
1095
|
-
'@babel/plugin-transform-class-properties': 7.27.1(@babel/core@7.28.3)
|
|
1096
|
-
'@babel/plugin-transform-class-static-block': 7.28.3(@babel/core@7.28.3)
|
|
1097
|
-
'@babel/plugin-transform-classes': 7.28.3(@babel/core@7.28.3)
|
|
1098
|
-
'@babel/plugin-transform-computed-properties': 7.27.1(@babel/core@7.28.3)
|
|
1099
|
-
'@babel/plugin-transform-destructuring': 7.28.0(@babel/core@7.28.3)
|
|
1100
|
-
'@babel/plugin-transform-dotall-regex': 7.27.1(@babel/core@7.28.3)
|
|
1101
|
-
'@babel/plugin-transform-duplicate-keys': 7.27.1(@babel/core@7.28.3)
|
|
1102
|
-
'@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.3)
|
|
1103
|
-
'@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.28.3)
|
|
1104
|
-
'@babel/plugin-transform-explicit-resource-management': 7.28.0(@babel/core@7.28.3)
|
|
1105
|
-
'@babel/plugin-transform-exponentiation-operator': 7.27.1(@babel/core@7.28.3)
|
|
1106
|
-
'@babel/plugin-transform-export-namespace-from': 7.27.1(@babel/core@7.28.3)
|
|
1107
|
-
'@babel/plugin-transform-for-of': 7.27.1(@babel/core@7.28.3)
|
|
1108
|
-
'@babel/plugin-transform-function-name': 7.27.1(@babel/core@7.28.3)
|
|
1109
|
-
'@babel/plugin-transform-json-strings': 7.27.1(@babel/core@7.28.3)
|
|
1110
|
-
'@babel/plugin-transform-literals': 7.27.1(@babel/core@7.28.3)
|
|
1111
|
-
'@babel/plugin-transform-logical-assignment-operators': 7.27.1(@babel/core@7.28.3)
|
|
1112
|
-
'@babel/plugin-transform-member-expression-literals': 7.27.1(@babel/core@7.28.3)
|
|
1113
|
-
'@babel/plugin-transform-modules-amd': 7.27.1(@babel/core@7.28.3)
|
|
1114
|
-
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.3)
|
|
1115
|
-
'@babel/plugin-transform-modules-systemjs': 7.27.1(@babel/core@7.28.3)
|
|
1116
|
-
'@babel/plugin-transform-modules-umd': 7.27.1(@babel/core@7.28.3)
|
|
1117
|
-
'@babel/plugin-transform-named-capturing-groups-regex': 7.27.1(@babel/core@7.28.3)
|
|
1118
|
-
'@babel/plugin-transform-new-target': 7.27.1(@babel/core@7.28.3)
|
|
1119
|
-
'@babel/plugin-transform-nullish-coalescing-operator': 7.27.1(@babel/core@7.28.3)
|
|
1120
|
-
'@babel/plugin-transform-numeric-separator': 7.27.1(@babel/core@7.28.3)
|
|
1121
|
-
'@babel/plugin-transform-object-rest-spread': 7.28.0(@babel/core@7.28.3)
|
|
1122
|
-
'@babel/plugin-transform-object-super': 7.27.1(@babel/core@7.28.3)
|
|
1123
|
-
'@babel/plugin-transform-optional-catch-binding': 7.27.1(@babel/core@7.28.3)
|
|
1124
|
-
'@babel/plugin-transform-optional-chaining': 7.27.1(@babel/core@7.28.3)
|
|
1125
|
-
'@babel/plugin-transform-parameters': 7.27.7(@babel/core@7.28.3)
|
|
1126
|
-
'@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.28.3)
|
|
1127
|
-
'@babel/plugin-transform-private-property-in-object': 7.27.1(@babel/core@7.28.3)
|
|
1128
|
-
'@babel/plugin-transform-property-literals': 7.27.1(@babel/core@7.28.3)
|
|
1129
|
-
'@babel/plugin-transform-regenerator': 7.28.3(@babel/core@7.28.3)
|
|
1130
|
-
'@babel/plugin-transform-regexp-modifiers': 7.27.1(@babel/core@7.28.3)
|
|
1131
|
-
'@babel/plugin-transform-reserved-words': 7.27.1(@babel/core@7.28.3)
|
|
1132
|
-
'@babel/plugin-transform-shorthand-properties': 7.27.1(@babel/core@7.28.3)
|
|
1133
|
-
'@babel/plugin-transform-spread': 7.27.1(@babel/core@7.28.3)
|
|
1134
|
-
'@babel/plugin-transform-sticky-regex': 7.27.1(@babel/core@7.28.3)
|
|
1135
|
-
'@babel/plugin-transform-template-literals': 7.27.1(@babel/core@7.28.3)
|
|
1136
|
-
'@babel/plugin-transform-typeof-symbol': 7.27.1(@babel/core@7.28.3)
|
|
1137
|
-
'@babel/plugin-transform-unicode-escapes': 7.27.1(@babel/core@7.28.3)
|
|
1138
|
-
'@babel/plugin-transform-unicode-property-regex': 7.27.1(@babel/core@7.28.3)
|
|
1139
|
-
'@babel/plugin-transform-unicode-regex': 7.27.1(@babel/core@7.28.3)
|
|
1140
|
-
'@babel/plugin-transform-unicode-sets-regex': 7.27.1(@babel/core@7.28.3)
|
|
1141
|
-
'@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.28.3)
|
|
1142
|
-
babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.3)
|
|
1143
|
-
babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.3)
|
|
1144
|
-
babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.3)
|
|
1145
|
-
core-js-compat: 3.45.0
|
|
1146
|
-
semver: 6.3.1
|
|
1147
|
-
transitivePeerDependencies:
|
|
1148
|
-
- supports-color
|
|
1149
|
-
dev: true
|
|
1150
|
-
|
|
1151
|
-
/@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.28.3):
|
|
1152
|
-
resolution: {integrity: sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==}
|
|
1153
|
-
peerDependencies:
|
|
1154
|
-
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
|
|
1155
|
-
dependencies:
|
|
1156
|
-
'@babel/core': 7.28.3
|
|
1157
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1158
|
-
'@babel/types': 7.28.2
|
|
1159
|
-
esutils: 2.0.3
|
|
1160
|
-
dev: true
|
|
1161
|
-
|
|
1162
|
-
/@babel/preset-react@7.27.1(@babel/core@7.28.3):
|
|
1163
|
-
resolution: {integrity: sha512-oJHWh2gLhU9dW9HHr42q0cI0/iHHXTLGe39qvpAZZzagHy0MzYLCnCVV0symeRvzmjHyVU7mw2K06E6u/JwbhA==}
|
|
1164
|
-
engines: {node: '>=6.9.0'}
|
|
1165
|
-
peerDependencies:
|
|
1166
|
-
'@babel/core': ^7.0.0-0
|
|
1167
|
-
dependencies:
|
|
1168
|
-
'@babel/core': 7.28.3
|
|
1169
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1170
|
-
'@babel/helper-validator-option': 7.27.1
|
|
1171
|
-
'@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.3)
|
|
1172
|
-
'@babel/plugin-transform-react-jsx': 7.27.1(@babel/core@7.28.3)
|
|
1173
|
-
'@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.28.3)
|
|
1174
|
-
'@babel/plugin-transform-react-pure-annotations': 7.27.1(@babel/core@7.28.3)
|
|
1175
|
-
transitivePeerDependencies:
|
|
1176
|
-
- supports-color
|
|
1177
|
-
dev: true
|
|
1178
|
-
|
|
1179
|
-
/@babel/preset-typescript@7.27.1(@babel/core@7.28.3):
|
|
1180
|
-
resolution: {integrity: sha512-l7WfQfX0WK4M0v2RudjuQK4u99BS6yLHYEmdtVPP7lKV013zr9DygFuWNlnbvQ9LR+LS0Egz/XAvGx5U9MX0fQ==}
|
|
1181
|
-
engines: {node: '>=6.9.0'}
|
|
1182
|
-
peerDependencies:
|
|
1183
|
-
'@babel/core': ^7.0.0-0
|
|
1184
|
-
dependencies:
|
|
1185
|
-
'@babel/core': 7.28.3
|
|
1186
|
-
'@babel/helper-plugin-utils': 7.27.1
|
|
1187
|
-
'@babel/helper-validator-option': 7.27.1
|
|
1188
|
-
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.3)
|
|
1189
|
-
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.3)
|
|
1190
|
-
'@babel/plugin-transform-typescript': 7.28.0(@babel/core@7.28.3)
|
|
1191
|
-
transitivePeerDependencies:
|
|
1192
|
-
- supports-color
|
|
1193
|
-
dev: true
|
|
1194
|
-
|
|
1195
|
-
/@babel/template@7.27.2:
|
|
1196
|
-
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
|
1197
|
-
engines: {node: '>=6.9.0'}
|
|
1198
|
-
dependencies:
|
|
1199
|
-
'@babel/code-frame': 7.27.1
|
|
1200
|
-
'@babel/parser': 7.28.3
|
|
1201
|
-
'@babel/types': 7.28.2
|
|
1202
|
-
|
|
1203
|
-
/@babel/traverse@7.28.3:
|
|
1204
|
-
resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==}
|
|
1205
|
-
engines: {node: '>=6.9.0'}
|
|
1206
|
-
dependencies:
|
|
1207
|
-
'@babel/code-frame': 7.27.1
|
|
1208
|
-
'@babel/generator': 7.28.3
|
|
1209
|
-
'@babel/helper-globals': 7.28.0
|
|
1210
|
-
'@babel/parser': 7.28.3
|
|
1211
|
-
'@babel/template': 7.27.2
|
|
1212
|
-
'@babel/types': 7.28.2
|
|
1213
|
-
debug: 4.4.1
|
|
1214
|
-
transitivePeerDependencies:
|
|
1215
|
-
- supports-color
|
|
1216
|
-
|
|
1217
|
-
/@babel/types@7.28.2:
|
|
1218
|
-
resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
|
|
1219
|
-
engines: {node: '>=6.9.0'}
|
|
1220
|
-
dependencies:
|
|
1221
|
-
'@babel/helper-string-parser': 7.27.1
|
|
1222
|
-
'@babel/helper-validator-identifier': 7.27.1
|
|
1223
|
-
|
|
1224
|
-
/@emnapi/runtime@1.7.1:
|
|
1225
|
-
resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
|
|
1226
|
-
requiresBuild: true
|
|
1227
|
-
dependencies:
|
|
1228
|
-
tslib: 2.8.1
|
|
1229
|
-
dev: false
|
|
1230
|
-
optional: true
|
|
1231
|
-
|
|
1232
|
-
/@img/colour@1.0.0:
|
|
1233
|
-
resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==}
|
|
1234
|
-
engines: {node: '>=18'}
|
|
1235
|
-
requiresBuild: true
|
|
1236
|
-
dev: false
|
|
1237
|
-
optional: true
|
|
1238
|
-
|
|
1239
|
-
/@img/sharp-darwin-arm64@0.34.5:
|
|
1240
|
-
resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
|
|
1241
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1242
|
-
cpu: [arm64]
|
|
1243
|
-
os: [darwin]
|
|
1244
|
-
requiresBuild: true
|
|
1245
|
-
optionalDependencies:
|
|
1246
|
-
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
1247
|
-
dev: false
|
|
1248
|
-
optional: true
|
|
1249
|
-
|
|
1250
|
-
/@img/sharp-darwin-x64@0.34.5:
|
|
1251
|
-
resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
|
|
1252
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1253
|
-
cpu: [x64]
|
|
1254
|
-
os: [darwin]
|
|
1255
|
-
requiresBuild: true
|
|
1256
|
-
optionalDependencies:
|
|
1257
|
-
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
1258
|
-
dev: false
|
|
1259
|
-
optional: true
|
|
1260
|
-
|
|
1261
|
-
/@img/sharp-libvips-darwin-arm64@1.2.4:
|
|
1262
|
-
resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
|
|
1263
|
-
cpu: [arm64]
|
|
1264
|
-
os: [darwin]
|
|
1265
|
-
requiresBuild: true
|
|
1266
|
-
dev: false
|
|
1267
|
-
optional: true
|
|
1268
|
-
|
|
1269
|
-
/@img/sharp-libvips-darwin-x64@1.2.4:
|
|
1270
|
-
resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
|
|
1271
|
-
cpu: [x64]
|
|
1272
|
-
os: [darwin]
|
|
1273
|
-
requiresBuild: true
|
|
1274
|
-
dev: false
|
|
1275
|
-
optional: true
|
|
1276
|
-
|
|
1277
|
-
/@img/sharp-libvips-linux-arm64@1.2.4:
|
|
1278
|
-
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
|
|
1279
|
-
cpu: [arm64]
|
|
1280
|
-
os: [linux]
|
|
1281
|
-
requiresBuild: true
|
|
1282
|
-
dev: false
|
|
1283
|
-
optional: true
|
|
1284
|
-
|
|
1285
|
-
/@img/sharp-libvips-linux-arm@1.2.4:
|
|
1286
|
-
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
|
|
1287
|
-
cpu: [arm]
|
|
1288
|
-
os: [linux]
|
|
1289
|
-
requiresBuild: true
|
|
1290
|
-
dev: false
|
|
1291
|
-
optional: true
|
|
1292
|
-
|
|
1293
|
-
/@img/sharp-libvips-linux-ppc64@1.2.4:
|
|
1294
|
-
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
|
|
1295
|
-
cpu: [ppc64]
|
|
1296
|
-
os: [linux]
|
|
1297
|
-
requiresBuild: true
|
|
1298
|
-
dev: false
|
|
1299
|
-
optional: true
|
|
1300
|
-
|
|
1301
|
-
/@img/sharp-libvips-linux-riscv64@1.2.4:
|
|
1302
|
-
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
|
|
1303
|
-
cpu: [riscv64]
|
|
1304
|
-
os: [linux]
|
|
1305
|
-
requiresBuild: true
|
|
1306
|
-
dev: false
|
|
1307
|
-
optional: true
|
|
1308
|
-
|
|
1309
|
-
/@img/sharp-libvips-linux-s390x@1.2.4:
|
|
1310
|
-
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
|
|
1311
|
-
cpu: [s390x]
|
|
1312
|
-
os: [linux]
|
|
1313
|
-
requiresBuild: true
|
|
1314
|
-
dev: false
|
|
1315
|
-
optional: true
|
|
1316
|
-
|
|
1317
|
-
/@img/sharp-libvips-linux-x64@1.2.4:
|
|
1318
|
-
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
|
|
1319
|
-
cpu: [x64]
|
|
1320
|
-
os: [linux]
|
|
1321
|
-
requiresBuild: true
|
|
1322
|
-
dev: false
|
|
1323
|
-
optional: true
|
|
1324
|
-
|
|
1325
|
-
/@img/sharp-libvips-linuxmusl-arm64@1.2.4:
|
|
1326
|
-
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
|
|
1327
|
-
cpu: [arm64]
|
|
1328
|
-
os: [linux]
|
|
1329
|
-
requiresBuild: true
|
|
1330
|
-
dev: false
|
|
1331
|
-
optional: true
|
|
1332
|
-
|
|
1333
|
-
/@img/sharp-libvips-linuxmusl-x64@1.2.4:
|
|
1334
|
-
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
|
|
1335
|
-
cpu: [x64]
|
|
1336
|
-
os: [linux]
|
|
1337
|
-
requiresBuild: true
|
|
1338
|
-
dev: false
|
|
1339
|
-
optional: true
|
|
1340
|
-
|
|
1341
|
-
/@img/sharp-linux-arm64@0.34.5:
|
|
1342
|
-
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
|
|
1343
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1344
|
-
cpu: [arm64]
|
|
1345
|
-
os: [linux]
|
|
1346
|
-
requiresBuild: true
|
|
1347
|
-
optionalDependencies:
|
|
1348
|
-
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
1349
|
-
dev: false
|
|
1350
|
-
optional: true
|
|
1351
|
-
|
|
1352
|
-
/@img/sharp-linux-arm@0.34.5:
|
|
1353
|
-
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
|
|
1354
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1355
|
-
cpu: [arm]
|
|
1356
|
-
os: [linux]
|
|
1357
|
-
requiresBuild: true
|
|
1358
|
-
optionalDependencies:
|
|
1359
|
-
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
1360
|
-
dev: false
|
|
1361
|
-
optional: true
|
|
1362
|
-
|
|
1363
|
-
/@img/sharp-linux-ppc64@0.34.5:
|
|
1364
|
-
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
|
|
1365
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1366
|
-
cpu: [ppc64]
|
|
1367
|
-
os: [linux]
|
|
1368
|
-
requiresBuild: true
|
|
1369
|
-
optionalDependencies:
|
|
1370
|
-
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
1371
|
-
dev: false
|
|
1372
|
-
optional: true
|
|
1373
|
-
|
|
1374
|
-
/@img/sharp-linux-riscv64@0.34.5:
|
|
1375
|
-
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
|
|
1376
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1377
|
-
cpu: [riscv64]
|
|
1378
|
-
os: [linux]
|
|
1379
|
-
requiresBuild: true
|
|
1380
|
-
optionalDependencies:
|
|
1381
|
-
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
1382
|
-
dev: false
|
|
1383
|
-
optional: true
|
|
1384
|
-
|
|
1385
|
-
/@img/sharp-linux-s390x@0.34.5:
|
|
1386
|
-
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
|
|
1387
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1388
|
-
cpu: [s390x]
|
|
1389
|
-
os: [linux]
|
|
1390
|
-
requiresBuild: true
|
|
1391
|
-
optionalDependencies:
|
|
1392
|
-
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
1393
|
-
dev: false
|
|
1394
|
-
optional: true
|
|
1395
|
-
|
|
1396
|
-
/@img/sharp-linux-x64@0.34.5:
|
|
1397
|
-
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
|
|
1398
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1399
|
-
cpu: [x64]
|
|
1400
|
-
os: [linux]
|
|
1401
|
-
requiresBuild: true
|
|
1402
|
-
optionalDependencies:
|
|
1403
|
-
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
1404
|
-
dev: false
|
|
1405
|
-
optional: true
|
|
1406
|
-
|
|
1407
|
-
/@img/sharp-linuxmusl-arm64@0.34.5:
|
|
1408
|
-
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
|
|
1409
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1410
|
-
cpu: [arm64]
|
|
1411
|
-
os: [linux]
|
|
1412
|
-
requiresBuild: true
|
|
1413
|
-
optionalDependencies:
|
|
1414
|
-
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
1415
|
-
dev: false
|
|
1416
|
-
optional: true
|
|
1417
|
-
|
|
1418
|
-
/@img/sharp-linuxmusl-x64@0.34.5:
|
|
1419
|
-
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
|
|
1420
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1421
|
-
cpu: [x64]
|
|
1422
|
-
os: [linux]
|
|
1423
|
-
requiresBuild: true
|
|
1424
|
-
optionalDependencies:
|
|
1425
|
-
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
1426
|
-
dev: false
|
|
1427
|
-
optional: true
|
|
1428
|
-
|
|
1429
|
-
/@img/sharp-wasm32@0.34.5:
|
|
1430
|
-
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
|
|
1431
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1432
|
-
cpu: [wasm32]
|
|
1433
|
-
requiresBuild: true
|
|
1434
|
-
dependencies:
|
|
1435
|
-
'@emnapi/runtime': 1.7.1
|
|
1436
|
-
dev: false
|
|
1437
|
-
optional: true
|
|
1438
|
-
|
|
1439
|
-
/@img/sharp-win32-arm64@0.34.5:
|
|
1440
|
-
resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
|
|
1441
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1442
|
-
cpu: [arm64]
|
|
1443
|
-
os: [win32]
|
|
1444
|
-
requiresBuild: true
|
|
1445
|
-
dev: false
|
|
1446
|
-
optional: true
|
|
1447
|
-
|
|
1448
|
-
/@img/sharp-win32-ia32@0.34.5:
|
|
1449
|
-
resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
|
|
1450
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1451
|
-
cpu: [ia32]
|
|
1452
|
-
os: [win32]
|
|
1453
|
-
requiresBuild: true
|
|
1454
|
-
dev: false
|
|
1455
|
-
optional: true
|
|
1456
|
-
|
|
1457
|
-
/@img/sharp-win32-x64@0.34.5:
|
|
1458
|
-
resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
|
|
1459
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
1460
|
-
cpu: [x64]
|
|
1461
|
-
os: [win32]
|
|
1462
|
-
requiresBuild: true
|
|
1463
|
-
dev: false
|
|
1464
|
-
optional: true
|
|
1465
|
-
|
|
1466
|
-
/@isaacs/fs-minipass@4.0.1:
|
|
1467
|
-
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
|
|
1468
|
-
engines: {node: '>=18.0.0'}
|
|
1469
|
-
dependencies:
|
|
1470
|
-
minipass: 7.1.2
|
|
1471
|
-
dev: false
|
|
1472
|
-
|
|
1473
|
-
/@jridgewell/gen-mapping@0.3.13:
|
|
1474
|
-
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
1475
|
-
dependencies:
|
|
1476
|
-
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1477
|
-
'@jridgewell/trace-mapping': 0.3.30
|
|
1478
|
-
|
|
1479
|
-
/@jridgewell/resolve-uri@3.1.2:
|
|
1480
|
-
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
1481
|
-
engines: {node: '>=6.0.0'}
|
|
1482
|
-
|
|
1483
|
-
/@jridgewell/sourcemap-codec@1.5.5:
|
|
1484
|
-
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
1485
|
-
|
|
1486
|
-
/@jridgewell/trace-mapping@0.3.30:
|
|
1487
|
-
resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
|
|
1488
|
-
dependencies:
|
|
1489
|
-
'@jridgewell/resolve-uri': 3.1.2
|
|
1490
|
-
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1491
|
-
|
|
1492
|
-
/@next/env@16.1.0:
|
|
1493
|
-
resolution: {integrity: sha512-Dd23XQeFHmhf3KBW76leYVkejHlCdB7erakC2At2apL1N08Bm+dLYNP+nNHh0tzUXfPQcNcXiQyacw0PG4Fcpw==}
|
|
1494
|
-
dev: false
|
|
1495
|
-
|
|
1496
|
-
/@next/swc-darwin-arm64@16.1.0:
|
|
1497
|
-
resolution: {integrity: sha512-onHq8dl8KjDb8taANQdzs3XmIqQWV3fYdslkGENuvVInFQzZnuBYYOG2HGHqqtvgmEU7xWzhgndXXxnhk4Z3fQ==}
|
|
1498
|
-
engines: {node: '>= 10'}
|
|
1499
|
-
cpu: [arm64]
|
|
1500
|
-
os: [darwin]
|
|
1501
|
-
requiresBuild: true
|
|
1502
|
-
dev: false
|
|
1503
|
-
optional: true
|
|
1504
|
-
|
|
1505
|
-
/@next/swc-darwin-x64@16.1.0:
|
|
1506
|
-
resolution: {integrity: sha512-Am6VJTp8KhLuAH13tPrAoVIXzuComlZlMwGr++o2KDjWiKPe3VwpxYhgV6I4gKls2EnsIMggL4y7GdXyDdJcFA==}
|
|
1507
|
-
engines: {node: '>= 10'}
|
|
1508
|
-
cpu: [x64]
|
|
1509
|
-
os: [darwin]
|
|
1510
|
-
requiresBuild: true
|
|
1511
|
-
dev: false
|
|
1512
|
-
optional: true
|
|
1513
|
-
|
|
1514
|
-
/@next/swc-linux-arm64-gnu@16.1.0:
|
|
1515
|
-
resolution: {integrity: sha512-fVicfaJT6QfghNyg8JErZ+EMNQ812IS0lmKfbmC01LF1nFBcKfcs4Q75Yy8IqnsCqH/hZwGhqzj3IGVfWV6vpA==}
|
|
1516
|
-
engines: {node: '>= 10'}
|
|
1517
|
-
cpu: [arm64]
|
|
1518
|
-
os: [linux]
|
|
1519
|
-
requiresBuild: true
|
|
1520
|
-
dev: false
|
|
1521
|
-
optional: true
|
|
1522
|
-
|
|
1523
|
-
/@next/swc-linux-arm64-musl@16.1.0:
|
|
1524
|
-
resolution: {integrity: sha512-TojQnDRoX7wJWXEEwdfuJtakMDW64Q7NrxQPviUnfYJvAx5/5wcGE+1vZzQ9F17m+SdpFeeXuOr6v3jbyusYMQ==}
|
|
1525
|
-
engines: {node: '>= 10'}
|
|
1526
|
-
cpu: [arm64]
|
|
1527
|
-
os: [linux]
|
|
1528
|
-
requiresBuild: true
|
|
1529
|
-
dev: false
|
|
1530
|
-
optional: true
|
|
1531
|
-
|
|
1532
|
-
/@next/swc-linux-x64-gnu@16.1.0:
|
|
1533
|
-
resolution: {integrity: sha512-quhNFVySW4QwXiZkZ34SbfzNBm27vLrxZ2HwTfFFO1BBP0OY1+pI0nbyewKeq1FriqU+LZrob/cm26lwsiAi8Q==}
|
|
1534
|
-
engines: {node: '>= 10'}
|
|
1535
|
-
cpu: [x64]
|
|
1536
|
-
os: [linux]
|
|
1537
|
-
requiresBuild: true
|
|
1538
|
-
dev: false
|
|
1539
|
-
optional: true
|
|
1540
|
-
|
|
1541
|
-
/@next/swc-linux-x64-musl@16.1.0:
|
|
1542
|
-
resolution: {integrity: sha512-6JW0z2FZUK5iOVhUIWqE4RblAhUj1EwhZ/MwteGb//SpFTOHydnhbp3868gxalwea+mbOLWO6xgxj9wA9wNvNw==}
|
|
1543
|
-
engines: {node: '>= 10'}
|
|
1544
|
-
cpu: [x64]
|
|
1545
|
-
os: [linux]
|
|
1546
|
-
requiresBuild: true
|
|
1547
|
-
dev: false
|
|
1548
|
-
optional: true
|
|
1549
|
-
|
|
1550
|
-
/@next/swc-win32-arm64-msvc@16.1.0:
|
|
1551
|
-
resolution: {integrity: sha512-+DK/akkAvvXn5RdYN84IOmLkSy87SCmpofJPdB8vbLmf01BzntPBSYXnMvnEEv/Vcf3HYJwt24QZ/s6sWAwOMQ==}
|
|
1552
|
-
engines: {node: '>= 10'}
|
|
1553
|
-
cpu: [arm64]
|
|
1554
|
-
os: [win32]
|
|
1555
|
-
requiresBuild: true
|
|
1556
|
-
dev: false
|
|
1557
|
-
optional: true
|
|
1558
|
-
|
|
1559
|
-
/@next/swc-win32-x64-msvc@16.1.0:
|
|
1560
|
-
resolution: {integrity: sha512-Tr0j94MphimCCks+1rtYPzQFK+faJuhHWCegU9S9gDlgyOk8Y3kPmO64UcjyzZAlligeBtYZ/2bEyrKq0d2wqQ==}
|
|
1561
|
-
engines: {node: '>= 10'}
|
|
1562
|
-
cpu: [x64]
|
|
1563
|
-
os: [win32]
|
|
1564
|
-
requiresBuild: true
|
|
1565
|
-
dev: false
|
|
1566
|
-
optional: true
|
|
1567
|
-
|
|
1568
|
-
/@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.28.3):
|
|
1569
|
-
resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
|
|
1570
|
-
engines: {node: '>=14'}
|
|
1571
|
-
peerDependencies:
|
|
1572
|
-
'@babel/core': ^7.0.0-0
|
|
1573
|
-
dependencies:
|
|
1574
|
-
'@babel/core': 7.28.3
|
|
1575
|
-
dev: true
|
|
1576
|
-
|
|
1577
|
-
/@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.28.3):
|
|
1578
|
-
resolution: {integrity: sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==}
|
|
1579
|
-
engines: {node: '>=14'}
|
|
1580
|
-
peerDependencies:
|
|
1581
|
-
'@babel/core': ^7.0.0-0
|
|
1582
|
-
dependencies:
|
|
1583
|
-
'@babel/core': 7.28.3
|
|
1584
|
-
dev: true
|
|
1585
|
-
|
|
1586
|
-
/@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.28.3):
|
|
1587
|
-
resolution: {integrity: sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==}
|
|
1588
|
-
engines: {node: '>=14'}
|
|
1589
|
-
peerDependencies:
|
|
1590
|
-
'@babel/core': ^7.0.0-0
|
|
1591
|
-
dependencies:
|
|
1592
|
-
'@babel/core': 7.28.3
|
|
1593
|
-
dev: true
|
|
1594
|
-
|
|
1595
|
-
/@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.28.3):
|
|
1596
|
-
resolution: {integrity: sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==}
|
|
1597
|
-
engines: {node: '>=14'}
|
|
1598
|
-
peerDependencies:
|
|
1599
|
-
'@babel/core': ^7.0.0-0
|
|
1600
|
-
dependencies:
|
|
1601
|
-
'@babel/core': 7.28.3
|
|
1602
|
-
dev: true
|
|
1603
|
-
|
|
1604
|
-
/@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.28.3):
|
|
1605
|
-
resolution: {integrity: sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==}
|
|
1606
|
-
engines: {node: '>=14'}
|
|
1607
|
-
peerDependencies:
|
|
1608
|
-
'@babel/core': ^7.0.0-0
|
|
1609
|
-
dependencies:
|
|
1610
|
-
'@babel/core': 7.28.3
|
|
1611
|
-
dev: true
|
|
1612
|
-
|
|
1613
|
-
/@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.28.3):
|
|
1614
|
-
resolution: {integrity: sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==}
|
|
1615
|
-
engines: {node: '>=14'}
|
|
1616
|
-
peerDependencies:
|
|
1617
|
-
'@babel/core': ^7.0.0-0
|
|
1618
|
-
dependencies:
|
|
1619
|
-
'@babel/core': 7.28.3
|
|
1620
|
-
dev: true
|
|
1621
|
-
|
|
1622
|
-
/@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.28.3):
|
|
1623
|
-
resolution: {integrity: sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==}
|
|
1624
|
-
engines: {node: '>=14'}
|
|
1625
|
-
peerDependencies:
|
|
1626
|
-
'@babel/core': ^7.0.0-0
|
|
1627
|
-
dependencies:
|
|
1628
|
-
'@babel/core': 7.28.3
|
|
1629
|
-
dev: true
|
|
1630
|
-
|
|
1631
|
-
/@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.28.3):
|
|
1632
|
-
resolution: {integrity: sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==}
|
|
1633
|
-
engines: {node: '>=12'}
|
|
1634
|
-
peerDependencies:
|
|
1635
|
-
'@babel/core': ^7.0.0-0
|
|
1636
|
-
dependencies:
|
|
1637
|
-
'@babel/core': 7.28.3
|
|
1638
|
-
dev: true
|
|
1639
|
-
|
|
1640
|
-
/@svgr/babel-preset@8.1.0(@babel/core@7.28.3):
|
|
1641
|
-
resolution: {integrity: sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==}
|
|
1642
|
-
engines: {node: '>=14'}
|
|
1643
|
-
peerDependencies:
|
|
1644
|
-
'@babel/core': ^7.0.0-0
|
|
1645
|
-
dependencies:
|
|
1646
|
-
'@babel/core': 7.28.3
|
|
1647
|
-
'@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.28.3)
|
|
1648
|
-
'@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.28.3)
|
|
1649
|
-
'@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.28.3)
|
|
1650
|
-
'@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.28.3)
|
|
1651
|
-
'@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.28.3)
|
|
1652
|
-
'@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.28.3)
|
|
1653
|
-
'@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.28.3)
|
|
1654
|
-
'@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.28.3)
|
|
1655
|
-
dev: true
|
|
1656
|
-
|
|
1657
|
-
/@svgr/core@8.1.0(typescript@5.9.2):
|
|
1658
|
-
resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==}
|
|
1659
|
-
engines: {node: '>=14'}
|
|
1660
|
-
dependencies:
|
|
1661
|
-
'@babel/core': 7.28.3
|
|
1662
|
-
'@svgr/babel-preset': 8.1.0(@babel/core@7.28.3)
|
|
1663
|
-
camelcase: 6.3.0
|
|
1664
|
-
cosmiconfig: 8.3.6(typescript@5.9.2)
|
|
1665
|
-
snake-case: 3.0.4
|
|
1666
|
-
transitivePeerDependencies:
|
|
1667
|
-
- supports-color
|
|
1668
|
-
- typescript
|
|
1669
|
-
dev: true
|
|
1670
|
-
|
|
1671
|
-
/@svgr/hast-util-to-babel-ast@8.0.0:
|
|
1672
|
-
resolution: {integrity: sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==}
|
|
1673
|
-
engines: {node: '>=14'}
|
|
1674
|
-
dependencies:
|
|
1675
|
-
'@babel/types': 7.28.2
|
|
1676
|
-
entities: 4.5.0
|
|
1677
|
-
dev: true
|
|
1678
|
-
|
|
1679
|
-
/@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0):
|
|
1680
|
-
resolution: {integrity: sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==}
|
|
1681
|
-
engines: {node: '>=14'}
|
|
1682
|
-
peerDependencies:
|
|
1683
|
-
'@svgr/core': '*'
|
|
1684
|
-
dependencies:
|
|
1685
|
-
'@babel/core': 7.28.3
|
|
1686
|
-
'@svgr/babel-preset': 8.1.0(@babel/core@7.28.3)
|
|
1687
|
-
'@svgr/core': 8.1.0(typescript@5.9.2)
|
|
1688
|
-
'@svgr/hast-util-to-babel-ast': 8.0.0
|
|
1689
|
-
svg-parser: 2.0.4
|
|
1690
|
-
transitivePeerDependencies:
|
|
1691
|
-
- supports-color
|
|
1692
|
-
dev: true
|
|
1693
|
-
|
|
1694
|
-
/@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0)(typescript@5.9.2):
|
|
1695
|
-
resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==}
|
|
1696
|
-
engines: {node: '>=14'}
|
|
1697
|
-
peerDependencies:
|
|
1698
|
-
'@svgr/core': '*'
|
|
1699
|
-
dependencies:
|
|
1700
|
-
'@svgr/core': 8.1.0(typescript@5.9.2)
|
|
1701
|
-
cosmiconfig: 8.3.6(typescript@5.9.2)
|
|
1702
|
-
deepmerge: 4.3.1
|
|
1703
|
-
svgo: 3.3.2
|
|
1704
|
-
transitivePeerDependencies:
|
|
1705
|
-
- typescript
|
|
1706
|
-
dev: true
|
|
1707
|
-
|
|
1708
|
-
/@svgr/webpack@8.1.0(typescript@5.9.2):
|
|
1709
|
-
resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==}
|
|
1710
|
-
engines: {node: '>=14'}
|
|
1711
|
-
dependencies:
|
|
1712
|
-
'@babel/core': 7.28.3
|
|
1713
|
-
'@babel/plugin-transform-react-constant-elements': 7.27.1(@babel/core@7.28.3)
|
|
1714
|
-
'@babel/preset-env': 7.28.3(@babel/core@7.28.3)
|
|
1715
|
-
'@babel/preset-react': 7.27.1(@babel/core@7.28.3)
|
|
1716
|
-
'@babel/preset-typescript': 7.27.1(@babel/core@7.28.3)
|
|
1717
|
-
'@svgr/core': 8.1.0(typescript@5.9.2)
|
|
1718
|
-
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0)
|
|
1719
|
-
'@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0)(typescript@5.9.2)
|
|
1720
|
-
transitivePeerDependencies:
|
|
1721
|
-
- supports-color
|
|
1722
|
-
- typescript
|
|
1723
|
-
dev: true
|
|
1724
|
-
|
|
1725
|
-
/@swc/helpers@0.5.15:
|
|
1726
|
-
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
|
|
1727
|
-
dependencies:
|
|
1728
|
-
tslib: 2.8.1
|
|
1729
|
-
dev: false
|
|
1730
|
-
|
|
1731
|
-
/@tailwindcss/node@4.1.11:
|
|
1732
|
-
resolution: {integrity: sha512-yzhzuGRmv5QyU9qLNg4GTlYI6STedBWRE7NjxP45CsFYYq9taI0zJXZBMqIC/c8fViNLhmrbpSFS57EoxUmD6Q==}
|
|
1733
|
-
dependencies:
|
|
1734
|
-
'@ampproject/remapping': 2.3.0
|
|
1735
|
-
enhanced-resolve: 5.18.3
|
|
1736
|
-
jiti: 2.5.1
|
|
1737
|
-
lightningcss: 1.30.1
|
|
1738
|
-
magic-string: 0.30.17
|
|
1739
|
-
source-map-js: 1.2.1
|
|
1740
|
-
tailwindcss: 4.1.11
|
|
1741
|
-
dev: false
|
|
1742
|
-
|
|
1743
|
-
/@tailwindcss/oxide-android-arm64@4.1.11:
|
|
1744
|
-
resolution: {integrity: sha512-3IfFuATVRUMZZprEIx9OGDjG3Ou3jG4xQzNTvjDoKmU9JdmoCohQJ83MYd0GPnQIu89YoJqvMM0G3uqLRFtetg==}
|
|
1745
|
-
engines: {node: '>= 10'}
|
|
1746
|
-
cpu: [arm64]
|
|
1747
|
-
os: [android]
|
|
1748
|
-
requiresBuild: true
|
|
1749
|
-
dev: false
|
|
1750
|
-
optional: true
|
|
1751
|
-
|
|
1752
|
-
/@tailwindcss/oxide-darwin-arm64@4.1.11:
|
|
1753
|
-
resolution: {integrity: sha512-ESgStEOEsyg8J5YcMb1xl8WFOXfeBmrhAwGsFxxB2CxY9evy63+AtpbDLAyRkJnxLy2WsD1qF13E97uQyP1lfQ==}
|
|
1754
|
-
engines: {node: '>= 10'}
|
|
1755
|
-
cpu: [arm64]
|
|
1756
|
-
os: [darwin]
|
|
1757
|
-
requiresBuild: true
|
|
1758
|
-
dev: false
|
|
1759
|
-
optional: true
|
|
1760
|
-
|
|
1761
|
-
/@tailwindcss/oxide-darwin-x64@4.1.11:
|
|
1762
|
-
resolution: {integrity: sha512-EgnK8kRchgmgzG6jE10UQNaH9Mwi2n+yw1jWmof9Vyg2lpKNX2ioe7CJdf9M5f8V9uaQxInenZkOxnTVL3fhAw==}
|
|
1763
|
-
engines: {node: '>= 10'}
|
|
1764
|
-
cpu: [x64]
|
|
1765
|
-
os: [darwin]
|
|
1766
|
-
requiresBuild: true
|
|
1767
|
-
dev: false
|
|
1768
|
-
optional: true
|
|
1769
|
-
|
|
1770
|
-
/@tailwindcss/oxide-freebsd-x64@4.1.11:
|
|
1771
|
-
resolution: {integrity: sha512-xdqKtbpHs7pQhIKmqVpxStnY1skuNh4CtbcyOHeX1YBE0hArj2romsFGb6yUmzkq/6M24nkxDqU8GYrKrz+UcA==}
|
|
1772
|
-
engines: {node: '>= 10'}
|
|
1773
|
-
cpu: [x64]
|
|
1774
|
-
os: [freebsd]
|
|
1775
|
-
requiresBuild: true
|
|
1776
|
-
dev: false
|
|
1777
|
-
optional: true
|
|
1778
|
-
|
|
1779
|
-
/@tailwindcss/oxide-linux-arm-gnueabihf@4.1.11:
|
|
1780
|
-
resolution: {integrity: sha512-ryHQK2eyDYYMwB5wZL46uoxz2zzDZsFBwfjssgB7pzytAeCCa6glsiJGjhTEddq/4OsIjsLNMAiMlHNYnkEEeg==}
|
|
1781
|
-
engines: {node: '>= 10'}
|
|
1782
|
-
cpu: [arm]
|
|
1783
|
-
os: [linux]
|
|
1784
|
-
requiresBuild: true
|
|
1785
|
-
dev: false
|
|
1786
|
-
optional: true
|
|
1787
|
-
|
|
1788
|
-
/@tailwindcss/oxide-linux-arm64-gnu@4.1.11:
|
|
1789
|
-
resolution: {integrity: sha512-mYwqheq4BXF83j/w75ewkPJmPZIqqP1nhoghS9D57CLjsh3Nfq0m4ftTotRYtGnZd3eCztgbSPJ9QhfC91gDZQ==}
|
|
1790
|
-
engines: {node: '>= 10'}
|
|
1791
|
-
cpu: [arm64]
|
|
1792
|
-
os: [linux]
|
|
1793
|
-
requiresBuild: true
|
|
1794
|
-
dev: false
|
|
1795
|
-
optional: true
|
|
1796
|
-
|
|
1797
|
-
/@tailwindcss/oxide-linux-arm64-musl@4.1.11:
|
|
1798
|
-
resolution: {integrity: sha512-m/NVRFNGlEHJrNVk3O6I9ggVuNjXHIPoD6bqay/pubtYC9QIdAMpS+cswZQPBLvVvEF6GtSNONbDkZrjWZXYNQ==}
|
|
1799
|
-
engines: {node: '>= 10'}
|
|
1800
|
-
cpu: [arm64]
|
|
1801
|
-
os: [linux]
|
|
1802
|
-
requiresBuild: true
|
|
1803
|
-
dev: false
|
|
1804
|
-
optional: true
|
|
1805
|
-
|
|
1806
|
-
/@tailwindcss/oxide-linux-x64-gnu@4.1.11:
|
|
1807
|
-
resolution: {integrity: sha512-YW6sblI7xukSD2TdbbaeQVDysIm/UPJtObHJHKxDEcW2exAtY47j52f8jZXkqE1krdnkhCMGqP3dbniu1Te2Fg==}
|
|
1808
|
-
engines: {node: '>= 10'}
|
|
1809
|
-
cpu: [x64]
|
|
1810
|
-
os: [linux]
|
|
1811
|
-
requiresBuild: true
|
|
1812
|
-
dev: false
|
|
1813
|
-
optional: true
|
|
1814
|
-
|
|
1815
|
-
/@tailwindcss/oxide-linux-x64-musl@4.1.11:
|
|
1816
|
-
resolution: {integrity: sha512-e3C/RRhGunWYNC3aSF7exsQkdXzQ/M+aYuZHKnw4U7KQwTJotnWsGOIVih0s2qQzmEzOFIJ3+xt7iq67K/p56Q==}
|
|
1817
|
-
engines: {node: '>= 10'}
|
|
1818
|
-
cpu: [x64]
|
|
1819
|
-
os: [linux]
|
|
1820
|
-
requiresBuild: true
|
|
1821
|
-
dev: false
|
|
1822
|
-
optional: true
|
|
1823
|
-
|
|
1824
|
-
/@tailwindcss/oxide-wasm32-wasi@4.1.11:
|
|
1825
|
-
resolution: {integrity: sha512-Xo1+/GU0JEN/C/dvcammKHzeM6NqKovG+6921MR6oadee5XPBaKOumrJCXvopJ/Qb5TH7LX/UAywbqrP4lax0g==}
|
|
1826
|
-
engines: {node: '>=14.0.0'}
|
|
1827
|
-
cpu: [wasm32]
|
|
1828
|
-
requiresBuild: true
|
|
1829
|
-
dev: false
|
|
1830
|
-
optional: true
|
|
1831
|
-
bundledDependencies:
|
|
1832
|
-
- '@napi-rs/wasm-runtime'
|
|
1833
|
-
- '@emnapi/core'
|
|
1834
|
-
- '@emnapi/runtime'
|
|
1835
|
-
- '@tybys/wasm-util'
|
|
1836
|
-
- '@emnapi/wasi-threads'
|
|
1837
|
-
- tslib
|
|
1838
|
-
|
|
1839
|
-
/@tailwindcss/oxide-win32-arm64-msvc@4.1.11:
|
|
1840
|
-
resolution: {integrity: sha512-UgKYx5PwEKrac3GPNPf6HVMNhUIGuUh4wlDFR2jYYdkX6pL/rn73zTq/4pzUm8fOjAn5L8zDeHp9iXmUGOXZ+w==}
|
|
1841
|
-
engines: {node: '>= 10'}
|
|
1842
|
-
cpu: [arm64]
|
|
1843
|
-
os: [win32]
|
|
1844
|
-
requiresBuild: true
|
|
1845
|
-
dev: false
|
|
1846
|
-
optional: true
|
|
1847
|
-
|
|
1848
|
-
/@tailwindcss/oxide-win32-x64-msvc@4.1.11:
|
|
1849
|
-
resolution: {integrity: sha512-YfHoggn1j0LK7wR82TOucWc5LDCguHnoS879idHekmmiR7g9HUtMw9MI0NHatS28u/Xlkfi9w5RJWgz2Dl+5Qg==}
|
|
1850
|
-
engines: {node: '>= 10'}
|
|
1851
|
-
cpu: [x64]
|
|
1852
|
-
os: [win32]
|
|
1853
|
-
requiresBuild: true
|
|
1854
|
-
dev: false
|
|
1855
|
-
optional: true
|
|
1856
|
-
|
|
1857
|
-
/@tailwindcss/oxide@4.1.11:
|
|
1858
|
-
resolution: {integrity: sha512-Q69XzrtAhuyfHo+5/HMgr1lAiPP/G40OMFAnws7xcFEYqcypZmdW8eGXaOUIeOl1dzPJBPENXgbjsOyhg2nkrg==}
|
|
1859
|
-
engines: {node: '>= 10'}
|
|
1860
|
-
requiresBuild: true
|
|
1861
|
-
dependencies:
|
|
1862
|
-
detect-libc: 2.0.4
|
|
1863
|
-
tar: 7.4.3
|
|
1864
|
-
optionalDependencies:
|
|
1865
|
-
'@tailwindcss/oxide-android-arm64': 4.1.11
|
|
1866
|
-
'@tailwindcss/oxide-darwin-arm64': 4.1.11
|
|
1867
|
-
'@tailwindcss/oxide-darwin-x64': 4.1.11
|
|
1868
|
-
'@tailwindcss/oxide-freebsd-x64': 4.1.11
|
|
1869
|
-
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.11
|
|
1870
|
-
'@tailwindcss/oxide-linux-arm64-gnu': 4.1.11
|
|
1871
|
-
'@tailwindcss/oxide-linux-arm64-musl': 4.1.11
|
|
1872
|
-
'@tailwindcss/oxide-linux-x64-gnu': 4.1.11
|
|
1873
|
-
'@tailwindcss/oxide-linux-x64-musl': 4.1.11
|
|
1874
|
-
'@tailwindcss/oxide-wasm32-wasi': 4.1.11
|
|
1875
|
-
'@tailwindcss/oxide-win32-arm64-msvc': 4.1.11
|
|
1876
|
-
'@tailwindcss/oxide-win32-x64-msvc': 4.1.11
|
|
1877
|
-
dev: false
|
|
1878
|
-
|
|
1879
|
-
/@tailwindcss/postcss@4.1.11:
|
|
1880
|
-
resolution: {integrity: sha512-q/EAIIpF6WpLhKEuQSEVMZNMIY8KhWoAemZ9eylNAih9jxMGAYPPWBn3I9QL/2jZ+e7OEz/tZkX5HwbBR4HohA==}
|
|
1881
|
-
dependencies:
|
|
1882
|
-
'@alloc/quick-lru': 5.2.0
|
|
1883
|
-
'@tailwindcss/node': 4.1.11
|
|
1884
|
-
'@tailwindcss/oxide': 4.1.11
|
|
1885
|
-
postcss: 8.5.6
|
|
1886
|
-
tailwindcss: 4.1.11
|
|
1887
|
-
dev: false
|
|
1888
|
-
|
|
1889
|
-
/@trysound/sax@0.2.0:
|
|
1890
|
-
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
|
|
1891
|
-
engines: {node: '>=10.13.0'}
|
|
1892
|
-
dev: true
|
|
1893
|
-
|
|
1894
|
-
/@types/node@20.19.11:
|
|
1895
|
-
resolution: {integrity: sha512-uug3FEEGv0r+jrecvUUpbY8lLisvIjg6AAic6a2bSP5OEOLeJsDSnvhCDov7ipFFMXS3orMpzlmi0ZcuGkBbow==}
|
|
1896
|
-
dependencies:
|
|
1897
|
-
undici-types: 6.21.0
|
|
1898
|
-
dev: true
|
|
1899
|
-
|
|
1900
|
-
/@types/react-dom@19.1.7(@types/react@19.1.10):
|
|
1901
|
-
resolution: {integrity: sha512-i5ZzwYpqjmrKenzkoLM2Ibzt6mAsM7pxB6BCIouEVVmgiqaMj1TjaK7hnA36hbW5aZv20kx7Lw6hWzPWg0Rurw==}
|
|
1902
|
-
peerDependencies:
|
|
1903
|
-
'@types/react': ^19.0.0
|
|
1904
|
-
dependencies:
|
|
1905
|
-
'@types/react': 19.1.10
|
|
1906
|
-
dev: true
|
|
1907
|
-
|
|
1908
|
-
/@types/react@19.1.10:
|
|
1909
|
-
resolution: {integrity: sha512-EhBeSYX0Y6ye8pNebpKrwFJq7BoQ8J5SO6NlvNwwHjSj6adXJViPQrKlsyPw7hLBLvckEMO1yxeGdR82YBBlDg==}
|
|
1910
|
-
dependencies:
|
|
1911
|
-
csstype: 3.1.3
|
|
1912
|
-
dev: true
|
|
1913
|
-
|
|
1914
|
-
/@vercel/analytics@1.5.0(next@16.1.0)(react@19.2.3):
|
|
1915
|
-
resolution: {integrity: sha512-MYsBzfPki4gthY5HnYN7jgInhAZ7Ac1cYDoRWFomwGHWEX7odTEzbtg9kf/QSo7XEsEAqlQugA6gJ2WS2DEa3g==}
|
|
1916
|
-
peerDependencies:
|
|
1917
|
-
'@remix-run/react': ^2
|
|
1918
|
-
'@sveltejs/kit': ^1 || ^2
|
|
1919
|
-
next: '>= 13'
|
|
1920
|
-
react: ^18 || ^19 || ^19.0.0-rc
|
|
1921
|
-
svelte: '>= 4'
|
|
1922
|
-
vue: ^3
|
|
1923
|
-
vue-router: ^4
|
|
1924
|
-
peerDependenciesMeta:
|
|
1925
|
-
'@remix-run/react':
|
|
1926
|
-
optional: true
|
|
1927
|
-
'@sveltejs/kit':
|
|
1928
|
-
optional: true
|
|
1929
|
-
next:
|
|
1930
|
-
optional: true
|
|
1931
|
-
react:
|
|
1932
|
-
optional: true
|
|
1933
|
-
svelte:
|
|
1934
|
-
optional: true
|
|
1935
|
-
vue:
|
|
1936
|
-
optional: true
|
|
1937
|
-
vue-router:
|
|
1938
|
-
optional: true
|
|
1939
|
-
dependencies:
|
|
1940
|
-
next: 16.1.0(@babel/core@7.28.3)(react-dom@19.2.3)(react@19.2.3)
|
|
1941
|
-
react: 19.2.3
|
|
1942
|
-
dev: false
|
|
1943
|
-
|
|
1944
|
-
/argparse@2.0.1:
|
|
1945
|
-
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
|
1946
|
-
dev: true
|
|
1947
|
-
|
|
1948
|
-
/babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.3):
|
|
1949
|
-
resolution: {integrity: sha512-Co2Y9wX854ts6U8gAAPXfn0GmAyctHuK8n0Yhfjd6t30g7yvKjspvvOo9yG+z52PZRgFErt7Ka2pYnXCjLKEpg==}
|
|
1950
|
-
peerDependencies:
|
|
1951
|
-
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
1952
|
-
dependencies:
|
|
1953
|
-
'@babel/compat-data': 7.28.0
|
|
1954
|
-
'@babel/core': 7.28.3
|
|
1955
|
-
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
|
|
1956
|
-
semver: 6.3.1
|
|
1957
|
-
transitivePeerDependencies:
|
|
1958
|
-
- supports-color
|
|
1959
|
-
dev: true
|
|
1960
|
-
|
|
1961
|
-
/babel-plugin-polyfill-corejs3@0.13.0(@babel/core@7.28.3):
|
|
1962
|
-
resolution: {integrity: sha512-U+GNwMdSFgzVmfhNm8GJUX88AadB3uo9KpJqS3FaqNIPKgySuvMb+bHPsOmmuWyIcuqZj/pzt1RUIUZns4y2+A==}
|
|
1963
|
-
peerDependencies:
|
|
1964
|
-
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
1965
|
-
dependencies:
|
|
1966
|
-
'@babel/core': 7.28.3
|
|
1967
|
-
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
|
|
1968
|
-
core-js-compat: 3.45.0
|
|
1969
|
-
transitivePeerDependencies:
|
|
1970
|
-
- supports-color
|
|
1971
|
-
dev: true
|
|
1972
|
-
|
|
1973
|
-
/babel-plugin-polyfill-regenerator@0.6.5(@babel/core@7.28.3):
|
|
1974
|
-
resolution: {integrity: sha512-ISqQ2frbiNU9vIJkzg7dlPpznPZ4jOiUQ1uSmB0fEHeowtN3COYRsXr/xexn64NpU13P06jc/L5TgiJXOgrbEg==}
|
|
1975
|
-
peerDependencies:
|
|
1976
|
-
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
|
|
1977
|
-
dependencies:
|
|
1978
|
-
'@babel/core': 7.28.3
|
|
1979
|
-
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.3)
|
|
1980
|
-
transitivePeerDependencies:
|
|
1981
|
-
- supports-color
|
|
1982
|
-
dev: true
|
|
1983
|
-
|
|
1984
|
-
/baseline-browser-mapping@2.9.11:
|
|
1985
|
-
resolution: {integrity: sha512-Sg0xJUNDU1sJNGdfGWhVHX0kkZ+HWcvmVymJbj6NSgZZmW/8S9Y2HQ5euytnIgakgxN6papOAWiwDo1ctFDcoQ==}
|
|
1986
|
-
hasBin: true
|
|
1987
|
-
dev: false
|
|
1988
|
-
|
|
1989
|
-
/boolbase@1.0.0:
|
|
1990
|
-
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
|
|
1991
|
-
dev: true
|
|
1992
|
-
|
|
1993
|
-
/browserslist@4.25.3:
|
|
1994
|
-
resolution: {integrity: sha512-cDGv1kkDI4/0e5yON9yM5G/0A5u8sf5TnmdX5C9qHzI9PPu++sQ9zjm1k9NiOrf3riY4OkK0zSGqfvJyJsgCBQ==}
|
|
1995
|
-
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
1996
|
-
hasBin: true
|
|
1997
|
-
dependencies:
|
|
1998
|
-
caniuse-lite: 1.0.30001735
|
|
1999
|
-
electron-to-chromium: 1.5.207
|
|
2000
|
-
node-releases: 2.0.19
|
|
2001
|
-
update-browserslist-db: 1.1.3(browserslist@4.25.3)
|
|
2002
|
-
|
|
2003
|
-
/callsites@3.1.0:
|
|
2004
|
-
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
|
2005
|
-
engines: {node: '>=6'}
|
|
2006
|
-
dev: true
|
|
2007
|
-
|
|
2008
|
-
/camelcase@6.3.0:
|
|
2009
|
-
resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
|
|
2010
|
-
engines: {node: '>=10'}
|
|
2011
|
-
dev: true
|
|
2012
|
-
|
|
2013
|
-
/caniuse-lite@1.0.30001735:
|
|
2014
|
-
resolution: {integrity: sha512-EV/laoX7Wq2J9TQlyIXRxTJqIw4sxfXS4OYgudGxBYRuTv0q7AM6yMEpU/Vo1I94thg9U6EZ2NfZx9GJq83u7w==}
|
|
2015
|
-
|
|
2016
|
-
/caniuse-lite@1.0.30001761:
|
|
2017
|
-
resolution: {integrity: sha512-JF9ptu1vP2coz98+5051jZ4PwQgd2ni8A+gYSN7EA7dPKIMf0pDlSUxhdmVOaV3/fYK5uWBkgSXJaRLr4+3A6g==}
|
|
2018
|
-
dev: false
|
|
2019
|
-
|
|
2020
|
-
/chownr@3.0.0:
|
|
2021
|
-
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
|
|
2022
|
-
engines: {node: '>=18'}
|
|
2023
|
-
dev: false
|
|
2024
|
-
|
|
2025
|
-
/client-only@0.0.1:
|
|
2026
|
-
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
|
|
2027
|
-
dev: false
|
|
2028
|
-
|
|
2029
|
-
/commander@7.2.0:
|
|
2030
|
-
resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==}
|
|
2031
|
-
engines: {node: '>= 10'}
|
|
2032
|
-
dev: true
|
|
2033
|
-
|
|
2034
|
-
/convert-source-map@2.0.0:
|
|
2035
|
-
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
2036
|
-
|
|
2037
|
-
/core-js-compat@3.45.0:
|
|
2038
|
-
resolution: {integrity: sha512-gRoVMBawZg0OnxaVv3zpqLLxaHmsubEGyTnqdpI/CEBvX4JadI1dMSHxagThprYRtSVbuQxvi6iUatdPxohHpA==}
|
|
2039
|
-
dependencies:
|
|
2040
|
-
browserslist: 4.25.3
|
|
2041
|
-
dev: true
|
|
2042
|
-
|
|
2043
|
-
/cosmiconfig@8.3.6(typescript@5.9.2):
|
|
2044
|
-
resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==}
|
|
2045
|
-
engines: {node: '>=14'}
|
|
2046
|
-
peerDependencies:
|
|
2047
|
-
typescript: '>=4.9.5'
|
|
2048
|
-
peerDependenciesMeta:
|
|
2049
|
-
typescript:
|
|
2050
|
-
optional: true
|
|
2051
|
-
dependencies:
|
|
2052
|
-
import-fresh: 3.3.1
|
|
2053
|
-
js-yaml: 4.1.0
|
|
2054
|
-
parse-json: 5.2.0
|
|
2055
|
-
path-type: 4.0.0
|
|
2056
|
-
typescript: 5.9.2
|
|
2057
|
-
dev: true
|
|
2058
|
-
|
|
2059
|
-
/css-select@5.2.2:
|
|
2060
|
-
resolution: {integrity: sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw==}
|
|
2061
|
-
dependencies:
|
|
2062
|
-
boolbase: 1.0.0
|
|
2063
|
-
css-what: 6.2.2
|
|
2064
|
-
domhandler: 5.0.3
|
|
2065
|
-
domutils: 3.2.2
|
|
2066
|
-
nth-check: 2.1.1
|
|
2067
|
-
dev: true
|
|
2068
|
-
|
|
2069
|
-
/css-tree@2.2.1:
|
|
2070
|
-
resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==}
|
|
2071
|
-
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
|
|
2072
|
-
dependencies:
|
|
2073
|
-
mdn-data: 2.0.28
|
|
2074
|
-
source-map-js: 1.2.1
|
|
2075
|
-
dev: true
|
|
2076
|
-
|
|
2077
|
-
/css-tree@2.3.1:
|
|
2078
|
-
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
|
|
2079
|
-
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
|
|
2080
|
-
dependencies:
|
|
2081
|
-
mdn-data: 2.0.30
|
|
2082
|
-
source-map-js: 1.2.1
|
|
2083
|
-
dev: true
|
|
2084
|
-
|
|
2085
|
-
/css-what@6.2.2:
|
|
2086
|
-
resolution: {integrity: sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA==}
|
|
2087
|
-
engines: {node: '>= 6'}
|
|
2088
|
-
dev: true
|
|
2089
|
-
|
|
2090
|
-
/csso@5.0.5:
|
|
2091
|
-
resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==}
|
|
2092
|
-
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'}
|
|
2093
|
-
dependencies:
|
|
2094
|
-
css-tree: 2.2.1
|
|
2095
|
-
dev: true
|
|
2096
|
-
|
|
2097
|
-
/csstype@3.1.3:
|
|
2098
|
-
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
|
|
2099
|
-
dev: true
|
|
2100
|
-
|
|
2101
|
-
/debug@4.4.1:
|
|
2102
|
-
resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
|
|
2103
|
-
engines: {node: '>=6.0'}
|
|
2104
|
-
peerDependencies:
|
|
2105
|
-
supports-color: '*'
|
|
2106
|
-
peerDependenciesMeta:
|
|
2107
|
-
supports-color:
|
|
2108
|
-
optional: true
|
|
2109
|
-
dependencies:
|
|
2110
|
-
ms: 2.1.3
|
|
2111
|
-
|
|
2112
|
-
/deepmerge@4.3.1:
|
|
2113
|
-
resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
|
|
2114
|
-
engines: {node: '>=0.10.0'}
|
|
2115
|
-
dev: true
|
|
2116
|
-
|
|
2117
|
-
/detect-libc@2.0.4:
|
|
2118
|
-
resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
|
|
2119
|
-
engines: {node: '>=8'}
|
|
2120
|
-
dev: false
|
|
2121
|
-
|
|
2122
|
-
/detect-libc@2.1.2:
|
|
2123
|
-
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
2124
|
-
engines: {node: '>=8'}
|
|
2125
|
-
requiresBuild: true
|
|
2126
|
-
dev: false
|
|
2127
|
-
optional: true
|
|
2128
|
-
|
|
2129
|
-
/dom-serializer@2.0.0:
|
|
2130
|
-
resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==}
|
|
2131
|
-
dependencies:
|
|
2132
|
-
domelementtype: 2.3.0
|
|
2133
|
-
domhandler: 5.0.3
|
|
2134
|
-
entities: 4.5.0
|
|
2135
|
-
dev: true
|
|
2136
|
-
|
|
2137
|
-
/domelementtype@2.3.0:
|
|
2138
|
-
resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==}
|
|
2139
|
-
dev: true
|
|
2140
|
-
|
|
2141
|
-
/domhandler@5.0.3:
|
|
2142
|
-
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
|
|
2143
|
-
engines: {node: '>= 4'}
|
|
2144
|
-
dependencies:
|
|
2145
|
-
domelementtype: 2.3.0
|
|
2146
|
-
dev: true
|
|
2147
|
-
|
|
2148
|
-
/domutils@3.2.2:
|
|
2149
|
-
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
|
|
2150
|
-
dependencies:
|
|
2151
|
-
dom-serializer: 2.0.0
|
|
2152
|
-
domelementtype: 2.3.0
|
|
2153
|
-
domhandler: 5.0.3
|
|
2154
|
-
dev: true
|
|
2155
|
-
|
|
2156
|
-
/dot-case@3.0.4:
|
|
2157
|
-
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
|
|
2158
|
-
dependencies:
|
|
2159
|
-
no-case: 3.0.4
|
|
2160
|
-
tslib: 2.8.1
|
|
2161
|
-
dev: true
|
|
2162
|
-
|
|
2163
|
-
/electron-to-chromium@1.5.207:
|
|
2164
|
-
resolution: {integrity: sha512-mryFrrL/GXDTmAtIVMVf+eIXM09BBPlO5IQ7lUyKmK8d+A4VpRGG+M3ofoVef6qyF8s60rJei8ymlJxjUA8Faw==}
|
|
2165
|
-
|
|
2166
|
-
/enhanced-resolve@5.18.3:
|
|
2167
|
-
resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
|
|
2168
|
-
engines: {node: '>=10.13.0'}
|
|
2169
|
-
dependencies:
|
|
2170
|
-
graceful-fs: 4.2.11
|
|
2171
|
-
tapable: 2.2.2
|
|
2172
|
-
dev: false
|
|
2173
|
-
|
|
2174
|
-
/entities@4.5.0:
|
|
2175
|
-
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
|
2176
|
-
engines: {node: '>=0.12'}
|
|
2177
|
-
dev: true
|
|
2178
|
-
|
|
2179
|
-
/error-ex@1.3.2:
|
|
2180
|
-
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
|
|
2181
|
-
dependencies:
|
|
2182
|
-
is-arrayish: 0.2.1
|
|
2183
|
-
dev: true
|
|
2184
|
-
|
|
2185
|
-
/escalade@3.2.0:
|
|
2186
|
-
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
2187
|
-
engines: {node: '>=6'}
|
|
2188
|
-
|
|
2189
|
-
/esutils@2.0.3:
|
|
2190
|
-
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
|
2191
|
-
engines: {node: '>=0.10.0'}
|
|
2192
|
-
dev: true
|
|
2193
|
-
|
|
2194
|
-
/function-bind@1.1.2:
|
|
2195
|
-
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
|
2196
|
-
dev: true
|
|
2197
|
-
|
|
2198
|
-
/gensync@1.0.0-beta.2:
|
|
2199
|
-
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
2200
|
-
engines: {node: '>=6.9.0'}
|
|
2201
|
-
|
|
2202
|
-
/graceful-fs@4.2.11:
|
|
2203
|
-
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
2204
|
-
dev: false
|
|
2205
|
-
|
|
2206
|
-
/hasown@2.0.2:
|
|
2207
|
-
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
|
2208
|
-
engines: {node: '>= 0.4'}
|
|
2209
|
-
dependencies:
|
|
2210
|
-
function-bind: 1.1.2
|
|
2211
|
-
dev: true
|
|
2212
|
-
|
|
2213
|
-
/import-fresh@3.3.1:
|
|
2214
|
-
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
|
2215
|
-
engines: {node: '>=6'}
|
|
2216
|
-
dependencies:
|
|
2217
|
-
parent-module: 1.0.1
|
|
2218
|
-
resolve-from: 4.0.0
|
|
2219
|
-
dev: true
|
|
2220
|
-
|
|
2221
|
-
/is-arrayish@0.2.1:
|
|
2222
|
-
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
|
|
2223
|
-
dev: true
|
|
2224
|
-
|
|
2225
|
-
/is-core-module@2.16.1:
|
|
2226
|
-
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
|
|
2227
|
-
engines: {node: '>= 0.4'}
|
|
2228
|
-
dependencies:
|
|
2229
|
-
hasown: 2.0.2
|
|
2230
|
-
dev: true
|
|
2231
|
-
|
|
2232
|
-
/jiti@2.5.1:
|
|
2233
|
-
resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==}
|
|
2234
|
-
hasBin: true
|
|
2235
|
-
dev: false
|
|
2236
|
-
|
|
2237
|
-
/js-tokens@4.0.0:
|
|
2238
|
-
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
2239
|
-
|
|
2240
|
-
/js-yaml@4.1.0:
|
|
2241
|
-
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
|
|
2242
|
-
hasBin: true
|
|
2243
|
-
dependencies:
|
|
2244
|
-
argparse: 2.0.1
|
|
2245
|
-
dev: true
|
|
2246
|
-
|
|
2247
|
-
/jsesc@3.0.2:
|
|
2248
|
-
resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
|
|
2249
|
-
engines: {node: '>=6'}
|
|
2250
|
-
hasBin: true
|
|
2251
|
-
dev: true
|
|
2252
|
-
|
|
2253
|
-
/jsesc@3.1.0:
|
|
2254
|
-
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
2255
|
-
engines: {node: '>=6'}
|
|
2256
|
-
hasBin: true
|
|
2257
|
-
|
|
2258
|
-
/json-parse-even-better-errors@2.3.1:
|
|
2259
|
-
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
|
|
2260
|
-
dev: true
|
|
2261
|
-
|
|
2262
|
-
/json5@2.2.3:
|
|
2263
|
-
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
2264
|
-
engines: {node: '>=6'}
|
|
2265
|
-
hasBin: true
|
|
2266
|
-
|
|
2267
|
-
/lightningcss-darwin-arm64@1.30.1:
|
|
2268
|
-
resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
|
|
2269
|
-
engines: {node: '>= 12.0.0'}
|
|
2270
|
-
cpu: [arm64]
|
|
2271
|
-
os: [darwin]
|
|
2272
|
-
requiresBuild: true
|
|
2273
|
-
dev: false
|
|
2274
|
-
optional: true
|
|
2275
|
-
|
|
2276
|
-
/lightningcss-darwin-x64@1.30.1:
|
|
2277
|
-
resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
|
|
2278
|
-
engines: {node: '>= 12.0.0'}
|
|
2279
|
-
cpu: [x64]
|
|
2280
|
-
os: [darwin]
|
|
2281
|
-
requiresBuild: true
|
|
2282
|
-
dev: false
|
|
2283
|
-
optional: true
|
|
2284
|
-
|
|
2285
|
-
/lightningcss-freebsd-x64@1.30.1:
|
|
2286
|
-
resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
|
|
2287
|
-
engines: {node: '>= 12.0.0'}
|
|
2288
|
-
cpu: [x64]
|
|
2289
|
-
os: [freebsd]
|
|
2290
|
-
requiresBuild: true
|
|
2291
|
-
dev: false
|
|
2292
|
-
optional: true
|
|
2293
|
-
|
|
2294
|
-
/lightningcss-linux-arm-gnueabihf@1.30.1:
|
|
2295
|
-
resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
|
|
2296
|
-
engines: {node: '>= 12.0.0'}
|
|
2297
|
-
cpu: [arm]
|
|
2298
|
-
os: [linux]
|
|
2299
|
-
requiresBuild: true
|
|
2300
|
-
dev: false
|
|
2301
|
-
optional: true
|
|
2302
|
-
|
|
2303
|
-
/lightningcss-linux-arm64-gnu@1.30.1:
|
|
2304
|
-
resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
|
|
2305
|
-
engines: {node: '>= 12.0.0'}
|
|
2306
|
-
cpu: [arm64]
|
|
2307
|
-
os: [linux]
|
|
2308
|
-
requiresBuild: true
|
|
2309
|
-
dev: false
|
|
2310
|
-
optional: true
|
|
2311
|
-
|
|
2312
|
-
/lightningcss-linux-arm64-musl@1.30.1:
|
|
2313
|
-
resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
|
|
2314
|
-
engines: {node: '>= 12.0.0'}
|
|
2315
|
-
cpu: [arm64]
|
|
2316
|
-
os: [linux]
|
|
2317
|
-
requiresBuild: true
|
|
2318
|
-
dev: false
|
|
2319
|
-
optional: true
|
|
2320
|
-
|
|
2321
|
-
/lightningcss-linux-x64-gnu@1.30.1:
|
|
2322
|
-
resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
|
|
2323
|
-
engines: {node: '>= 12.0.0'}
|
|
2324
|
-
cpu: [x64]
|
|
2325
|
-
os: [linux]
|
|
2326
|
-
requiresBuild: true
|
|
2327
|
-
dev: false
|
|
2328
|
-
optional: true
|
|
2329
|
-
|
|
2330
|
-
/lightningcss-linux-x64-musl@1.30.1:
|
|
2331
|
-
resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
|
|
2332
|
-
engines: {node: '>= 12.0.0'}
|
|
2333
|
-
cpu: [x64]
|
|
2334
|
-
os: [linux]
|
|
2335
|
-
requiresBuild: true
|
|
2336
|
-
dev: false
|
|
2337
|
-
optional: true
|
|
2338
|
-
|
|
2339
|
-
/lightningcss-win32-arm64-msvc@1.30.1:
|
|
2340
|
-
resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
|
|
2341
|
-
engines: {node: '>= 12.0.0'}
|
|
2342
|
-
cpu: [arm64]
|
|
2343
|
-
os: [win32]
|
|
2344
|
-
requiresBuild: true
|
|
2345
|
-
dev: false
|
|
2346
|
-
optional: true
|
|
2347
|
-
|
|
2348
|
-
/lightningcss-win32-x64-msvc@1.30.1:
|
|
2349
|
-
resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
|
|
2350
|
-
engines: {node: '>= 12.0.0'}
|
|
2351
|
-
cpu: [x64]
|
|
2352
|
-
os: [win32]
|
|
2353
|
-
requiresBuild: true
|
|
2354
|
-
dev: false
|
|
2355
|
-
optional: true
|
|
2356
|
-
|
|
2357
|
-
/lightningcss@1.30.1:
|
|
2358
|
-
resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
|
|
2359
|
-
engines: {node: '>= 12.0.0'}
|
|
2360
|
-
dependencies:
|
|
2361
|
-
detect-libc: 2.0.4
|
|
2362
|
-
optionalDependencies:
|
|
2363
|
-
lightningcss-darwin-arm64: 1.30.1
|
|
2364
|
-
lightningcss-darwin-x64: 1.30.1
|
|
2365
|
-
lightningcss-freebsd-x64: 1.30.1
|
|
2366
|
-
lightningcss-linux-arm-gnueabihf: 1.30.1
|
|
2367
|
-
lightningcss-linux-arm64-gnu: 1.30.1
|
|
2368
|
-
lightningcss-linux-arm64-musl: 1.30.1
|
|
2369
|
-
lightningcss-linux-x64-gnu: 1.30.1
|
|
2370
|
-
lightningcss-linux-x64-musl: 1.30.1
|
|
2371
|
-
lightningcss-win32-arm64-msvc: 1.30.1
|
|
2372
|
-
lightningcss-win32-x64-msvc: 1.30.1
|
|
2373
|
-
dev: false
|
|
2374
|
-
|
|
2375
|
-
/lines-and-columns@1.2.4:
|
|
2376
|
-
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
|
2377
|
-
dev: true
|
|
2378
|
-
|
|
2379
|
-
/lodash.debounce@4.0.8:
|
|
2380
|
-
resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==}
|
|
2381
|
-
dev: true
|
|
2382
|
-
|
|
2383
|
-
/lower-case@2.0.2:
|
|
2384
|
-
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
|
|
2385
|
-
dependencies:
|
|
2386
|
-
tslib: 2.8.1
|
|
2387
|
-
dev: true
|
|
2388
|
-
|
|
2389
|
-
/lru-cache@5.1.1:
|
|
2390
|
-
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
2391
|
-
dependencies:
|
|
2392
|
-
yallist: 3.1.1
|
|
2393
|
-
|
|
2394
|
-
/magic-string@0.30.17:
|
|
2395
|
-
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
|
|
2396
|
-
dependencies:
|
|
2397
|
-
'@jridgewell/sourcemap-codec': 1.5.5
|
|
2398
|
-
dev: false
|
|
2399
|
-
|
|
2400
|
-
/mdn-data@2.0.28:
|
|
2401
|
-
resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==}
|
|
2402
|
-
dev: true
|
|
2403
|
-
|
|
2404
|
-
/mdn-data@2.0.30:
|
|
2405
|
-
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
|
|
2406
|
-
dev: true
|
|
2407
|
-
|
|
2408
|
-
/minipass@7.1.2:
|
|
2409
|
-
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
|
2410
|
-
engines: {node: '>=16 || 14 >=14.17'}
|
|
2411
|
-
dev: false
|
|
2412
|
-
|
|
2413
|
-
/minizlib@3.0.2:
|
|
2414
|
-
resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==}
|
|
2415
|
-
engines: {node: '>= 18'}
|
|
2416
|
-
dependencies:
|
|
2417
|
-
minipass: 7.1.2
|
|
2418
|
-
dev: false
|
|
2419
|
-
|
|
2420
|
-
/mkdirp@3.0.1:
|
|
2421
|
-
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
|
|
2422
|
-
engines: {node: '>=10'}
|
|
2423
|
-
hasBin: true
|
|
2424
|
-
dev: false
|
|
2425
|
-
|
|
2426
|
-
/ms@2.1.3:
|
|
2427
|
-
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
2428
|
-
|
|
2429
|
-
/nanoid@3.3.11:
|
|
2430
|
-
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
2431
|
-
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
2432
|
-
hasBin: true
|
|
2433
|
-
dev: false
|
|
2434
|
-
|
|
2435
|
-
/next@16.1.0(@babel/core@7.28.3)(react-dom@19.2.3)(react@19.2.3):
|
|
2436
|
-
resolution: {integrity: sha512-Y+KbmDbefYtHDDQKLNrmzE/YYzG2msqo2VXhzh5yrJ54tx/6TmGdkR5+kP9ma7i7LwZpZMfoY3m/AoPPPKxtVw==}
|
|
2437
|
-
engines: {node: '>=20.9.0'}
|
|
2438
|
-
hasBin: true
|
|
2439
|
-
peerDependencies:
|
|
2440
|
-
'@opentelemetry/api': ^1.1.0
|
|
2441
|
-
'@playwright/test': ^1.51.1
|
|
2442
|
-
babel-plugin-react-compiler: '*'
|
|
2443
|
-
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
|
2444
|
-
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
|
|
2445
|
-
sass: ^1.3.0
|
|
2446
|
-
peerDependenciesMeta:
|
|
2447
|
-
'@opentelemetry/api':
|
|
2448
|
-
optional: true
|
|
2449
|
-
'@playwright/test':
|
|
2450
|
-
optional: true
|
|
2451
|
-
babel-plugin-react-compiler:
|
|
2452
|
-
optional: true
|
|
2453
|
-
sass:
|
|
2454
|
-
optional: true
|
|
2455
|
-
dependencies:
|
|
2456
|
-
'@next/env': 16.1.0
|
|
2457
|
-
'@swc/helpers': 0.5.15
|
|
2458
|
-
baseline-browser-mapping: 2.9.11
|
|
2459
|
-
caniuse-lite: 1.0.30001761
|
|
2460
|
-
postcss: 8.4.31
|
|
2461
|
-
react: 19.2.3
|
|
2462
|
-
react-dom: 19.2.3(react@19.2.3)
|
|
2463
|
-
styled-jsx: 5.1.6(@babel/core@7.28.3)(react@19.2.3)
|
|
2464
|
-
optionalDependencies:
|
|
2465
|
-
'@next/swc-darwin-arm64': 16.1.0
|
|
2466
|
-
'@next/swc-darwin-x64': 16.1.0
|
|
2467
|
-
'@next/swc-linux-arm64-gnu': 16.1.0
|
|
2468
|
-
'@next/swc-linux-arm64-musl': 16.1.0
|
|
2469
|
-
'@next/swc-linux-x64-gnu': 16.1.0
|
|
2470
|
-
'@next/swc-linux-x64-musl': 16.1.0
|
|
2471
|
-
'@next/swc-win32-arm64-msvc': 16.1.0
|
|
2472
|
-
'@next/swc-win32-x64-msvc': 16.1.0
|
|
2473
|
-
sharp: 0.34.5
|
|
2474
|
-
transitivePeerDependencies:
|
|
2475
|
-
- '@babel/core'
|
|
2476
|
-
- babel-plugin-macros
|
|
2477
|
-
dev: false
|
|
2478
|
-
|
|
2479
|
-
/no-case@3.0.4:
|
|
2480
|
-
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
|
|
2481
|
-
dependencies:
|
|
2482
|
-
lower-case: 2.0.2
|
|
2483
|
-
tslib: 2.8.1
|
|
2484
|
-
dev: true
|
|
2485
|
-
|
|
2486
|
-
/node-releases@2.0.19:
|
|
2487
|
-
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
|
|
2488
|
-
|
|
2489
|
-
/nth-check@2.1.1:
|
|
2490
|
-
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
|
|
2491
|
-
dependencies:
|
|
2492
|
-
boolbase: 1.0.0
|
|
2493
|
-
dev: true
|
|
2494
|
-
|
|
2495
|
-
/parent-module@1.0.1:
|
|
2496
|
-
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
|
2497
|
-
engines: {node: '>=6'}
|
|
2498
|
-
dependencies:
|
|
2499
|
-
callsites: 3.1.0
|
|
2500
|
-
dev: true
|
|
2501
|
-
|
|
2502
|
-
/parse-json@5.2.0:
|
|
2503
|
-
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
|
|
2504
|
-
engines: {node: '>=8'}
|
|
2505
|
-
dependencies:
|
|
2506
|
-
'@babel/code-frame': 7.27.1
|
|
2507
|
-
error-ex: 1.3.2
|
|
2508
|
-
json-parse-even-better-errors: 2.3.1
|
|
2509
|
-
lines-and-columns: 1.2.4
|
|
2510
|
-
dev: true
|
|
2511
|
-
|
|
2512
|
-
/path-parse@1.0.7:
|
|
2513
|
-
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
|
2514
|
-
dev: true
|
|
2515
|
-
|
|
2516
|
-
/path-type@4.0.0:
|
|
2517
|
-
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
|
2518
|
-
engines: {node: '>=8'}
|
|
2519
|
-
dev: true
|
|
2520
|
-
|
|
2521
|
-
/picocolors@1.1.1:
|
|
2522
|
-
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
2523
|
-
|
|
2524
|
-
/postcss@8.4.31:
|
|
2525
|
-
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
|
|
2526
|
-
engines: {node: ^10 || ^12 || >=14}
|
|
2527
|
-
dependencies:
|
|
2528
|
-
nanoid: 3.3.11
|
|
2529
|
-
picocolors: 1.1.1
|
|
2530
|
-
source-map-js: 1.2.1
|
|
2531
|
-
dev: false
|
|
2532
|
-
|
|
2533
|
-
/postcss@8.5.6:
|
|
2534
|
-
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
2535
|
-
engines: {node: ^10 || ^12 || >=14}
|
|
2536
|
-
dependencies:
|
|
2537
|
-
nanoid: 3.3.11
|
|
2538
|
-
picocolors: 1.1.1
|
|
2539
|
-
source-map-js: 1.2.1
|
|
2540
|
-
dev: false
|
|
2541
|
-
|
|
2542
|
-
/react-dom@19.2.3(react@19.2.3):
|
|
2543
|
-
resolution: {integrity: sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==}
|
|
2544
|
-
peerDependencies:
|
|
2545
|
-
react: ^19.2.3
|
|
2546
|
-
dependencies:
|
|
2547
|
-
react: 19.2.3
|
|
2548
|
-
scheduler: 0.27.0
|
|
2549
|
-
dev: false
|
|
2550
|
-
|
|
2551
|
-
/react@19.2.3:
|
|
2552
|
-
resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==}
|
|
2553
|
-
engines: {node: '>=0.10.0'}
|
|
2554
|
-
dev: false
|
|
2555
|
-
|
|
2556
|
-
/regenerate-unicode-properties@10.2.0:
|
|
2557
|
-
resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
|
|
2558
|
-
engines: {node: '>=4'}
|
|
2559
|
-
dependencies:
|
|
2560
|
-
regenerate: 1.4.2
|
|
2561
|
-
dev: true
|
|
2562
|
-
|
|
2563
|
-
/regenerate@1.4.2:
|
|
2564
|
-
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
|
|
2565
|
-
dev: true
|
|
2566
|
-
|
|
2567
|
-
/regexpu-core@6.2.0:
|
|
2568
|
-
resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
|
|
2569
|
-
engines: {node: '>=4'}
|
|
2570
|
-
dependencies:
|
|
2571
|
-
regenerate: 1.4.2
|
|
2572
|
-
regenerate-unicode-properties: 10.2.0
|
|
2573
|
-
regjsgen: 0.8.0
|
|
2574
|
-
regjsparser: 0.12.0
|
|
2575
|
-
unicode-match-property-ecmascript: 2.0.0
|
|
2576
|
-
unicode-match-property-value-ecmascript: 2.2.0
|
|
2577
|
-
dev: true
|
|
2578
|
-
|
|
2579
|
-
/regjsgen@0.8.0:
|
|
2580
|
-
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
|
|
2581
|
-
dev: true
|
|
2582
|
-
|
|
2583
|
-
/regjsparser@0.12.0:
|
|
2584
|
-
resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
|
|
2585
|
-
hasBin: true
|
|
2586
|
-
dependencies:
|
|
2587
|
-
jsesc: 3.0.2
|
|
2588
|
-
dev: true
|
|
2589
|
-
|
|
2590
|
-
/resolve-from@4.0.0:
|
|
2591
|
-
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
|
2592
|
-
engines: {node: '>=4'}
|
|
2593
|
-
dev: true
|
|
2594
|
-
|
|
2595
|
-
/resolve@1.22.10:
|
|
2596
|
-
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
|
|
2597
|
-
engines: {node: '>= 0.4'}
|
|
2598
|
-
hasBin: true
|
|
2599
|
-
dependencies:
|
|
2600
|
-
is-core-module: 2.16.1
|
|
2601
|
-
path-parse: 1.0.7
|
|
2602
|
-
supports-preserve-symlinks-flag: 1.0.0
|
|
2603
|
-
dev: true
|
|
2604
|
-
|
|
2605
|
-
/scheduler@0.27.0:
|
|
2606
|
-
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
|
|
2607
|
-
dev: false
|
|
2608
|
-
|
|
2609
|
-
/semver@6.3.1:
|
|
2610
|
-
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
2611
|
-
hasBin: true
|
|
2612
|
-
|
|
2613
|
-
/semver@7.7.3:
|
|
2614
|
-
resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
|
|
2615
|
-
engines: {node: '>=10'}
|
|
2616
|
-
hasBin: true
|
|
2617
|
-
requiresBuild: true
|
|
2618
|
-
dev: false
|
|
2619
|
-
optional: true
|
|
2620
|
-
|
|
2621
|
-
/sharp@0.34.5:
|
|
2622
|
-
resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
|
|
2623
|
-
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
|
|
2624
|
-
requiresBuild: true
|
|
2625
|
-
dependencies:
|
|
2626
|
-
'@img/colour': 1.0.0
|
|
2627
|
-
detect-libc: 2.1.2
|
|
2628
|
-
semver: 7.7.3
|
|
2629
|
-
optionalDependencies:
|
|
2630
|
-
'@img/sharp-darwin-arm64': 0.34.5
|
|
2631
|
-
'@img/sharp-darwin-x64': 0.34.5
|
|
2632
|
-
'@img/sharp-libvips-darwin-arm64': 1.2.4
|
|
2633
|
-
'@img/sharp-libvips-darwin-x64': 1.2.4
|
|
2634
|
-
'@img/sharp-libvips-linux-arm': 1.2.4
|
|
2635
|
-
'@img/sharp-libvips-linux-arm64': 1.2.4
|
|
2636
|
-
'@img/sharp-libvips-linux-ppc64': 1.2.4
|
|
2637
|
-
'@img/sharp-libvips-linux-riscv64': 1.2.4
|
|
2638
|
-
'@img/sharp-libvips-linux-s390x': 1.2.4
|
|
2639
|
-
'@img/sharp-libvips-linux-x64': 1.2.4
|
|
2640
|
-
'@img/sharp-libvips-linuxmusl-arm64': 1.2.4
|
|
2641
|
-
'@img/sharp-libvips-linuxmusl-x64': 1.2.4
|
|
2642
|
-
'@img/sharp-linux-arm': 0.34.5
|
|
2643
|
-
'@img/sharp-linux-arm64': 0.34.5
|
|
2644
|
-
'@img/sharp-linux-ppc64': 0.34.5
|
|
2645
|
-
'@img/sharp-linux-riscv64': 0.34.5
|
|
2646
|
-
'@img/sharp-linux-s390x': 0.34.5
|
|
2647
|
-
'@img/sharp-linux-x64': 0.34.5
|
|
2648
|
-
'@img/sharp-linuxmusl-arm64': 0.34.5
|
|
2649
|
-
'@img/sharp-linuxmusl-x64': 0.34.5
|
|
2650
|
-
'@img/sharp-wasm32': 0.34.5
|
|
2651
|
-
'@img/sharp-win32-arm64': 0.34.5
|
|
2652
|
-
'@img/sharp-win32-ia32': 0.34.5
|
|
2653
|
-
'@img/sharp-win32-x64': 0.34.5
|
|
2654
|
-
dev: false
|
|
2655
|
-
optional: true
|
|
2656
|
-
|
|
2657
|
-
/snake-case@3.0.4:
|
|
2658
|
-
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
|
|
2659
|
-
dependencies:
|
|
2660
|
-
dot-case: 3.0.4
|
|
2661
|
-
tslib: 2.8.1
|
|
2662
|
-
dev: true
|
|
2663
|
-
|
|
2664
|
-
/source-map-js@1.2.1:
|
|
2665
|
-
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
2666
|
-
engines: {node: '>=0.10.0'}
|
|
2667
|
-
|
|
2668
|
-
/styled-jsx@5.1.6(@babel/core@7.28.3)(react@19.2.3):
|
|
2669
|
-
resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
|
|
2670
|
-
engines: {node: '>= 12.0.0'}
|
|
2671
|
-
peerDependencies:
|
|
2672
|
-
'@babel/core': '*'
|
|
2673
|
-
babel-plugin-macros: '*'
|
|
2674
|
-
react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
|
|
2675
|
-
peerDependenciesMeta:
|
|
2676
|
-
'@babel/core':
|
|
2677
|
-
optional: true
|
|
2678
|
-
babel-plugin-macros:
|
|
2679
|
-
optional: true
|
|
2680
|
-
dependencies:
|
|
2681
|
-
'@babel/core': 7.28.3
|
|
2682
|
-
client-only: 0.0.1
|
|
2683
|
-
react: 19.2.3
|
|
2684
|
-
dev: false
|
|
2685
|
-
|
|
2686
|
-
/supports-preserve-symlinks-flag@1.0.0:
|
|
2687
|
-
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
|
2688
|
-
engines: {node: '>= 0.4'}
|
|
2689
|
-
dev: true
|
|
2690
|
-
|
|
2691
|
-
/svg-parser@2.0.4:
|
|
2692
|
-
resolution: {integrity: sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==}
|
|
2693
|
-
dev: true
|
|
2694
|
-
|
|
2695
|
-
/svgo@3.3.2:
|
|
2696
|
-
resolution: {integrity: sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==}
|
|
2697
|
-
engines: {node: '>=14.0.0'}
|
|
2698
|
-
hasBin: true
|
|
2699
|
-
dependencies:
|
|
2700
|
-
'@trysound/sax': 0.2.0
|
|
2701
|
-
commander: 7.2.0
|
|
2702
|
-
css-select: 5.2.2
|
|
2703
|
-
css-tree: 2.3.1
|
|
2704
|
-
css-what: 6.2.2
|
|
2705
|
-
csso: 5.0.5
|
|
2706
|
-
picocolors: 1.1.1
|
|
2707
|
-
dev: true
|
|
2708
|
-
|
|
2709
|
-
/tailwindcss@4.1.11:
|
|
2710
|
-
resolution: {integrity: sha512-2E9TBm6MDD/xKYe+dvJZAmg3yxIEDNRc0jwlNyDg/4Fil2QcSLjFKGVff0lAf1jjeaArlG/M75Ey/EYr/OJtBA==}
|
|
2711
|
-
dev: false
|
|
2712
|
-
|
|
2713
|
-
/tapable@2.2.2:
|
|
2714
|
-
resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==}
|
|
2715
|
-
engines: {node: '>=6'}
|
|
2716
|
-
dev: false
|
|
2717
|
-
|
|
2718
|
-
/tar@7.4.3:
|
|
2719
|
-
resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
|
|
2720
|
-
engines: {node: '>=18'}
|
|
2721
|
-
dependencies:
|
|
2722
|
-
'@isaacs/fs-minipass': 4.0.1
|
|
2723
|
-
chownr: 3.0.0
|
|
2724
|
-
minipass: 7.1.2
|
|
2725
|
-
minizlib: 3.0.2
|
|
2726
|
-
mkdirp: 3.0.1
|
|
2727
|
-
yallist: 5.0.0
|
|
2728
|
-
dev: false
|
|
2729
|
-
|
|
2730
|
-
/tslib@2.8.1:
|
|
2731
|
-
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
|
|
2732
|
-
|
|
2733
|
-
/typescript@5.9.2:
|
|
2734
|
-
resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
|
|
2735
|
-
engines: {node: '>=14.17'}
|
|
2736
|
-
hasBin: true
|
|
2737
|
-
dev: true
|
|
2738
|
-
|
|
2739
|
-
/undici-types@6.21.0:
|
|
2740
|
-
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
2741
|
-
dev: true
|
|
2742
|
-
|
|
2743
|
-
/unicode-canonical-property-names-ecmascript@2.0.1:
|
|
2744
|
-
resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
|
|
2745
|
-
engines: {node: '>=4'}
|
|
2746
|
-
dev: true
|
|
2747
|
-
|
|
2748
|
-
/unicode-match-property-ecmascript@2.0.0:
|
|
2749
|
-
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
|
|
2750
|
-
engines: {node: '>=4'}
|
|
2751
|
-
dependencies:
|
|
2752
|
-
unicode-canonical-property-names-ecmascript: 2.0.1
|
|
2753
|
-
unicode-property-aliases-ecmascript: 2.1.0
|
|
2754
|
-
dev: true
|
|
2755
|
-
|
|
2756
|
-
/unicode-match-property-value-ecmascript@2.2.0:
|
|
2757
|
-
resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
|
|
2758
|
-
engines: {node: '>=4'}
|
|
2759
|
-
dev: true
|
|
2760
|
-
|
|
2761
|
-
/unicode-property-aliases-ecmascript@2.1.0:
|
|
2762
|
-
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
|
|
2763
|
-
engines: {node: '>=4'}
|
|
2764
|
-
dev: true
|
|
2765
|
-
|
|
2766
|
-
/update-browserslist-db@1.1.3(browserslist@4.25.3):
|
|
2767
|
-
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
|
|
2768
|
-
hasBin: true
|
|
2769
|
-
peerDependencies:
|
|
2770
|
-
browserslist: '>= 4.21.0'
|
|
2771
|
-
dependencies:
|
|
2772
|
-
browserslist: 4.25.3
|
|
2773
|
-
escalade: 3.2.0
|
|
2774
|
-
picocolors: 1.1.1
|
|
2775
|
-
|
|
2776
|
-
/yallist@3.1.1:
|
|
2777
|
-
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
2778
|
-
|
|
2779
|
-
/yallist@5.0.0:
|
|
2780
|
-
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
|
|
2781
|
-
engines: {node: '>=18'}
|
|
2782
|
-
dev: false
|