2025-03-19 06:04:06 +00:00
{
2025-08-19 01:17:17 +00:00
"name" : "next-ai-draw-io" ,
2025-12-23 09:09:39 +09:00
"version" : "0.4.6" ,
2025-08-19 01:17:17 +00:00
"lockfileVersion" : 3 ,
"requires" : true ,
"packages" : {
"" : {
"name" : "next-ai-draw-io" ,
2025-12-23 09:09:39 +09:00
"version" : "0.4.6" ,
2025-12-04 11:24:26 +09:00
"license" : "Apache-2.0" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-13 23:28:41 +09:00
"@ai-sdk/amazon-bedrock" : "^3.0.70" ,
2025-11-15 13:36:42 +09:00
"@ai-sdk/anthropic" : "^2.0.44" ,
"@ai-sdk/azure" : "^2.0.69" ,
2025-12-02 11:52:09 +09:00
"@ai-sdk/deepseek" : "^1.0.30" ,
2025-12-16 22:43:33 -05:00
"@ai-sdk/gateway" : "^2.0.21" ,
2025-08-31 12:54:14 +09:00
"@ai-sdk/google" : "^2.0.0" ,
"@ai-sdk/openai" : "^2.0.19" ,
2025-12-07 00:40:11 +09:00
"@ai-sdk/react" : "^2.0.107" ,
2025-12-05 09:19:26 +09:00
"@aws-sdk/credential-providers" : "^3.943.0" ,
2025-12-20 20:18:54 +05:30
"@formatjs/intl-localematcher" : "^0.7.2" ,
2025-12-05 21:15:02 +09:00
"@langfuse/client" : "^4.4.9" ,
"@langfuse/otel" : "^4.4.4" ,
"@langfuse/tracing" : "^4.4.9" ,
2025-12-03 20:35:31 +09:00
"@next/third-parties" : "^16.0.6" ,
2025-11-15 14:29:18 +09:00
"@openrouter/ai-sdk-provider" : "^1.2.3" ,
2025-12-07 20:33:43 +09:00
"@opentelemetry/exporter-trace-otlp-http" : "^0.208.0" ,
2025-12-05 21:15:02 +09:00
"@opentelemetry/sdk-trace-node" : "^2.2.0" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-alert-dialog" : "^1.1.15" ,
2025-12-10 20:54:43 +05:30
"@radix-ui/react-collapsible" : "^1.1.12" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-dialog" : "^1.1.15" ,
2025-12-06 21:42:28 +09:00
"@radix-ui/react-label" : "^2.1.8" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-popover" : "^1.1.15" ,
2025-08-19 01:17:17 +00:00
"@radix-ui/react-scroll-area" : "^1.2.3" ,
2025-12-04 22:56:59 +09:00
"@radix-ui/react-select" : "^2.2.6" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-slot" : "^1.2.4" ,
2025-12-06 21:42:28 +09:00
"@radix-ui/react-switch" : "^1.2.6" ,
2025-08-19 01:17:17 +00:00
"@radix-ui/react-tooltip" : "^1.1.8" ,
2025-12-10 20:54:43 +05:30
"@radix-ui/react-use-controllable-state" : "^1.2.2" ,
2025-08-19 01:17:17 +00:00
"@xmldom/xmldom" : "^0.9.8" ,
2025-11-09 23:24:15 +09:00
"ai" : "^5.0.89" ,
2025-08-19 01:17:17 +00:00
"base-64" : "^1.0.0" ,
"class-variance-authority" : "^0.7.1" ,
"clsx" : "^2.1.1" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"cmdk" : "^1.1.1" ,
2025-12-08 18:56:34 +09:00
"js-tiktoken" : "^1.0.21" ,
2025-08-19 01:17:17 +00:00
"jsdom" : "^26.0.0" ,
2025-12-14 12:34:34 +09:00
"jsonrepair" : "^3.13.1" ,
2025-08-19 01:17:17 +00:00
"lucide-react" : "^0.483.0" ,
2025-12-10 20:54:43 +05:30
"motion" : "^12.23.25" ,
2025-12-20 20:18:54 +05:30
"negotiator" : "^1.0.0" ,
2025-12-04 13:48:30 +09:00
"next" : "^16.0.7" ,
2025-11-15 13:36:42 +09:00
"ollama-ai-provider-v2" : "^1.5.4" ,
2025-08-19 01:17:17 +00:00
"pako" : "^2.1.0" ,
2025-12-03 21:49:34 +09:00
"prism-react-renderer" : "^2.4.1" ,
2025-12-08 23:31:17 +09:00
"react" : "^19.1.2" ,
"react-dom" : "^19.1.2" ,
2025-08-19 01:17:17 +00:00
"react-drawio" : "^1.0.3" ,
"react-icons" : "^5.5.0" ,
2025-12-05 22:42:39 +09:00
"react-markdown" : "^10.1.0" ,
"react-resizable-panels" : "^3.0.6" ,
2025-08-19 01:17:17 +00:00
"remark-gfm" : "^4.0.1" ,
2025-12-20 20:18:54 +05:30
"server-only" : "^0.0.1" ,
2025-12-05 19:30:50 +09:00
"sonner" : "^2.0.7" ,
2025-08-19 01:17:17 +00:00
"tailwind-merge" : "^3.0.2" ,
2025-08-31 12:54:14 +09:00
"tailwindcss-animate" : "^1.0.7" ,
2025-12-10 21:32:35 +09:00
"unpdf" : "^1.4.0" ,
2025-11-15 13:36:42 +09:00
"zod" : "^4.1.12"
2025-08-19 01:17:17 +00:00
} ,
"devDependencies" : {
2025-12-07 20:33:43 +09:00
"@anthropic-ai/tokenizer" : "^0.0.4" ,
2025-12-21 00:32:51 +09:00
"@biomejs/biome" : "^2.3.10" ,
2025-08-19 01:17:17 +00:00
"@tailwindcss/postcss" : "^4" ,
2025-12-05 22:42:39 +09:00
"@tailwindcss/typography" : "^0.5.19" ,
2025-12-20 20:18:54 +05:30
"@types/negotiator" : "^0.6.4" ,
2025-08-19 01:17:17 +00:00
"@types/node" : "^20" ,
"@types/pako" : "^2.0.3" ,
"@types/react" : "^19" ,
"@types/react-dom" : "^19" ,
2025-12-22 09:18:21 +08:00
"concurrently" : "^9.2.1" ,
"cross-env" : "^10.1.0" ,
"electron" : "^39.2.7" ,
"electron-builder" : "^26.0.12" ,
"esbuild" : "^0.27.2" ,
2025-11-29 12:39:35 +08:00
"eslint" : "9.39.1" ,
"eslint-config-next" : "16.0.5" ,
2025-12-06 12:46:40 +09:00
"husky" : "^9.1.7" ,
"lint-staged" : "^16.2.7" ,
2025-12-22 09:18:21 +08:00
"shx" : "^0.4.0" ,
2025-08-19 01:17:17 +00:00
"tailwindcss" : "^4" ,
2025-12-22 09:18:21 +08:00
"typescript" : "^5" ,
"wait-on" : "^9.0.3"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@ai-sdk/amazon-bedrock" : {
2025-12-13 23:28:41 +09:00
"version" : "3.0.70" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/amazon-bedrock/-/amazon-bedrock-3.0.70.tgz" ,
"integrity" : "sha512-4NIBlwuS/iLKq2ynOqqyJ9imk/oyHuOzhBx88Bfm5I0ihQPKJ0dMMD1IKKuyDZvLRYKmlOEpa//P+/ZBp10drw==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-13 23:28:41 +09:00
"@ai-sdk/anthropic" : "2.0.56" ,
2025-11-09 23:24:15 +09:00
"@ai-sdk/provider" : "2.0.0" ,
2025-12-13 23:28:41 +09:00
"@ai-sdk/provider-utils" : "3.0.19" ,
2025-08-19 01:17:17 +00:00
"@smithy/eventstream-codec" : "^4.0.1" ,
"@smithy/util-utf8" : "^4.0.0" ,
"aws4fetch" : "^1.0.20"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
2025-11-09 23:24:15 +09:00
"zod" : "^3.25.76 || ^4.1.8"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-13 23:28:41 +09:00
"node_modules/@ai-sdk/amazon-bedrock/node_modules/@ai-sdk/provider-utils" : {
"version" : "3.0.19" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.19.tgz" ,
"integrity" : "sha512-W41Wc9/jbUVXVwCN/7bWa4IKe8MtxO3EyA0Hfhx6grnmiYlCvpI8neSYWFE0zScXJkgA/YK3BRybzgyiXuu6JA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
"@standard-schema/spec" : "^1.0.0" ,
"eventsource-parser" : "^3.0.6"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
2025-11-15 13:36:42 +09:00
"node_modules/@ai-sdk/anthropic" : {
2025-12-13 23:28:41 +09:00
"version" : "2.0.56" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/anthropic/-/anthropic-2.0.56.tgz" ,
"integrity" : "sha512-XHJKu0Yvfu9SPzRfsAFESa+9T7f2YJY6TxykKMfRsAwpeWAiX/Gbx5J5uM15AzYC3Rw8tVP3oH+j7jEivENirQ==" ,
2025-11-15 13:36:42 +09:00
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
2025-12-13 23:28:41 +09:00
"@ai-sdk/provider-utils" : "3.0.19"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
"node_modules/@ai-sdk/anthropic/node_modules/@ai-sdk/provider-utils" : {
"version" : "3.0.19" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.19.tgz" ,
"integrity" : "sha512-W41Wc9/jbUVXVwCN/7bWa4IKe8MtxO3EyA0Hfhx6grnmiYlCvpI8neSYWFE0zScXJkgA/YK3BRybzgyiXuu6JA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
"@standard-schema/spec" : "^1.0.0" ,
"eventsource-parser" : "^3.0.6"
2025-11-15 13:36:42 +09:00
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
"node_modules/@ai-sdk/azure" : {
"version" : "2.0.69" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/azure/-/azure-2.0.69.tgz" ,
"integrity" : "sha512-0Y+f0XHviWw9ixB2Dkqyg07V67oczUh8adh4B/t0LgVMVkvOsf/WEzfYx2/LDqdvI/o8IYyJ6JzsCKpBwbS61g==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/openai" : "2.0.67" ,
"@ai-sdk/provider" : "2.0.0" ,
"@ai-sdk/provider-utils" : "3.0.17"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
"node_modules/@ai-sdk/azure/node_modules/@ai-sdk/provider-utils" : {
"version" : "3.0.17" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.17.tgz" ,
"integrity" : "sha512-TR3Gs4I3Tym4Ll+EPdzRdvo/rc8Js6c4nVhFLuvGLX/Y4V9ZcQMa/HTiYsHEgmYrf1zVi6Q145UEZUfleOwOjw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
"@standard-schema/spec" : "^1.0.0" ,
"eventsource-parser" : "^3.0.6"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
2025-12-02 11:52:09 +09:00
"node_modules/@ai-sdk/deepseek" : {
"version" : "1.0.30" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/deepseek/-/deepseek-1.0.30.tgz" ,
"integrity" : "sha512-pafNclW9L8Z3WimaRwlpHrGbdeaDE/UklT3rMi2aoRRyrA+s7zGcFuu1zbO2ViLNlKfaS91XZa9MFAPXbIftUA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/openai-compatible" : "1.0.28" ,
"@ai-sdk/provider" : "2.0.0" ,
"@ai-sdk/provider-utils" : "3.0.18"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
2025-11-09 23:24:15 +09:00
"node_modules/@ai-sdk/gateway" : {
2025-12-16 22:43:33 -05:00
"version" : "2.0.21" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/gateway/-/gateway-2.0.21.tgz" ,
"integrity" : "sha512-BwV7DU/lAm3Xn6iyyvZdWgVxgLu3SNXzl5y57gMvkW4nGhAOV5269IrJzQwGt03bb107sa6H6uJwWxc77zXoGA==" ,
2025-08-31 12:54:14 +09:00
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
2025-12-16 22:43:33 -05:00
"@ai-sdk/provider-utils" : "3.0.19" ,
2025-12-07 00:40:11 +09:00
"@vercel/oidc" : "3.0.5"
2025-08-31 12:54:14 +09:00
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
2025-11-09 23:24:15 +09:00
"zod" : "^3.25.76 || ^4.1.8"
2025-08-31 12:54:14 +09:00
}
} ,
2025-12-16 22:43:33 -05:00
"node_modules/@ai-sdk/gateway/node_modules/@ai-sdk/provider-utils" : {
"version" : "3.0.19" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.19.tgz" ,
"integrity" : "sha512-W41Wc9/jbUVXVwCN/7bWa4IKe8MtxO3EyA0Hfhx6grnmiYlCvpI8neSYWFE0zScXJkgA/YK3BRybzgyiXuu6JA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
"@standard-schema/spec" : "^1.0.0" ,
"eventsource-parser" : "^3.0.6"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@ai-sdk/google" : {
2025-08-31 12:54:14 +09:00
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/google/-/google-2.0.0.tgz" ,
"integrity" : "sha512-35uWKG+aWm0QClJV/kNhcyR9IVrDkZoI1UlWvUCjwoqbCxj4/L/1LKKbpM3JSRa9u74ghHzBB0UjLHdgcIoanw==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-08-31 12:54:14 +09:00
"@ai-sdk/provider" : "2.0.0" ,
"@ai-sdk/provider-utils" : "3.0.0"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
2025-08-31 12:54:14 +09:00
"zod" : "^3.25.76 || ^4"
}
} ,
"node_modules/@ai-sdk/google/node_modules/@ai-sdk/provider-utils" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.0.tgz" ,
"integrity" : "sha512-BoQZtGcBxkeSH1zK+SRYNDtJPIPpacTeiMZqnG4Rv6xXjEwM0FH4MGs9c+PlhyEWmQCzjRM2HAotEydFhD4dYw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
"@standard-schema/spec" : "^1.0.0" ,
"eventsource-parser" : "^3.0.3" ,
"zod-to-json-schema" : "^3.24.1"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-15 13:36:42 +09:00
"node_modules/@ai-sdk/google/node_modules/@ai-sdk/provider-utils/node_modules/zod-to-json-schema" : {
"version" : "3.24.6" ,
"resolved" : "https://registry.npmjs.org/zod-to-json-schema/-/zod-to-json-schema-3.24.6.tgz" ,
"integrity" : "sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==" ,
"license" : "ISC" ,
"peerDependencies" : {
"zod" : "^3.24.1"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@ai-sdk/openai" : {
2025-11-15 13:36:42 +09:00
"version" : "2.0.67" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/openai/-/openai-2.0.67.tgz" ,
"integrity" : "sha512-JhB3fUpY+IxAocyJt2PHuhfNwH+e+rDbZ8Q+d0hgSyNycuPRrV0xutLaf7mgDTvjr5FCrVEkXmM73tJprzZMiA==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-08-31 12:54:14 +09:00
"@ai-sdk/provider" : "2.0.0" ,
2025-11-15 13:36:42 +09:00
"@ai-sdk/provider-utils" : "3.0.17"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
2025-11-15 13:36:42 +09:00
"zod" : "^3.25.76 || ^4.1.8"
2025-08-31 12:54:14 +09:00
}
} ,
2025-12-02 11:52:09 +09:00
"node_modules/@ai-sdk/openai-compatible" : {
"version" : "1.0.28" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/openai-compatible/-/openai-compatible-1.0.28.tgz" ,
"integrity" : "sha512-yKubDxLYtXyGUzkr9lNStf/lE/I+Okc8tmotvyABhsQHHieLKk6oV5fJeRJxhr67Ejhg+FRnwUOxAmjRoFM4dA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
"@ai-sdk/provider-utils" : "3.0.18"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
2025-08-31 12:54:14 +09:00
"node_modules/@ai-sdk/openai/node_modules/@ai-sdk/provider-utils" : {
2025-11-15 13:36:42 +09:00
"version" : "3.0.17" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.17.tgz" ,
"integrity" : "sha512-TR3Gs4I3Tym4Ll+EPdzRdvo/rc8Js6c4nVhFLuvGLX/Y4V9ZcQMa/HTiYsHEgmYrf1zVi6Q145UEZUfleOwOjw==" ,
2025-08-31 12:54:14 +09:00
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
"@standard-schema/spec" : "^1.0.0" ,
2025-11-15 13:36:42 +09:00
"eventsource-parser" : "^3.0.6"
2025-08-31 12:54:14 +09:00
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
2025-11-15 13:36:42 +09:00
"zod" : "^3.25.76 || ^4.1.8"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@ai-sdk/provider" : {
2025-11-09 23:24:15 +09:00
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/provider/-/provider-2.0.0.tgz" ,
"integrity" : "sha512-6o7Y2SeO9vFKB8lArHXehNuusnpddKPk7xqL7T2/b+OvXMRIXUO1rR4wcv1hAFUAT9avGZshty3Wlua/XA7TvA==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
"json-schema" : "^0.4.0"
} ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@ai-sdk/provider-utils" : {
2025-12-07 00:40:11 +09:00
"version" : "3.0.18" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/provider-utils/-/provider-utils-3.0.18.tgz" ,
"integrity" : "sha512-ypv1xXMsgGcNKUP+hglKqtdDuMg68nWHucPPAhIENrbFAI+xCHiqPVN8Zllxyv1TNZwGWUghPxJXU+Mqps0YRQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-11-09 23:24:15 +09:00
"@ai-sdk/provider" : "2.0.0" ,
"@standard-schema/spec" : "^1.0.0" ,
"eventsource-parser" : "^3.0.6"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
2025-11-09 23:24:15 +09:00
"zod" : "^3.25.76 || ^4.1.8"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@ai-sdk/react" : {
2025-12-07 00:40:11 +09:00
"version" : "2.0.107" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/react/-/react-2.0.107.tgz" ,
"integrity" : "sha512-rv0u+tAi2r2zJu2uSLXcC3TBgGrkQIWXRM+i6us6qcGmYQ2kOu2VYg+lxviOSGPhL9PVebvTlN5x8mf3rDqX+w==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-07 00:40:11 +09:00
"@ai-sdk/provider-utils" : "3.0.18" ,
"ai" : "5.0.107" ,
2025-08-19 01:17:17 +00:00
"swr" : "^2.2.5" ,
"throttleit" : "2.1.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"react" : "^18 || ^19 || ^19.0.0-rc" ,
2025-12-07 00:40:11 +09:00
"zod" : "^3.25.76 || ^4.1.8"
2025-08-19 01:17:17 +00:00
} ,
"peerDependenciesMeta" : {
"zod" : {
"optional" : true
}
}
} ,
"node_modules/@alloc/quick-lru" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz" ,
"integrity" : "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-07 20:33:43 +09:00
"node_modules/@anthropic-ai/tokenizer" : {
"version" : "0.0.4" ,
"resolved" : "https://registry.npmjs.org/@anthropic-ai/tokenizer/-/tokenizer-0.0.4.tgz" ,
"integrity" : "sha512-EHRKbxlxlc8W4KCBEseByJ7YwyYCmgu9OyN59H9+IYIGPoKv8tXyQXinkeGDI+cI8Tiuz9wk2jZb/kK7AyvL7g==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@types/node" : "^18.11.18" ,
"tiktoken" : "^1.0.10"
}
} ,
"node_modules/@anthropic-ai/tokenizer/node_modules/@types/node" : {
"version" : "18.19.130" ,
"resolved" : "https://registry.npmjs.org/@types/node/-/node-18.19.130.tgz" ,
"integrity" : "sha512-GRaXQx6jGfL8sKfaIDD6OupbIHBr9jv7Jnaml9tB7l4v068PAOXqfcujMMo5PhbIs6ggR1XODELqahT2R8v0fg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"undici-types" : "~5.26.4"
}
} ,
"node_modules/@anthropic-ai/tokenizer/node_modules/undici-types" : {
"version" : "5.26.5" ,
"resolved" : "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" ,
"integrity" : "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@asamuzakjp/css-color" : {
"version" : "3.1.1" ,
"resolved" : "https://registry.npmjs.org/@asamuzakjp/css-color/-/css-color-3.1.1.tgz" ,
"integrity" : "sha512-hpRD68SV2OMcZCsrbdkccTw5FXjNDLo5OuqSHyHZfwweGsDWZwDJ2+gONyNAbazZclobMirACLw0lk8WVxIqxA==" ,
"license" : "MIT" ,
"dependencies" : {
"@csstools/css-calc" : "^2.1.2" ,
"@csstools/css-color-parser" : "^3.0.8" ,
"@csstools/css-parser-algorithms" : "^3.0.4" ,
"@csstools/css-tokenizer" : "^3.0.3" ,
"lru-cache" : "^10.4.3"
}
} ,
"node_modules/@aws-crypto/crc32" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmjs.org/@aws-crypto/crc32/-/crc32-5.2.0.tgz" ,
"integrity" : "sha512-nLbCWqQNgUiwwtFsen1AdzAtvuLRsQS8rYgMuxCrdKf9kOssamGLuPwyTY9wyYblNr9+1XM8v6zoDTPPSIeANg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-crypto/util" : "^5.2.0" ,
"@aws-sdk/types" : "^3.222.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=16.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/sha256-browser" : {
2025-08-19 01:17:17 +00:00
"version" : "5.2.0" ,
2025-12-05 09:19:26 +09:00
"resolved" : "https://registry.npmjs.org/@aws-crypto/sha256-browser/-/sha256-browser-5.2.0.tgz" ,
"integrity" : "sha512-AXfN/lGotSQwu6HNcEsIASo7kWXZ5HYWvfOmSNKDsEqC4OashTp8alTmaz+F7TC2L083SFv5RdB+qU3Vs1kZqw==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-crypto/sha256-js" : "^5.2.0" ,
"@aws-crypto/supports-web-crypto" : "^5.2.0" ,
"@aws-crypto/util" : "^5.2.0" ,
2025-08-19 01:17:17 +00:00
"@aws-sdk/types" : "^3.222.0" ,
2025-12-05 09:19:26 +09:00
"@aws-sdk/util-locate-window" : "^3.0.0" ,
2025-08-19 01:17:17 +00:00
"@smithy/util-utf8" : "^2.0.0" ,
"tslib" : "^2.6.2"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/is-array-buffer" : {
2025-08-19 01:17:17 +00:00
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz" ,
"integrity" : "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=14.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-buffer-from" : {
2025-08-19 01:17:17 +00:00
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz" ,
"integrity" : "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/is-array-buffer" : "^2.2.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=14.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/sha256-browser/node_modules/@smithy/util-utf8" : {
2025-08-19 01:17:17 +00:00
"version" : "2.3.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz" ,
"integrity" : "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/util-buffer-from" : "^2.2.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=14.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/sha256-js" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmjs.org/@aws-crypto/sha256-js/-/sha256-js-5.2.0.tgz" ,
"integrity" : "sha512-FFQQyu7edu4ufvIZ+OadFpHHOt+eSTBaYaki44c+akjg7qZg9oOQeLlk77F6tSYqjDAFClrHJk9tMf0HdVyOvA==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-crypto/util" : "^5.2.0" ,
"@aws-sdk/types" : "^3.222.0" ,
2025-08-19 01:17:17 +00:00
"tslib" : "^2.6.2"
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=16.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/supports-web-crypto" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmjs.org/@aws-crypto/supports-web-crypto/-/supports-web-crypto-5.2.0.tgz" ,
"integrity" : "sha512-iAvUotm021kM33eCdNfwIN//F77/IADDSs58i+MDaOqFrVjZo9bAal0NK7HurRuWLLpF1iLX7gbWrjHjeo+YFg==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/util" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmjs.org/@aws-crypto/util/-/util-5.2.0.tgz" ,
"integrity" : "sha512-4RkU9EsI6ZpBve5fseQlGNUWKMa1RLPQ1dnjnQoe07ldfIzcsGb5hC5W0Dm7u423KWzawlrpbjXBrXCEv9zazQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-sdk/types" : "^3.222.0" ,
"@smithy/util-utf8" : "^2.0.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/util/node_modules/@smithy/is-array-buffer" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-2.2.0.tgz" ,
"integrity" : "sha512-GGP3O9QFD24uGeAXYUjwSTXARoqpZykHadOmA8G5vfJPK0/DC67qa//0qvqrJzL1xc8WQWX7/yc7fwudjPHPhA==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=14.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/util/node_modules/@smithy/util-buffer-from" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-2.2.0.tgz" ,
"integrity" : "sha512-IJdWBbTcMQ6DA0gdNhh/BwrLkDR+ADW5Kr1aZmd4k3DIF6ezMV4R2NIAmT08wQJ3yUK82thHWmC/TnK/wpMMIA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/is-array-buffer" : "^2.2.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=14.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-crypto/util/node_modules/@smithy/util-utf8" : {
"version" : "2.3.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-2.3.0.tgz" ,
"integrity" : "sha512-R8Rdn8Hy72KKcebgLiv8jQcQkXoLMOGGv5uI1/k0l+snqkOzQ1R0ChUBCxWMlBsFMekWjq0wRudIweFs7sKT5A==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/util-buffer-from" : "^2.2.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=14.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/client-cognito-identity" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/client-cognito-identity/-/client-cognito-identity-3.943.0.tgz" ,
"integrity" : "sha512-XkuokRF2IQ+VLBn0AwrwfFOkZ2c1IXACwQdn3CDnpBZpT1s2hgH3MX0DoH9+41w4ar2QCSI09uAJiv9PX4DLoQ==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-crypto/sha256-browser" : "5.2.0" ,
"@aws-crypto/sha256-js" : "5.2.0" ,
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/credential-provider-node" : "3.943.0" ,
"@aws-sdk/middleware-host-header" : "3.936.0" ,
"@aws-sdk/middleware-logger" : "3.936.0" ,
"@aws-sdk/middleware-recursion-detection" : "3.936.0" ,
"@aws-sdk/middleware-user-agent" : "3.943.0" ,
"@aws-sdk/region-config-resolver" : "3.936.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@aws-sdk/util-endpoints" : "3.936.0" ,
"@aws-sdk/util-user-agent-browser" : "3.936.0" ,
"@aws-sdk/util-user-agent-node" : "3.943.0" ,
"@smithy/config-resolver" : "^4.4.3" ,
"@smithy/core" : "^3.18.5" ,
"@smithy/fetch-http-handler" : "^5.3.6" ,
"@smithy/hash-node" : "^4.2.5" ,
"@smithy/invalid-dependency" : "^4.2.5" ,
"@smithy/middleware-content-length" : "^4.2.5" ,
"@smithy/middleware-endpoint" : "^4.3.12" ,
"@smithy/middleware-retry" : "^4.4.12" ,
"@smithy/middleware-serde" : "^4.2.6" ,
"@smithy/middleware-stack" : "^4.2.5" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/node-http-handler" : "^4.4.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/smithy-client" : "^4.9.8" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/url-parser" : "^4.2.5" ,
"@smithy/util-base64" : "^4.3.0" ,
"@smithy/util-body-length-browser" : "^4.2.0" ,
"@smithy/util-body-length-node" : "^4.2.1" ,
"@smithy/util-defaults-mode-browser" : "^4.3.11" ,
"@smithy/util-defaults-mode-node" : "^4.2.14" ,
"@smithy/util-endpoints" : "^3.2.5" ,
"@smithy/util-middleware" : "^4.2.5" ,
"@smithy/util-retry" : "^4.2.5" ,
"@smithy/util-utf8" : "^4.2.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/client-sso" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.943.0.tgz" ,
"integrity" : "sha512-kOTO2B8Ks2qX73CyKY8PAajtf5n39aMe2spoiOF5EkgSzGV7hZ/HONRDyADlyxwfsX39Q2F2SpPUaXzon32IGw==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-crypto/sha256-browser" : "5.2.0" ,
"@aws-crypto/sha256-js" : "5.2.0" ,
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/middleware-host-header" : "3.936.0" ,
"@aws-sdk/middleware-logger" : "3.936.0" ,
"@aws-sdk/middleware-recursion-detection" : "3.936.0" ,
"@aws-sdk/middleware-user-agent" : "3.943.0" ,
"@aws-sdk/region-config-resolver" : "3.936.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@aws-sdk/util-endpoints" : "3.936.0" ,
"@aws-sdk/util-user-agent-browser" : "3.936.0" ,
"@aws-sdk/util-user-agent-node" : "3.943.0" ,
"@smithy/config-resolver" : "^4.4.3" ,
"@smithy/core" : "^3.18.5" ,
"@smithy/fetch-http-handler" : "^5.3.6" ,
"@smithy/hash-node" : "^4.2.5" ,
"@smithy/invalid-dependency" : "^4.2.5" ,
"@smithy/middleware-content-length" : "^4.2.5" ,
"@smithy/middleware-endpoint" : "^4.3.12" ,
"@smithy/middleware-retry" : "^4.4.12" ,
"@smithy/middleware-serde" : "^4.2.6" ,
"@smithy/middleware-stack" : "^4.2.5" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/node-http-handler" : "^4.4.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/smithy-client" : "^4.9.8" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/url-parser" : "^4.2.5" ,
"@smithy/util-base64" : "^4.3.0" ,
"@smithy/util-body-length-browser" : "^4.2.0" ,
"@smithy/util-body-length-node" : "^4.2.1" ,
"@smithy/util-defaults-mode-browser" : "^4.3.11" ,
"@smithy/util-defaults-mode-node" : "^4.2.14" ,
"@smithy/util-endpoints" : "^3.2.5" ,
"@smithy/util-middleware" : "^4.2.5" ,
"@smithy/util-retry" : "^4.2.5" ,
"@smithy/util-utf8" : "^4.2.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/core" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/core/-/core-3.943.0.tgz" ,
"integrity" : "sha512-8CBy2hI9ABF7RBVQuY1bgf/ue+WPmM/hl0adrXFlhnhkaQP0tFY5zhiy1Y+n7V+5f3/ORoHBmCCQmcHDDYJqJQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-sdk/types" : "3.936.0" ,
"@aws-sdk/xml-builder" : "3.930.0" ,
"@smithy/core" : "^3.18.5" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/signature-v4" : "^5.3.5" ,
"@smithy/smithy-client" : "^4.9.8" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-base64" : "^4.3.0" ,
"@smithy/util-middleware" : "^4.2.5" ,
"@smithy/util-utf8" : "^4.2.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-cognito-identity" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-cognito-identity/-/credential-provider-cognito-identity-3.943.0.tgz" ,
"integrity" : "sha512-jZJ0uHjNlhfjx2ZX7YVYnh1wfSkLAvQmecGCSl9C6LJRNXy4uWFPbGjPqcA0tWp0WWIsUYhqjasgvCOMZIY8nw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-sdk/client-cognito-identity" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-env" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.943.0.tgz" ,
"integrity" : "sha512-WnS5w9fK9CTuoZRVSIHLOMcI63oODg9qd1vXMYb7QGLGlfwUm4aG3hdu7i9XvYrpkQfE3dzwWLtXF4ZBuL1Tew==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-http" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.943.0.tgz" ,
"integrity" : "sha512-SA8bUcYDEACdhnhLpZNnWusBpdmj4Vl67Vxp3Zke7SvoWSYbuxa+tiDiC+c92Z4Yq6xNOuLPW912ZPb9/NsSkA==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/fetch-http-handler" : "^5.3.6" ,
"@smithy/node-http-handler" : "^4.4.5" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/smithy-client" : "^4.9.8" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-stream" : "^4.5.6" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-ini" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.943.0.tgz" ,
"integrity" : "sha512-BcLDb8l4oVW+NkuqXMlO7TnM6lBOWW318ylf4FRED/ply5eaGxkQYqdGvHSqGSN5Rb3vr5Ek0xpzSjeYD7C8Kw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/credential-provider-env" : "3.943.0" ,
"@aws-sdk/credential-provider-http" : "3.943.0" ,
"@aws-sdk/credential-provider-login" : "3.943.0" ,
"@aws-sdk/credential-provider-process" : "3.943.0" ,
"@aws-sdk/credential-provider-sso" : "3.943.0" ,
"@aws-sdk/credential-provider-web-identity" : "3.943.0" ,
"@aws-sdk/nested-clients" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/credential-provider-imds" : "^4.2.5" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-login" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.943.0.tgz" ,
"integrity" : "sha512-9iCOVkiRW+evxiJE94RqosCwRrzptAVPhRhGWv4osfYDhjNAvUMyrnZl3T1bjqCoKNcETRKEZIU3dqYHnUkcwQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/nested-clients" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-node" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.943.0.tgz" ,
"integrity" : "sha512-14eddaH/gjCWoLSAELVrFOQNyswUYwWphIt+PdsJ/FqVfP4ay2HsiZVEIYbQtmrKHaoLJhiZKwBQRjcqJDZG0w==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-sdk/credential-provider-env" : "3.943.0" ,
"@aws-sdk/credential-provider-http" : "3.943.0" ,
"@aws-sdk/credential-provider-ini" : "3.943.0" ,
"@aws-sdk/credential-provider-process" : "3.943.0" ,
"@aws-sdk/credential-provider-sso" : "3.943.0" ,
"@aws-sdk/credential-provider-web-identity" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/credential-provider-imds" : "^4.2.5" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-process" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.943.0.tgz" ,
"integrity" : "sha512-GIY/vUkthL33AdjOJ8r9vOosKf/3X+X7LIiACzGxvZZrtoOiRq0LADppdiKIB48vTL63VvW+eRIOFAxE6UDekw==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-sso" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.943.0.tgz" ,
"integrity" : "sha512-1c5G11syUrru3D9OO6Uk+ul5e2lX1adb+7zQNyluNaLPXP6Dina6Sy6DFGRLu7tM8+M7luYmbS3w63rpYpaL+A==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/client-sso" : "3.943.0" ,
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/token-providers" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-provider-web-identity" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.943.0.tgz" ,
"integrity" : "sha512-VtyGKHxICSb4kKGuaqotxso8JVM8RjCS3UYdIMOxUt9TaFE/CZIfZKtjTr+IJ7M0P7t36wuSUb/jRLyNmGzUUA==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/nested-clients" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/credential-providers" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/credential-providers/-/credential-providers-3.943.0.tgz" ,
"integrity" : "sha512-uZurSNsS01ehhrSwEPwcKdqp9lmd/x9q++BYO351bXyjSj1LzA/2lfUIxI2tCz/wAjJWOdnnlUdJj6P9I1uNvw==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/client-cognito-identity" : "3.943.0" ,
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/credential-provider-cognito-identity" : "3.943.0" ,
"@aws-sdk/credential-provider-env" : "3.943.0" ,
"@aws-sdk/credential-provider-http" : "3.943.0" ,
"@aws-sdk/credential-provider-ini" : "3.943.0" ,
"@aws-sdk/credential-provider-login" : "3.943.0" ,
"@aws-sdk/credential-provider-node" : "3.943.0" ,
"@aws-sdk/credential-provider-process" : "3.943.0" ,
"@aws-sdk/credential-provider-sso" : "3.943.0" ,
"@aws-sdk/credential-provider-web-identity" : "3.943.0" ,
"@aws-sdk/nested-clients" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/config-resolver" : "^4.4.3" ,
"@smithy/core" : "^3.18.5" ,
"@smithy/credential-provider-imds" : "^4.2.5" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/middleware-host-header" : {
"version" : "3.936.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.936.0.tgz" ,
"integrity" : "sha512-tAaObaAnsP1XnLGndfkGWFuzrJYuk9W0b/nLvol66t8FZExIAf/WdkT2NNAWOYxljVs++oHnyHBCxIlaHrzSiw==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/types" : "3.936.0" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/middleware-logger" : {
"version" : "3.936.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.936.0.tgz" ,
"integrity" : "sha512-aPSJ12d3a3Ea5nyEnLbijCaaYJT2QjQ9iW+zGh5QcZYXmOGWbKVyPSxmVOboZQG+c1M8t6d2O7tqrwzIq8L8qw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-sdk/types" : "3.936.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
2025-08-19 01:17:17 +00:00
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/middleware-recursion-detection" : {
"version" : "3.936.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.936.0.tgz" ,
"integrity" : "sha512-l4aGbHpXM45YNgXggIux1HgsCVAvvBoqHPkqLnqMl9QVapfuSTjJHfDYDsx1Xxct6/m7qSMUzanBALhiaGO2fA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-sdk/types" : "3.936.0" ,
"@aws/lambda-invoke-store" : "^0.2.0" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/middleware-user-agent" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.943.0.tgz" ,
"integrity" : "sha512-956n4kVEwFNXndXfhSAN5wO+KRgqiWEEY+ECwLvxmmO8uQ0NWOa8l6l65nTtyuiWzMX81c9BvlyNR5EgUeeUvA==" ,
"license" : "Apache-2.0" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@aws-sdk/util-endpoints" : "3.936.0" ,
"@smithy/core" : "^3.18.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/nested-clients" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.943.0.tgz" ,
"integrity" : "sha512-anFtB0p2FPuyUnbOULwGmKYqYKSq1M73c9uZ08jR/NCq6Trjq9cuF5TFTeHwjJyPRb4wMf2Qk859oiVfFqnQiw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-crypto/sha256-browser" : "5.2.0" ,
"@aws-crypto/sha256-js" : "5.2.0" ,
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/middleware-host-header" : "3.936.0" ,
"@aws-sdk/middleware-logger" : "3.936.0" ,
"@aws-sdk/middleware-recursion-detection" : "3.936.0" ,
"@aws-sdk/middleware-user-agent" : "3.943.0" ,
"@aws-sdk/region-config-resolver" : "3.936.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@aws-sdk/util-endpoints" : "3.936.0" ,
"@aws-sdk/util-user-agent-browser" : "3.936.0" ,
"@aws-sdk/util-user-agent-node" : "3.943.0" ,
"@smithy/config-resolver" : "^4.4.3" ,
"@smithy/core" : "^3.18.5" ,
"@smithy/fetch-http-handler" : "^5.3.6" ,
"@smithy/hash-node" : "^4.2.5" ,
"@smithy/invalid-dependency" : "^4.2.5" ,
"@smithy/middleware-content-length" : "^4.2.5" ,
"@smithy/middleware-endpoint" : "^4.3.12" ,
"@smithy/middleware-retry" : "^4.4.12" ,
"@smithy/middleware-serde" : "^4.2.6" ,
"@smithy/middleware-stack" : "^4.2.5" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/node-http-handler" : "^4.4.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/smithy-client" : "^4.9.8" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/url-parser" : "^4.2.5" ,
"@smithy/util-base64" : "^4.3.0" ,
"@smithy/util-body-length-browser" : "^4.2.0" ,
"@smithy/util-body-length-node" : "^4.2.1" ,
"@smithy/util-defaults-mode-browser" : "^4.3.11" ,
"@smithy/util-defaults-mode-node" : "^4.2.14" ,
"@smithy/util-endpoints" : "^3.2.5" ,
"@smithy/util-middleware" : "^4.2.5" ,
"@smithy/util-retry" : "^4.2.5" ,
"@smithy/util-utf8" : "^4.2.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/region-config-resolver" : {
"version" : "3.936.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.936.0.tgz" ,
"integrity" : "sha512-wOKhzzWsshXGduxO4pqSiNyL9oUtk4BEvjWm9aaq6Hmfdoydq6v6t0rAGHWPjFwy9z2haovGRi3C8IxdMB4muw==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/types" : "3.936.0" ,
"@smithy/config-resolver" : "^4.4.3" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/token-providers" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.943.0.tgz" ,
"integrity" : "sha512-cRKyIzwfkS+XztXIFPoWORuaxlIswP+a83BJzelX4S1gUZ7FcXB4+lj9Jxjn8SbQhR4TPU3Owbpu+S7pd6IRbQ==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/core" : "3.943.0" ,
"@aws-sdk/nested-clients" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/types" : {
"version" : "3.936.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/types/-/types-3.936.0.tgz" ,
"integrity" : "sha512-uz0/VlMd2pP5MepdrHizd+T+OKfyK4r3OA9JI+L/lPKg0YFQosdJNCKisr6o70E3dh8iMpFYxF1UN/4uZsyARg==" ,
"license" : "Apache-2.0" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/util-endpoints" : {
"version" : "3.936.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.936.0.tgz" ,
"integrity" : "sha512-0Zx3Ntdpu+z9Wlm7JKUBOzS9EunwKAb4KdGUQQxDqh5Lc3ta5uBoub+FgmVuzwnmBu9U1Os8UuwVTH0Lgu+P5w==" ,
"license" : "Apache-2.0" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/types" : "3.936.0" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/url-parser" : "^4.2.5" ,
"@smithy/util-endpoints" : "^3.2.5" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/util-locate-window" : {
"version" : "3.893.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.893.0.tgz" ,
"integrity" : "sha512-T89pFfgat6c8nMmpI8eKjBcDcgJq36+m9oiXbcUzeU55MP9ZuGgBomGjGnHaEyF36jenW9gmg3NfZDm0AO2XPg==" ,
2025-11-29 12:39:35 +08:00
"license" : "Apache-2.0" ,
2025-12-05 09:19:26 +09:00
"dependencies" : {
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/util-user-agent-browser" : {
"version" : "3.936.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/util-user-agent-browser/-/util-user-agent-browser-3.936.0.tgz" ,
"integrity" : "sha512-eZ/XF6NxMtu+iCma58GRNRxSq4lHo6zHQLOZRIeL/ghqYJirqHdenMOwrzPettj60KWlv827RVebP9oNVrwZbw==" ,
2025-11-29 12:39:35 +08:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/types" : "3.936.0" ,
"@smithy/types" : "^4.9.0" ,
"bowser" : "^2.11.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/util-user-agent-node" : {
"version" : "3.943.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.943.0.tgz" ,
"integrity" : "sha512-gn+ILprVRrgAgTIBk2TDsJLRClzIOdStQFeFTcN0qpL8Z4GBCqMFhw7O7X+MM55Stt5s4jAauQ/VvoqmCADnQg==" ,
2025-11-29 12:39:35 +08:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@aws-sdk/middleware-user-agent" : "3.943.0" ,
"@aws-sdk/types" : "3.936.0" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
} ,
"peerDependencies" : {
"aws-crt" : ">=1.0.0"
} ,
"peerDependenciesMeta" : {
"aws-crt" : {
"optional" : true
}
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws-sdk/xml-builder" : {
"version" : "3.930.0" ,
"resolved" : "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.930.0.tgz" ,
"integrity" : "sha512-YIfkD17GocxdmlUVc3ia52QhcWuRIUJonbF8A2CYfcWNV3HzvAqpcPeC0bYUhkK+8e8YO1ARnLKZQE0TlwzorA==" ,
2025-11-29 12:39:35 +08:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/types" : "^4.9.0" ,
"fast-xml-parser" : "5.2.5" ,
"tslib" : "^2.6.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=18.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@aws/lambda-invoke-store" : {
"version" : "0.2.2" ,
"resolved" : "https://registry.npmjs.org/@aws/lambda-invoke-store/-/lambda-invoke-store-0.2.2.tgz" ,
"integrity" : "sha512-C0NBLsIqzDIae8HFw9YIrIBsbc0xTiOtt7fAukGPnqQ/+zZNaq+4jhuccltK0QuWHBnNm/a6kLIRA6GFiM10eg==" ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@babel/code-frame" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz" ,
"integrity" : "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@babel/helper-validator-identifier" : "^7.27.1" ,
"js-tokens" : "^4.0.0" ,
"picocolors" : "^1.1.1"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=6.9.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/compat-data" : {
"version" : "7.28.5" ,
"resolved" : "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz" ,
"integrity" : "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/core" : {
"version" : "7.28.5" ,
"resolved" : "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz" ,
"integrity" : "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/code-frame" : "^7.27.1" ,
"@babel/generator" : "^7.28.5" ,
"@babel/helper-compilation-targets" : "^7.27.2" ,
"@babel/helper-module-transforms" : "^7.28.3" ,
"@babel/helpers" : "^7.28.4" ,
"@babel/parser" : "^7.28.5" ,
"@babel/template" : "^7.27.2" ,
"@babel/traverse" : "^7.28.5" ,
"@babel/types" : "^7.28.5" ,
"@jridgewell/remapping" : "^2.3.5" ,
"convert-source-map" : "^2.0.0" ,
"debug" : "^4.1.0" ,
"gensync" : "^1.0.0-beta.2" ,
"json5" : "^2.2.3" ,
"semver" : "^6.3.1"
} ,
"engines" : {
"node" : ">=6.9.0"
2025-11-29 12:39:35 +08:00
} ,
"funding" : {
2025-12-05 09:19:26 +09:00
"type" : "opencollective" ,
"url" : "https://opencollective.com/babel"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/core/node_modules/semver" : {
"version" : "6.3.1" ,
"resolved" : "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" ,
"integrity" : "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-05 09:19:26 +09:00
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/generator" : {
"version" : "7.28.5" ,
"resolved" : "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz" ,
"integrity" : "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-05 09:19:26 +09:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@babel/parser" : "^7.28.5" ,
"@babel/types" : "^7.28.5" ,
"@jridgewell/gen-mapping" : "^0.3.12" ,
"@jridgewell/trace-mapping" : "^0.3.28" ,
"jsesc" : "^3.0.2"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=6.9.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-compilation-targets" : {
"version" : "7.27.2" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz" ,
"integrity" : "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@babel/compat-data" : "^7.27.2" ,
"@babel/helper-validator-option" : "^7.27.1" ,
"browserslist" : "^4.24.0" ,
"lru-cache" : "^5.1.1" ,
"semver" : "^6.3.1"
} ,
"engines" : {
"node" : ">=6.9.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-compilation-targets/node_modules/lru-cache" : {
"version" : "5.1.1" ,
"resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" ,
"integrity" : "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" ,
"dev" : true ,
"license" : "ISC" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"yallist" : "^3.0.2"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-compilation-targets/node_modules/semver" : {
"version" : "6.3.1" ,
"resolved" : "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" ,
"integrity" : "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-globals" : {
"version" : "7.28.0" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz" ,
"integrity" : "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-05 09:19:26 +09:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=6.9.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-module-imports" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz" ,
"integrity" : "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-05 09:19:26 +09:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@babel/traverse" : "^7.27.1" ,
"@babel/types" : "^7.27.1"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=6.9.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-module-transforms" : {
"version" : "7.28.3" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz" ,
"integrity" : "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-05 09:19:26 +09:00
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-module-imports" : "^7.27.1" ,
"@babel/helper-validator-identifier" : "^7.27.1" ,
"@babel/traverse" : "^7.28.3"
} ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=6.9.0"
2025-11-29 12:39:35 +08:00
} ,
2025-12-05 09:19:26 +09:00
"peerDependencies" : {
"@babel/core" : "^7.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-string-parser" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz" ,
"integrity" : "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-05 09:19:26 +09:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=6.9.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-validator-identifier" : {
"version" : "7.28.5" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz" ,
"integrity" : "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==" ,
"dev" : true ,
2025-12-04 13:48:30 +09:00
"license" : "MIT" ,
"engines" : {
2025-12-05 09:19:26 +09:00
"node" : ">=6.9.0"
2025-12-04 13:48:30 +09:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@babel/helper-validator-option" : {
"version" : "7.27.1" ,
"resolved" : "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz" ,
"integrity" : "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/helpers" : {
"version" : "7.28.4" ,
"resolved" : "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz" ,
"integrity" : "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/template" : "^7.27.2" ,
"@babel/types" : "^7.28.4"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/parser" : {
"version" : "7.28.5" ,
"resolved" : "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz" ,
"integrity" : "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/types" : "^7.28.5"
} ,
"bin" : {
"parser" : "bin/babel-parser.js"
} ,
"engines" : {
"node" : ">=6.0.0"
}
} ,
"node_modules/@babel/template" : {
"version" : "7.27.2" ,
"resolved" : "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz" ,
"integrity" : "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/code-frame" : "^7.27.1" ,
"@babel/parser" : "^7.27.2" ,
"@babel/types" : "^7.27.1"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/traverse" : {
"version" : "7.28.5" ,
"resolved" : "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz" ,
"integrity" : "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/code-frame" : "^7.27.1" ,
"@babel/generator" : "^7.28.5" ,
"@babel/helper-globals" : "^7.28.0" ,
"@babel/parser" : "^7.28.5" ,
"@babel/template" : "^7.27.2" ,
"@babel/types" : "^7.28.5" ,
"debug" : "^4.3.1"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
"node_modules/@babel/types" : {
"version" : "7.28.5" ,
"resolved" : "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz" ,
"integrity" : "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/helper-string-parser" : "^7.27.1" ,
"@babel/helper-validator-identifier" : "^7.28.5"
} ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/@biomejs/biome" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/biome/-/biome-2.3.10.tgz" ,
"integrity" : "sha512-/uWSUd1MHX2fjqNLHNL6zLYWBbrJeG412/8H7ESuK8ewoRoMPUgHDebqKrPTx/5n6f17Xzqc9hdg3MEqA5hXnQ==" ,
2025-12-06 12:46:40 +09:00
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"bin" : {
"biome" : "bin/biome"
} ,
"engines" : {
"node" : ">=14.21.3"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/biome"
} ,
"optionalDependencies" : {
2025-12-21 00:32:51 +09:00
"@biomejs/cli-darwin-arm64" : "2.3.10" ,
"@biomejs/cli-darwin-x64" : "2.3.10" ,
"@biomejs/cli-linux-arm64" : "2.3.10" ,
"@biomejs/cli-linux-arm64-musl" : "2.3.10" ,
"@biomejs/cli-linux-x64" : "2.3.10" ,
"@biomejs/cli-linux-x64-musl" : "2.3.10" ,
"@biomejs/cli-win32-arm64" : "2.3.10" ,
"@biomejs/cli-win32-x64" : "2.3.10"
2025-12-06 12:46:40 +09:00
}
} ,
"node_modules/@biomejs/cli-darwin-arm64" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-2.3.10.tgz" ,
"integrity" : "sha512-M6xUjtCVnNGFfK7HMNKa593nb7fwNm43fq1Mt71kpLpb+4mE7odO8W/oWVDyBVO4ackhresy1ZYO7OJcVo/B7w==" ,
2025-12-06 12:46:40 +09:00
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">=14.21.3"
}
} ,
"node_modules/@biomejs/cli-darwin-x64" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-2.3.10.tgz" ,
"integrity" : "sha512-Vae7+V6t/Avr8tVbFNjnFSTKZogZHFYl7MMH62P/J1kZtr0tyRQ9Fe0onjqjS2Ek9lmNLmZc/VR5uSekh+p1fg==" ,
2025-12-06 12:46:40 +09:00
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">=14.21.3"
}
} ,
"node_modules/@biomejs/cli-linux-arm64" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-2.3.10.tgz" ,
"integrity" : "sha512-hhPw2V3/EpHKsileVOFynuWiKRgFEV48cLe0eA+G2wO4SzlwEhLEB9LhlSrVeu2mtSn205W283LkX7Fh48CaxA==" ,
2025-12-06 12:46:40 +09:00
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=14.21.3"
}
} ,
"node_modules/@biomejs/cli-linux-arm64-musl" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-2.3.10.tgz" ,
"integrity" : "sha512-B9DszIHkuKtOH2IFeeVkQmSMVUjss9KtHaNXquYYWCjH8IstNgXgx5B0aSBQNr6mn4RcKKRQZXn9Zu1rM3O0/A==" ,
2025-12-06 12:46:40 +09:00
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=14.21.3"
}
} ,
"node_modules/@biomejs/cli-linux-x64" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-2.3.10.tgz" ,
"integrity" : "sha512-wwAkWD1MR95u+J4LkWP74/vGz+tRrIQvr8kfMMJY8KOQ8+HMVleREOcPYsQX82S7uueco60L58Wc6M1I9WA9Dw==" ,
2025-12-06 12:46:40 +09:00
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=14.21.3"
}
} ,
"node_modules/@biomejs/cli-linux-x64-musl" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-2.3.10.tgz" ,
"integrity" : "sha512-QTfHZQh62SDFdYc2nfmZFuTm5yYb4eO1zwfB+90YxUumRCR171tS1GoTX5OD0wrv4UsziMPmrePMtkTnNyYG3g==" ,
2025-12-06 12:46:40 +09:00
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=14.21.3"
}
} ,
"node_modules/@biomejs/cli-win32-arm64" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-2.3.10.tgz" ,
"integrity" : "sha512-o7lYc9n+CfRbHvkjPhm8s9FgbKdYZu5HCcGVMItLjz93EhgJ8AM44W+QckDqLA9MKDNFrR8nPbO4b73VC5kGGQ==" ,
2025-12-06 12:46:40 +09:00
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">=14.21.3"
}
} ,
"node_modules/@biomejs/cli-win32-x64" : {
2025-12-21 00:32:51 +09:00
"version" : "2.3.10" ,
"resolved" : "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-2.3.10.tgz" ,
"integrity" : "sha512-pHEFgq7dUEsKnqG9mx9bXihxGI49X+ar+UBrEIj3Wqj3UCZp1rNgV+OoyjFgcXsjCWpuEAF4VJdkZr3TrWdCbQ==" ,
2025-12-06 12:46:40 +09:00
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT OR Apache-2.0" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">=14.21.3"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@csstools/color-helpers" : {
"version" : "5.0.2" ,
"resolved" : "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-5.0.2.tgz" ,
"integrity" : "sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/csstools"
} ,
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/csstools"
}
] ,
"license" : "MIT-0" ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@csstools/css-calc" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-2.1.2.tgz" ,
"integrity" : "sha512-TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/csstools"
} ,
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/csstools"
}
] ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"@csstools/css-parser-algorithms" : "^3.0.4" ,
"@csstools/css-tokenizer" : "^3.0.3"
}
} ,
"node_modules/@csstools/css-color-parser" : {
"version" : "3.0.8" ,
"resolved" : "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-3.0.8.tgz" ,
"integrity" : "sha512-pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/csstools"
} ,
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/csstools"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"@csstools/color-helpers" : "^5.0.2" ,
"@csstools/css-calc" : "^2.1.2"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"@csstools/css-parser-algorithms" : "^3.0.4" ,
"@csstools/css-tokenizer" : "^3.0.3"
}
} ,
"node_modules/@csstools/css-parser-algorithms" : {
"version" : "3.0.4" ,
"resolved" : "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.4.tgz" ,
"integrity" : "sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/csstools"
} ,
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/csstools"
}
] ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"@csstools/css-tokenizer" : "^3.0.3"
}
} ,
"node_modules/@csstools/css-tokenizer" : {
"version" : "3.0.3" ,
"resolved" : "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.3.tgz" ,
"integrity" : "sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/csstools"
} ,
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/csstools"
}
] ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@develar/schema-utils" : {
"version" : "2.6.5" ,
"resolved" : "https://registry.npmmirror.com/@develar/schema-utils/-/schema-utils-2.6.5.tgz" ,
"integrity" : "sha512-0cp4PsWQ/9avqTVMCtZ+GirikIA36ikvjtHweU4/j8yLtgObI0+JUPhYFScgwlteveGB1rt3Cm8UhN04XayDig==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ajv" : "^6.12.0" ,
"ajv-keywords" : "^3.4.1"
} ,
"engines" : {
"node" : ">= 8.9.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/webpack"
}
} ,
"node_modules/@electron/asar" : {
"version" : "3.2.18" ,
"resolved" : "https://registry.npmmirror.com/@electron/asar/-/asar-3.2.18.tgz" ,
"integrity" : "sha512-2XyvMe3N3Nrs8cV39IKELRHTYUWFKrmqqSY1U+GMlc0jvqjIVnoxhNd2H4JolWQncbJi1DCvb5TNxZuI2fEjWg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"commander" : "^5.0.0" ,
"glob" : "^7.1.6" ,
"minimatch" : "^3.0.4"
} ,
"bin" : {
"asar" : "bin/asar.js"
} ,
"engines" : {
"node" : ">=10.12.0"
}
} ,
"node_modules/@electron/asar/node_modules/commander" : {
"version" : "5.1.0" ,
"resolved" : "https://registry.npmmirror.com/commander/-/commander-5.1.0.tgz" ,
"integrity" : "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 6"
}
} ,
"node_modules/@electron/fuses" : {
"version" : "1.8.0" ,
"resolved" : "https://registry.npmmirror.com/@electron/fuses/-/fuses-1.8.0.tgz" ,
"integrity" : "sha512-zx0EIq78WlY/lBb1uXlziZmDZI4ubcCXIMJ4uGjXzZW0nS19TjSPeXPAjzzTmKQlJUZm0SbmZhPKP7tuQ1SsEw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"chalk" : "^4.1.1" ,
"fs-extra" : "^9.0.1" ,
"minimist" : "^1.2.5"
} ,
"bin" : {
"electron-fuses" : "dist/bin.js"
}
} ,
"node_modules/@electron/fuses/node_modules/fs-extra" : {
"version" : "9.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-9.1.0.tgz" ,
"integrity" : "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"at-least-node" : "^1.0.0" ,
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/@electron/fuses/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/@electron/fuses/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/@electron/get" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmmirror.com/@electron/get/-/get-2.0.3.tgz" ,
"integrity" : "sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "^4.1.1" ,
"env-paths" : "^2.2.0" ,
"fs-extra" : "^8.1.0" ,
"got" : "^11.8.5" ,
"progress" : "^2.0.3" ,
"semver" : "^6.2.0" ,
"sumchecker" : "^3.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"optionalDependencies" : {
"global-agent" : "^3.0.0"
}
} ,
"node_modules/@electron/get/node_modules/semver" : {
"version" : "6.3.1" ,
"resolved" : "https://registry.npmmirror.com/semver/-/semver-6.3.1.tgz" ,
"integrity" : "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
}
} ,
"node_modules/@electron/node-gyp" : {
"version" : "10.2.0-electron.1" ,
"resolved" : "git+ssh://git@github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2" ,
"integrity" : "sha512-CrYo6TntjpoMO1SHjl5Pa/JoUsECNqNdB7Kx49WLQpWzPw53eEITJ2Hs9fh/ryUYDn4pxZz11StaBYBrLFJdqg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"env-paths" : "^2.2.0" ,
"exponential-backoff" : "^3.1.1" ,
"glob" : "^8.1.0" ,
"graceful-fs" : "^4.2.6" ,
"make-fetch-happen" : "^10.2.1" ,
"nopt" : "^6.0.0" ,
"proc-log" : "^2.0.1" ,
"semver" : "^7.3.5" ,
"tar" : "^6.2.1" ,
"which" : "^2.0.2"
} ,
"bin" : {
"node-gyp" : "bin/node-gyp.js"
} ,
"engines" : {
"node" : ">=12.13.0"
}
} ,
"node_modules/@electron/node-gyp/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0"
}
} ,
"node_modules/@electron/node-gyp/node_modules/glob" : {
"version" : "8.1.0" ,
"resolved" : "https://registry.npmmirror.com/glob/-/glob-8.1.0.tgz" ,
"integrity" : "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" ,
"deprecated" : "Glob versions prior to v9 are no longer supported" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"fs.realpath" : "^1.0.0" ,
"inflight" : "^1.0.4" ,
"inherits" : "2" ,
"minimatch" : "^5.0.1" ,
"once" : "^1.3.0"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/@electron/node-gyp/node_modules/minimatch" : {
"version" : "5.1.6" ,
"resolved" : "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz" ,
"integrity" : "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"brace-expansion" : "^2.0.1"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/@electron/notarize" : {
"version" : "2.5.0" ,
"resolved" : "https://registry.npmmirror.com/@electron/notarize/-/notarize-2.5.0.tgz" ,
"integrity" : "sha512-jNT8nwH1f9X5GEITXaQ8IF/KdskvIkOFfB2CvwumsveVidzpSc+mvhhTMdAGSYF3O+Nq49lJ7y+ssODRXu06+A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "^4.1.1" ,
"fs-extra" : "^9.0.1" ,
"promise-retry" : "^2.0.1"
} ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/@electron/notarize/node_modules/fs-extra" : {
"version" : "9.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-9.1.0.tgz" ,
"integrity" : "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"at-least-node" : "^1.0.0" ,
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/@electron/notarize/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/@electron/notarize/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/@electron/osx-sign" : {
"version" : "1.3.1" ,
"resolved" : "https://registry.npmmirror.com/@electron/osx-sign/-/osx-sign-1.3.1.tgz" ,
"integrity" : "sha512-BAfviURMHpmb1Yb50YbCxnOY0wfwaLXH5KJ4+80zS0gUkzDX3ec23naTlEqKsN+PwYn+a1cCzM7BJ4Wcd3sGzw==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"compare-version" : "^0.1.2" ,
"debug" : "^4.3.4" ,
"fs-extra" : "^10.0.0" ,
"isbinaryfile" : "^4.0.8" ,
"minimist" : "^1.2.6" ,
"plist" : "^3.0.5"
} ,
"bin" : {
"electron-osx-flat" : "bin/electron-osx-flat.js" ,
"electron-osx-sign" : "bin/electron-osx-sign.js"
} ,
"engines" : {
"node" : ">=12.0.0"
}
} ,
"node_modules/@electron/osx-sign/node_modules/fs-extra" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" ,
"integrity" : "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/@electron/osx-sign/node_modules/isbinaryfile" : {
"version" : "4.0.10" ,
"resolved" : "https://registry.npmmirror.com/isbinaryfile/-/isbinaryfile-4.0.10.tgz" ,
"integrity" : "sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 8.0.0"
} ,
"funding" : {
"url" : "https://github.com/sponsors/gjtorikian/"
}
} ,
"node_modules/@electron/osx-sign/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/@electron/osx-sign/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/@electron/rebuild" : {
"version" : "3.7.0" ,
"resolved" : "https://registry.npmmirror.com/@electron/rebuild/-/rebuild-3.7.0.tgz" ,
"integrity" : "sha512-VW++CNSlZwMYP7MyXEbrKjpzEwhB5kDNbzGtiPEjwYysqyTCF+YbNJ210Dj3AjWsGSV4iEEwNkmJN9yGZmVvmw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@electron/node-gyp" : "git+https://github.com/electron/node-gyp.git#06b29aafb7708acef8b3669835c8a7857ebc92d2" ,
"@malept/cross-spawn-promise" : "^2.0.0" ,
"chalk" : "^4.0.0" ,
"debug" : "^4.1.1" ,
"detect-libc" : "^2.0.1" ,
"fs-extra" : "^10.0.0" ,
"got" : "^11.7.0" ,
"node-abi" : "^3.45.0" ,
"node-api-version" : "^0.2.0" ,
"ora" : "^5.1.0" ,
"read-binary-file-arch" : "^1.0.6" ,
"semver" : "^7.3.5" ,
"tar" : "^6.0.5" ,
"yargs" : "^17.0.1"
} ,
"bin" : {
"electron-rebuild" : "lib/cli.js"
} ,
"engines" : {
"node" : ">=12.13.0"
}
} ,
"node_modules/@electron/rebuild/node_modules/fs-extra" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" ,
"integrity" : "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/@electron/rebuild/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/@electron/rebuild/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/@electron/universal" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/@electron/universal/-/universal-2.0.1.tgz" ,
"integrity" : "sha512-fKpv9kg4SPmt+hY7SVBnIYULE9QJl8L3sCfcBsnqbJwwBwAeTLokJ9TRt9y7bK0JAzIW2y78TVVjvnQEms/yyA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@electron/asar" : "^3.2.7" ,
"@malept/cross-spawn-promise" : "^2.0.0" ,
"debug" : "^4.3.1" ,
"dir-compare" : "^4.2.0" ,
"fs-extra" : "^11.1.1" ,
"minimatch" : "^9.0.3" ,
"plist" : "^3.1.0"
} ,
"engines" : {
"node" : ">=16.4"
}
} ,
"node_modules/@electron/universal/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0"
}
} ,
"node_modules/@electron/universal/node_modules/fs-extra" : {
"version" : "11.3.3" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.3.3.tgz" ,
"integrity" : "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=14.14"
}
} ,
"node_modules/@electron/universal/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/@electron/universal/node_modules/minimatch" : {
"version" : "9.0.5" ,
"resolved" : "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz" ,
"integrity" : "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"brace-expansion" : "^2.0.1"
} ,
"engines" : {
"node" : ">=16 || 14 >=14.17"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/@electron/universal/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/@electron/windows-sign" : {
"version" : "1.2.2" ,
"resolved" : "https://registry.npmmirror.com/@electron/windows-sign/-/windows-sign-1.2.2.tgz" ,
"integrity" : "sha512-dfZeox66AvdPtb2lD8OsIIQh12Tp0GNCRUDfBHIKGpbmopZto2/A8nSpYYLoedPIHpqkeblZ/k8OV0Gy7PYuyQ==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"optional" : true ,
"peer" : true ,
"dependencies" : {
"cross-dirname" : "^0.1.0" ,
"debug" : "^4.3.4" ,
"fs-extra" : "^11.1.1" ,
"minimist" : "^1.2.8" ,
"postject" : "^1.0.0-alpha.6"
} ,
"bin" : {
"electron-windows-sign" : "bin/electron-windows-sign.js"
} ,
"engines" : {
"node" : ">=14.14"
}
} ,
"node_modules/@electron/windows-sign/node_modules/fs-extra" : {
"version" : "11.3.3" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-11.3.3.tgz" ,
"integrity" : "sha512-VWSRii4t0AFm6ixFFmLLx1t7wS1gh+ckoa84aOeapGum0h+EZd1EhEumSB+ZdDLnEPuucsVB9oB7cxJHap6Afg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"peer" : true ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=14.14"
}
} ,
"node_modules/@electron/windows-sign/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"peer" : true ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/@electron/windows-sign/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"peer" : true ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@emnapi/core" : {
"version" : "1.7.1" ,
"resolved" : "https://registry.npmjs.org/@emnapi/core/-/core-1.7.1.tgz" ,
"integrity" : "sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
2025-12-22 09:18:21 +08:00
"dependencies" : {
"@emnapi/wasi-threads" : "1.1.0" ,
"tslib" : "^2.4.0"
}
} ,
"node_modules/@emnapi/runtime" : {
"version" : "1.7.1" ,
"resolved" : "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.7.1.tgz" ,
"integrity" : "sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==" ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"tslib" : "^2.4.0"
}
} ,
"node_modules/@emnapi/wasi-threads" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@emnapi/wasi-threads/-/wasi-threads-1.1.0.tgz" ,
"integrity" : "sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"tslib" : "^2.4.0"
}
} ,
"node_modules/@epic-web/invariant" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/@epic-web/invariant/-/invariant-1.0.0.tgz" ,
"integrity" : "sha512-lrTPqgvfFQtR/eY/qkIzp98OGdNJu0m5ji3q/nJI8v3SXkRKEnWiOxMmbvcSoAIzv/cGiuvRy57k4suKQSAdwA==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/@esbuild/aix-ppc64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz" ,
"integrity" : "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==" ,
"cpu" : [
"ppc64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"aix"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/android-arm" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.27.2.tgz" ,
"integrity" : "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==" ,
"cpu" : [
"arm"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"android"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/android-arm64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz" ,
"integrity" : "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"android"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/android-x64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.27.2.tgz" ,
"integrity" : "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"android"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/darwin-arm64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz" ,
"integrity" : "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/darwin-x64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz" ,
"integrity" : "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/freebsd-arm64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz" ,
"integrity" : "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"freebsd"
] ,
"engines" : {
"node" : ">=18"
2025-12-05 09:19:26 +09:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@esbuild/freebsd-x64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz" ,
"integrity" : "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
2025-12-05 09:19:26 +09:00
"license" : "MIT" ,
"optional" : true ,
2025-12-22 09:18:21 +08:00
"os" : [
"freebsd"
] ,
"engines" : {
"node" : ">=18"
2025-12-05 09:19:26 +09:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@esbuild/linux-arm" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz" ,
"integrity" : "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==" ,
"cpu" : [
"arm"
] ,
2025-12-05 09:19:26 +09:00
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
2025-12-22 09:18:21 +08:00
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/linux-arm64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz" ,
"integrity" : "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/linux-ia32" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz" ,
"integrity" : "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==" ,
"cpu" : [
"ia32"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/linux-loong64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz" ,
"integrity" : "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==" ,
"cpu" : [
"loong64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/linux-mips64el" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz" ,
"integrity" : "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==" ,
"cpu" : [
"mips64el"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/linux-ppc64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz" ,
"integrity" : "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==" ,
"cpu" : [
"ppc64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/linux-riscv64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz" ,
"integrity" : "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==" ,
"cpu" : [
"riscv64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/linux-s390x" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz" ,
"integrity" : "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==" ,
"cpu" : [
"s390x"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/linux-x64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz" ,
"integrity" : "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/netbsd-arm64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz" ,
"integrity" : "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"netbsd"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/netbsd-x64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz" ,
"integrity" : "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"netbsd"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/openbsd-arm64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz" ,
"integrity" : "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"openbsd"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/openbsd-x64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz" ,
"integrity" : "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"openbsd"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/openharmony-arm64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz" ,
"integrity" : "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"openharmony"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/sunos-x64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz" ,
"integrity" : "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"sunos"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/win32-arm64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz" ,
"integrity" : "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/win32-ia32" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz" ,
"integrity" : "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==" ,
"cpu" : [
"ia32"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@esbuild/win32-x64" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz" ,
"integrity" : "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">=18"
2025-12-05 09:19:26 +09:00
}
} ,
"node_modules/@eslint-community/eslint-utils" : {
"version" : "4.9.0" ,
"resolved" : "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz" ,
"integrity" : "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"eslint-visitor-keys" : "^3.4.3"
} ,
"engines" : {
"node" : "^12.22.0 || ^14.17.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
} ,
"peerDependencies" : {
"eslint" : "^6.0.0 || ^7.0.0 || >=8.0.0"
}
} ,
"node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys" : {
"version" : "3.4.3" ,
"resolved" : "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz" ,
"integrity" : "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : "^12.22.0 || ^14.17.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
}
} ,
"node_modules/@eslint-community/regexpp" : {
"version" : "4.12.2" ,
"resolved" : "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.2.tgz" ,
"integrity" : "sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^12.0.0 || ^14.0.0 || >=16.0.0"
}
} ,
"node_modules/@eslint/config-array" : {
"version" : "0.21.1" ,
"resolved" : "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.1.tgz" ,
"integrity" : "sha512-aw1gNayWpdI/jSYVgzN5pL0cfzU02GT3NBpeT/DXbx1/1x7ZKxFPd9bwrzygx/qiwIQiJ1sw/zD8qY/kRvlGHA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@eslint/object-schema" : "^2.1.7" ,
"debug" : "^4.3.1" ,
"minimatch" : "^3.1.2"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@eslint/config-helpers" : {
"version" : "0.4.2" ,
"resolved" : "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.2.tgz" ,
"integrity" : "sha512-gBrxN88gOIf3R7ja5K9slwNayVcZgK6SOUORm2uBzTeIEfeVaIhOpCtTox3P6R7o2jLFwLFTLnC7kU/RGcYEgw==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@eslint/core" : "^0.17.0"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@eslint/core" : {
"version" : "0.17.0" ,
"resolved" : "https://registry.npmjs.org/@eslint/core/-/core-0.17.0.tgz" ,
"integrity" : "sha512-yL/sLrpmtDaFEiUj1osRP4TI2MDz1AddJL+jZ7KSqvBuliN4xqYY54IfdN8qD8Toa6g1iloph1fxQNkjOxrrpQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@types/json-schema" : "^7.0.15"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@eslint/eslintrc" : {
"version" : "3.3.1" ,
"resolved" : "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz" ,
"integrity" : "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ajv" : "^6.12.4" ,
"debug" : "^4.3.2" ,
"espree" : "^10.0.1" ,
"globals" : "^14.0.0" ,
"ignore" : "^5.2.0" ,
"import-fresh" : "^3.2.1" ,
"js-yaml" : "^4.1.0" ,
"minimatch" : "^3.1.2" ,
"strip-json-comments" : "^3.1.1"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
}
} ,
"node_modules/@eslint/js" : {
"version" : "9.39.1" ,
"resolved" : "https://registry.npmjs.org/@eslint/js/-/js-9.39.1.tgz" ,
"integrity" : "sha512-S26Stp4zCy88tH94QbBv3XCuzRQiZ9yXofEILmglYTh/Ug/a9/umqvgFtYBAo3Lp0nsI/5/qH1CCrbdK3AP1Tw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://eslint.org/donate"
}
} ,
"node_modules/@eslint/object-schema" : {
"version" : "2.1.7" ,
"resolved" : "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.7.tgz" ,
"integrity" : "sha512-VtAOaymWVfZcmZbp6E2mympDIHvyjXs/12LqWYjVw6qjrfF+VK+fyG33kChz3nnK+SU5/NeHOqrTEHS8sXO3OA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@eslint/plugin-kit" : {
"version" : "0.4.1" ,
"resolved" : "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.1.tgz" ,
"integrity" : "sha512-43/qtrDUokr7LJqoF2c3+RInu/t4zfrpYdoSDfYyhg52rwLV6TnOvdG4fXm7IkSB3wErkcmJS9iEhjVtOSEjjA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@eslint/core" : "^0.17.0" ,
"levn" : "^0.4.1"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
}
} ,
"node_modules/@floating-ui/core" : {
"version" : "1.6.9" ,
"resolved" : "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.9.tgz" ,
"integrity" : "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==" ,
"license" : "MIT" ,
"dependencies" : {
"@floating-ui/utils" : "^0.2.9"
}
} ,
"node_modules/@floating-ui/dom" : {
"version" : "1.6.13" ,
"resolved" : "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.13.tgz" ,
"integrity" : "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==" ,
"license" : "MIT" ,
"dependencies" : {
"@floating-ui/core" : "^1.6.0" ,
"@floating-ui/utils" : "^0.2.9"
}
} ,
"node_modules/@floating-ui/react-dom" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.2.tgz" ,
"integrity" : "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==" ,
"license" : "MIT" ,
"dependencies" : {
"@floating-ui/dom" : "^1.0.0"
} ,
"peerDependencies" : {
"react" : ">=16.8.0" ,
"react-dom" : ">=16.8.0"
}
} ,
"node_modules/@floating-ui/utils" : {
"version" : "0.2.9" ,
"resolved" : "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.9.tgz" ,
"integrity" : "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==" ,
"license" : "MIT"
} ,
2025-12-20 20:18:54 +05:30
"node_modules/@formatjs/intl-localematcher" : {
"version" : "0.7.2" ,
"resolved" : "https://registry.npmjs.org/@formatjs/intl-localematcher/-/intl-localematcher-0.7.2.tgz" ,
"integrity" : "sha512-1cpFlw1omNn2/Uz/vAdAyovlh7qS/po7MWipH3JrShT/lVUh2+lbEAWquyh9yRa84fqlLulTt7oysGtjATujZQ==" ,
"license" : "MIT" ,
"dependencies" : {
"tslib" : "^2.8.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@gar/promisify" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmmirror.com/@gar/promisify/-/promisify-1.1.3.tgz" ,
"integrity" : "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/@hapi/address" : {
"version" : "5.1.1" ,
"resolved" : "https://registry.npmmirror.com/@hapi/address/-/address-5.1.1.tgz" ,
"integrity" : "sha512-A+po2d/dVoY7cYajycYI43ZbYMXukuopIsqCjh5QzsBCipDtdofHntljDlpccMjIfTy6UOkg+5KPriwYch2bXA==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"@hapi/hoek" : "^11.0.2"
} ,
"engines" : {
"node" : ">=14.0.0"
}
} ,
"node_modules/@hapi/formula" : {
"version" : "3.0.2" ,
"resolved" : "https://registry.npmmirror.com/@hapi/formula/-/formula-3.0.2.tgz" ,
"integrity" : "sha512-hY5YPNXzw1He7s0iqkRQi+uMGh383CGdyyIGYtB+W5N3KHPXoqychklvHhKCC9M3Xtv0OCs/IHw+r4dcHtBYWw==" ,
"dev" : true ,
"license" : "BSD-3-Clause"
} ,
"node_modules/@hapi/hoek" : {
"version" : "11.0.7" ,
"resolved" : "https://registry.npmmirror.com/@hapi/hoek/-/hoek-11.0.7.tgz" ,
"integrity" : "sha512-HV5undWkKzcB4RZUusqOpcgxOaq6VOAH7zhhIr2g3G8NF/MlFO75SjOr2NfuSx0Mh40+1FqCkagKLJRykUWoFQ==" ,
"dev" : true ,
"license" : "BSD-3-Clause"
} ,
"node_modules/@hapi/pinpoint" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/@hapi/pinpoint/-/pinpoint-2.0.1.tgz" ,
"integrity" : "sha512-EKQmr16tM8s16vTT3cA5L0kZZcTMU5DUOZTuvpnY738m+jyP3JIUj+Mm1xc1rsLkGBQ/gVnfKYPwOmPg1tUR4Q==" ,
"dev" : true ,
"license" : "BSD-3-Clause"
} ,
"node_modules/@hapi/tlds" : {
"version" : "1.1.4" ,
"resolved" : "https://registry.npmmirror.com/@hapi/tlds/-/tlds-1.1.4.tgz" ,
"integrity" : "sha512-Fq+20dxsxLaUn5jSSWrdtSRcIUba2JquuorF9UW1wIJS5cSUwxIsO2GIhaWynPRflvxSzFN+gxKte2HEW1OuoA==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"engines" : {
"node" : ">=14.0.0"
}
} ,
"node_modules/@hapi/topo" : {
"version" : "6.0.2" ,
"resolved" : "https://registry.npmmirror.com/@hapi/topo/-/topo-6.0.2.tgz" ,
"integrity" : "sha512-KR3rD5inZbGMrHmgPxsJ9dbi6zEK+C3ZwUwTa+eMwWLz7oijWUTWD2pMSNNYJAU6Qq+65NkxXjqHr/7LM2Xkqg==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"@hapi/hoek" : "^11.0.2"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@humanfs/core" : {
"version" : "0.19.1" ,
"resolved" : "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz" ,
"integrity" : "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=18.18.0"
}
} ,
"node_modules/@humanfs/node" : {
"version" : "0.16.7" ,
"resolved" : "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz" ,
"integrity" : "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@humanfs/core" : "^0.19.1" ,
"@humanwhocodes/retry" : "^0.4.0"
} ,
"engines" : {
"node" : ">=18.18.0"
}
} ,
"node_modules/@humanwhocodes/module-importer" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz" ,
"integrity" : "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=12.22"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/nzakas"
}
} ,
"node_modules/@humanwhocodes/retry" : {
"version" : "0.4.3" ,
"resolved" : "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz" ,
"integrity" : "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=18.18"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/nzakas"
}
} ,
"node_modules/@img/colour" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/@img/colour/-/colour-1.0.0.tgz" ,
"integrity" : "sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==" ,
"license" : "MIT" ,
"optional" : true ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/@img/sharp-darwin-arm64" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz" ,
"integrity" : "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-libvips-darwin-arm64" : "1.2.4"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@img/sharp-darwin-x64" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz" ,
"integrity" : "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-libvips-darwin-x64" : "1.2.4"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@img/sharp-libvips-darwin-arm64" : {
2025-12-04 13:48:30 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz" ,
"integrity" : "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-libvips-darwin-x64" : {
2025-12-04 13:48:30 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz" ,
"integrity" : "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-libvips-linux-arm" : {
2025-12-04 13:48:30 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz" ,
"integrity" : "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"linux"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-libvips-linux-arm64" : {
2025-12-04 13:48:30 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz" ,
"integrity" : "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"linux"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
2025-12-04 13:48:30 +09:00
"node_modules/@img/sharp-libvips-linux-ppc64" : {
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz" ,
"integrity" : "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==" ,
"cpu" : [
"ppc64"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"linux"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-libvips-linux-riscv64" : {
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz" ,
"integrity" : "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==" ,
"cpu" : [
"riscv64"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"linux"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@img/sharp-libvips-linux-s390x" : {
2025-12-04 13:48:30 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz" ,
"integrity" : "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"s390x"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"linux"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-libvips-linux-x64" : {
2025-12-04 13:48:30 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz" ,
"integrity" : "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"linux"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-libvips-linuxmusl-arm64" : {
2025-12-04 13:48:30 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz" ,
"integrity" : "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"linux"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-libvips-linuxmusl-x64" : {
2025-12-04 13:48:30 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz" ,
"integrity" : "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"linux"
] ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-linux-arm" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz" ,
"integrity" : "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-libvips-linux-arm" : "1.2.4"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@img/sharp-linux-arm64" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz" ,
"integrity" : "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-libvips-linux-arm64" : "1.2.4"
}
} ,
"node_modules/@img/sharp-linux-ppc64" : {
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz" ,
"integrity" : "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==" ,
"cpu" : [
"ppc64"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
"@img/sharp-libvips-linux-ppc64" : "1.2.4"
}
} ,
"node_modules/@img/sharp-linux-riscv64" : {
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz" ,
"integrity" : "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==" ,
"cpu" : [
"riscv64"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
"@img/sharp-libvips-linux-riscv64" : "1.2.4"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@img/sharp-linux-s390x" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz" ,
"integrity" : "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"s390x"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-libvips-linux-s390x" : "1.2.4"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@img/sharp-linux-x64" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz" ,
"integrity" : "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-libvips-linux-x64" : "1.2.4"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@img/sharp-linuxmusl-arm64" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz" ,
"integrity" : "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-libvips-linuxmusl-arm64" : "1.2.4"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@img/sharp-linuxmusl-x64" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz" ,
"integrity" : "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "Apache-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-libvips-linuxmusl-x64" : "1.2.4"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/@img/sharp-wasm32" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz" ,
"integrity" : "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"wasm32"
] ,
"license" : "Apache-2.0 AND LGPL-3.0-or-later AND MIT" ,
"optional" : true ,
"dependencies" : {
2025-12-04 13:48:30 +09:00
"@emnapi/runtime" : "^1.7.0"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
2025-12-04 13:48:30 +09:00
"node_modules/@img/sharp-win32-arm64" : {
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz" ,
"integrity" : "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==" ,
"cpu" : [
"arm64"
] ,
"license" : "Apache-2.0 AND LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@img/sharp-win32-ia32" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz" ,
"integrity" : "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"ia32"
] ,
"license" : "Apache-2.0 AND LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
"node_modules/@img/sharp-win32-x64" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz" ,
"integrity" : "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "Apache-2.0 AND LGPL-3.0-or-later" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@isaacs/balanced-match" : {
"version" : "4.0.1" ,
"resolved" : "https://registry.npmmirror.com/@isaacs/balanced-match/-/balanced-match-4.0.1.tgz" ,
"integrity" : "sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "20 || >=22"
}
} ,
"node_modules/@isaacs/brace-expansion" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmmirror.com/@isaacs/brace-expansion/-/brace-expansion-5.0.0.tgz" ,
"integrity" : "sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@isaacs/balanced-match" : "^4.0.1"
} ,
"engines" : {
"node" : "20 || >=22"
}
} ,
"node_modules/@isaacs/cliui" : {
"version" : "8.0.2" ,
"resolved" : "https://registry.npmmirror.com/@isaacs/cliui/-/cliui-8.0.2.tgz" ,
"integrity" : "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"string-width" : "^5.1.2" ,
"string-width-cjs" : "npm:string-width@^4.2.0" ,
"strip-ansi" : "^7.0.1" ,
"strip-ansi-cjs" : "npm:strip-ansi@^6.0.1" ,
"wrap-ansi" : "^8.1.0" ,
"wrap-ansi-cjs" : "npm:wrap-ansi@^7.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/@isaacs/cliui/node_modules/ansi-styles" : {
"version" : "6.2.3" ,
"resolved" : "https://registry.npmmirror.com/ansi-styles/-/ansi-styles-6.2.3.tgz" ,
"integrity" : "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
}
} ,
"node_modules/@isaacs/cliui/node_modules/string-width" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmmirror.com/string-width/-/string-width-5.1.2.tgz" ,
"integrity" : "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"eastasianwidth" : "^0.2.0" ,
"emoji-regex" : "^9.2.2" ,
"strip-ansi" : "^7.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/@isaacs/cliui/node_modules/wrap-ansi" : {
"version" : "8.1.0" ,
"resolved" : "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz" ,
"integrity" : "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^6.1.0" ,
"string-width" : "^5.0.1" ,
"strip-ansi" : "^7.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@jridgewell/gen-mapping" : {
"version" : "0.3.13" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz" ,
"integrity" : "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jridgewell/sourcemap-codec" : "^1.5.0" ,
"@jridgewell/trace-mapping" : "^0.3.24"
}
2025-08-19 01:17:17 +00:00
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@jridgewell/remapping" : {
"version" : "2.3.5" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz" ,
"integrity" : "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jridgewell/gen-mapping" : "^0.3.5" ,
"@jridgewell/trace-mapping" : "^0.3.24"
}
} ,
"node_modules/@jridgewell/resolve-uri" : {
"version" : "3.1.2" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz" ,
"integrity" : "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.0.0"
}
} ,
"node_modules/@jridgewell/sourcemap-codec" : {
"version" : "1.5.5" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz" ,
"integrity" : "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/@jridgewell/trace-mapping" : {
"version" : "0.3.31" ,
"resolved" : "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz" ,
"integrity" : "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@jridgewell/resolve-uri" : "^3.1.0" ,
"@jridgewell/sourcemap-codec" : "^1.4.14"
}
} ,
2025-12-05 21:15:02 +09:00
"node_modules/@langfuse/client" : {
"version" : "4.4.9" ,
"resolved" : "https://registry.npmjs.org/@langfuse/client/-/client-4.4.9.tgz" ,
"integrity" : "sha512-Y7bU70tMx/lYOU/A7NGvXXVZoL3AiFigbf7EwS5PVFc0xd34eRUmvwdLwEtuK7CnYTyxIZTzVVP2KEaicWCYZg==" ,
"license" : "MIT" ,
"dependencies" : {
"@langfuse/core" : "^4.4.9" ,
"@langfuse/tracing" : "^4.4.9" ,
"mustache" : "^4.2.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : "^1.9.0"
}
} ,
"node_modules/@langfuse/core" : {
"version" : "4.4.9" ,
"resolved" : "https://registry.npmjs.org/@langfuse/core/-/core-4.4.9.tgz" ,
"integrity" : "sha512-9Hz/eH6dkOP8E/FLt1fsAQR8RE/TF8Ag/39GmY8JjN1o/Tl/MFJfK2QvqRGrkjDkIkMJGOSD+iQmV2pYm4upDA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@opentelemetry/api" : "^1.9.0"
}
} ,
"node_modules/@langfuse/otel" : {
"version" : "4.4.9" ,
"resolved" : "https://registry.npmjs.org/@langfuse/otel/-/otel-4.4.9.tgz" ,
"integrity" : "sha512-T9tSucDC3cvdeUB8fTGXm6ZZcC4kOEreJuM/C66nHQ26+DWtx2AN75JWuadc2E+VU/K+BjTb5XAkBceWYtvXjw==" ,
"license" : "MIT" ,
"dependencies" : {
"@langfuse/core" : "^4.4.9"
} ,
"engines" : {
"node" : ">=20"
} ,
"peerDependencies" : {
"@opentelemetry/api" : "^1.9.0" ,
"@opentelemetry/core" : "^2.0.1" ,
"@opentelemetry/exporter-trace-otlp-http" : ">=0.202.0 <1.0.0" ,
"@opentelemetry/sdk-trace-base" : "^2.0.1"
}
} ,
"node_modules/@langfuse/tracing" : {
"version" : "4.4.9" ,
"resolved" : "https://registry.npmjs.org/@langfuse/tracing/-/tracing-4.4.9.tgz" ,
"integrity" : "sha512-if+G/v9NsyTKj40KKX96bRSdMXwyDbVL4GJQvmwQ9SxvGYF+d99pGFB7L6QOeCd1KBHMdmDe733ncmvCnSHJ9w==" ,
"license" : "MIT" ,
"dependencies" : {
"@langfuse/core" : "^4.4.9"
} ,
"engines" : {
"node" : ">=20"
} ,
"peerDependencies" : {
"@opentelemetry/api" : "^1.9.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@malept/cross-spawn-promise" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmmirror.com/@malept/cross-spawn-promise/-/cross-spawn-promise-2.0.0.tgz" ,
"integrity" : "sha512-1DpKU0Z5ThltBwjNySMC14g0CkbyhCaz9FkhxqNsZI6uAPJXFS8cMXlBKo26FJ8ZuW6S9GCMcR9IO5k2X5/9Fg==" ,
"dev" : true ,
"funding" : [
{
"type" : "individual" ,
"url" : "https://github.com/sponsors/malept"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
}
] ,
"license" : "Apache-2.0" ,
"dependencies" : {
"cross-spawn" : "^7.0.1"
} ,
"engines" : {
"node" : ">= 12.13.0"
}
} ,
"node_modules/@malept/flatpak-bundler" : {
"version" : "0.4.0" ,
"resolved" : "https://registry.npmmirror.com/@malept/flatpak-bundler/-/flatpak-bundler-0.4.0.tgz" ,
"integrity" : "sha512-9QOtNffcOF/c1seMCDnjckb3R9WHcG34tky+FHpNKKCW0wc/scYLwMtO+ptyGUfMW0/b/n4qRiALlaFHc9Oj7Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "^4.1.1" ,
"fs-extra" : "^9.0.0" ,
"lodash" : "^4.17.15" ,
"tmp-promise" : "^3.0.2"
} ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/@malept/flatpak-bundler/node_modules/fs-extra" : {
"version" : "9.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-9.1.0.tgz" ,
"integrity" : "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"at-least-node" : "^1.0.0" ,
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/@malept/flatpak-bundler/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/@malept/flatpak-bundler/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@napi-rs/wasm-runtime" : {
"version" : "0.2.12" ,
"resolved" : "https://registry.npmjs.org/@napi-rs/wasm-runtime/-/wasm-runtime-0.2.12.tgz" ,
"integrity" : "sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"@emnapi/core" : "^1.4.3" ,
"@emnapi/runtime" : "^1.4.3" ,
"@tybys/wasm-util" : "^0.10.0"
}
} ,
"node_modules/@next/env" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/env/-/env-16.0.10.tgz" ,
"integrity" : "sha512-8tuaQkyDVgeONQ1MeT9Mkk8pQmZapMKFh5B+OrFUlG3rVmYTXcXlBetBgTurKXGaIZvkoqRT9JL5K3phXcgang==" ,
2025-11-29 12:39:35 +08:00
"license" : "MIT"
} ,
"node_modules/@next/eslint-plugin-next" : {
"version" : "16.0.5" ,
"resolved" : "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-16.0.5.tgz" ,
"integrity" : "sha512-m1zPz6hsBvQt1CMRz7rTga8OXpRE9rVW4JHCSjW+tswTxiEU+6ev+GTlgm7ZzcCiMEVQAHTNhpEGFzDtVha9qg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"fast-glob" : "3.3.1"
}
} ,
"node_modules/@next/swc-darwin-arm64" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-16.0.10.tgz" ,
"integrity" : "sha512-4XgdKtdVsaflErz+B5XeG0T5PeXKDdruDf3CRpnhN+8UebNa5N2H58+3GDgpn/9GBurrQ1uWW768FfscwYkJRg==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@next/swc-darwin-x64" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-16.0.10.tgz" ,
"integrity" : "sha512-spbEObMvRKkQ3CkYVOME+ocPDFo5UqHb8EMTS78/0mQ+O1nqE8toHJVioZo4TvebATxgA8XMTHHrScPrn68OGw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@next/swc-linux-arm64-gnu" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-16.0.10.tgz" ,
"integrity" : "sha512-uQtWE3X0iGB8apTIskOMi2w/MKONrPOUCi5yLO+v3O8Mb5c7K4Q5KD1jvTpTF5gJKa3VH/ijKjKUq9O9UhwOYw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@next/swc-linux-arm64-musl" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-16.0.10.tgz" ,
"integrity" : "sha512-llA+hiDTrYvyWI21Z0L1GiXwjQaanPVQQwru5peOgtooeJ8qx3tlqRV2P7uH2pKQaUfHxI/WVarvI5oYgGxaTw==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@next/swc-linux-x64-gnu" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-16.0.10.tgz" ,
"integrity" : "sha512-AK2q5H0+a9nsXbeZ3FZdMtbtu9jxW4R/NgzZ6+lrTm3d6Zb7jYrWcgjcpM1k8uuqlSy4xIyPR2YiuUr+wXsavA==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@next/swc-linux-x64-musl" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-16.0.10.tgz" ,
"integrity" : "sha512-1TDG9PDKivNw5550S111gsO4RGennLVl9cipPhtkXIFVwo31YZ73nEbLjNC8qG3SgTz/QZyYyaFYMeY4BKZR/g==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@next/swc-win32-arm64-msvc" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-16.0.10.tgz" ,
"integrity" : "sha512-aEZIS4Hh32xdJQbHz121pyuVZniSNoqDVx1yIr2hy+ZwJGipeqnMZBJHyMxv2tiuAXGx6/xpTcQJ6btIiBjgmg==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"arm64"
] ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@next/swc-win32-x64-msvc" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-16.0.10.tgz" ,
"integrity" : "sha512-E+njfCoFLb01RAFEnGZn6ERoOqhK1Gl3Lfz1Kjnj0Ulfu7oJbuMyvBKNj/bw8XZnenHDASlygTjZICQW+rYW1Q==" ,
2025-08-19 01:17:17 +00:00
"cpu" : [
"x64"
] ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
2025-12-03 20:35:31 +09:00
"node_modules/@next/third-parties" : {
"version" : "16.0.6" ,
"resolved" : "https://registry.npmjs.org/@next/third-parties/-/third-parties-16.0.6.tgz" ,
"integrity" : "sha512-yYZkmgc3YuMsvouklk3R3oDEmzq1rEiEm/5wGHjTfyTCsRrrD3jBX84xrMtEN7vVWbWXXWbV0SZ5TfkgeMLGWg==" ,
"license" : "MIT" ,
"dependencies" : {
"third-party-capital" : "1.0.20"
} ,
"peerDependencies" : {
"next" : "^13.0.0 || ^14.0.0 || ^15.0.0 || ^16.0.0-beta.0" ,
"react" : "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@nodelib/fs.scandir" : {
"version" : "2.1.5" ,
"resolved" : "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz" ,
"integrity" : "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@nodelib/fs.stat" : "2.0.5" ,
"run-parallel" : "^1.1.9"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/@nodelib/fs.stat" : {
"version" : "2.0.5" ,
"resolved" : "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz" ,
"integrity" : "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/@nodelib/fs.walk" : {
"version" : "1.2.8" ,
"resolved" : "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz" ,
"integrity" : "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@nodelib/fs.scandir" : "2.1.5" ,
"fastq" : "^1.6.0"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/@nolyfill/is-core-module" : {
"version" : "1.0.39" ,
"resolved" : "https://registry.npmjs.org/@nolyfill/is-core-module/-/is-core-module-1.0.39.tgz" ,
"integrity" : "sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12.4.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@npmcli/fs" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmmirror.com/@npmcli/fs/-/fs-2.1.2.tgz" ,
"integrity" : "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"@gar/promisify" : "^1.1.3" ,
"semver" : "^7.3.5"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
"node_modules/@npmcli/move-file" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/@npmcli/move-file/-/move-file-2.0.1.tgz" ,
"integrity" : "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==" ,
"deprecated" : "This functionality has been moved to @npmcli/fs" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"mkdirp" : "^1.0.4" ,
"rimraf" : "^3.0.2"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
2025-11-15 14:29:18 +09:00
"node_modules/@openrouter/ai-sdk-provider" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@openrouter/ai-sdk-provider/-/ai-sdk-provider-1.2.3.tgz" ,
"integrity" : "sha512-a6Nc8dPRHakRH9966YJ/HZJhLOds7DuPTscNZDoAr+Aw+tEFUlacSJMvb/b3gukn74mgbuaJRji9YOn62ipfVg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@openrouter/sdk" : "^0.1.8"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"ai" : "^5.0.0" ,
"zod" : "^3.24.1 || ^v4"
}
} ,
"node_modules/@openrouter/sdk" : {
"version" : "0.1.11" ,
"resolved" : "https://registry.npmjs.org/@openrouter/sdk/-/sdk-0.1.11.tgz" ,
"integrity" : "sha512-OuPc8qqidL/PUM8+9WgrOfSR9+b6rKIWiezGcUJ54iPTdh+Gye5Qjut6hrLWlOCMZE7Z853gN90r1ft4iChj7Q==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"zod" : "^3.25.0 || ^4.0.0"
} ,
"peerDependencies" : {
"@tanstack/react-query" : "^5" ,
"react" : "^18 || ^19" ,
"react-dom" : "^18 || ^19"
} ,
"peerDependenciesMeta" : {
"@tanstack/react-query" : {
"optional" : true
} ,
"react" : {
"optional" : true
} ,
"react-dom" : {
"optional" : true
}
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@opentelemetry/api" : {
"version" : "1.9.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz" ,
"integrity" : "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==" ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=8.0.0"
}
} ,
2025-12-05 21:15:02 +09:00
"node_modules/@opentelemetry/api-logs" : {
"version" : "0.208.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.208.0.tgz" ,
"integrity" : "sha512-CjruKY9V6NMssL/T1kAFgzosF1v9o6oeN+aX5JB/C/xPNtmgIJqcXHG7fA82Ou1zCpWGl4lROQUKwUNE1pMCyg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/api" : "^1.3.0"
} ,
"engines" : {
"node" : ">=8.0.0"
}
} ,
"node_modules/@opentelemetry/context-async-hooks" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-2.2.0.tgz" ,
"integrity" : "sha512-qRkLWiUEZNAmYapZ7KGS5C4OmBLcP/H2foXeOEaowYCR0wi89fHejrfYfbuLVCMLp/dWZXKvQusdbUEZjERfwQ==" ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : ">=1.0.0 <1.10.0"
}
} ,
"node_modules/@opentelemetry/core" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/core/-/core-2.2.0.tgz" ,
"integrity" : "sha512-FuabnnUm8LflnieVxs6eP7Z383hgQU4W1e3KJS6aOG3RxWxcHyBxH8fDMHNgu/gFx/M2jvTOW/4/PHhLz6bjWw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/semantic-conventions" : "^1.29.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : ">=1.0.0 <1.10.0"
}
} ,
"node_modules/@opentelemetry/exporter-trace-otlp-http" : {
"version" : "0.208.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/exporter-trace-otlp-http/-/exporter-trace-otlp-http-0.208.0.tgz" ,
"integrity" : "sha512-jbzDw1q+BkwKFq9yxhjAJ9rjKldbt5AgIy1gmEIJjEV/WRxQ3B6HcLVkwbjJ3RcMif86BDNKR846KJ0tY0aOJA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/core" : "2.2.0" ,
"@opentelemetry/otlp-exporter-base" : "0.208.0" ,
"@opentelemetry/otlp-transformer" : "0.208.0" ,
"@opentelemetry/resources" : "2.2.0" ,
"@opentelemetry/sdk-trace-base" : "2.2.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : "^1.3.0"
}
} ,
"node_modules/@opentelemetry/otlp-exporter-base" : {
"version" : "0.208.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.208.0.tgz" ,
"integrity" : "sha512-gMd39gIfVb2OgxldxUtOwGJYSH8P1kVFFlJLuut32L6KgUC4gl1dMhn+YC2mGn0bDOiQYSk/uHOdSjuKp58vvA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/core" : "2.2.0" ,
"@opentelemetry/otlp-transformer" : "0.208.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : "^1.3.0"
}
} ,
"node_modules/@opentelemetry/otlp-transformer" : {
"version" : "0.208.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/otlp-transformer/-/otlp-transformer-0.208.0.tgz" ,
"integrity" : "sha512-DCFPY8C6lAQHUNkzcNT9R+qYExvsk6C5Bto2pbNxgicpcSWbe2WHShLxkOxIdNcBiYPdVHv/e7vH7K6TI+C+fQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/api-logs" : "0.208.0" ,
"@opentelemetry/core" : "2.2.0" ,
"@opentelemetry/resources" : "2.2.0" ,
"@opentelemetry/sdk-logs" : "0.208.0" ,
"@opentelemetry/sdk-metrics" : "2.2.0" ,
"@opentelemetry/sdk-trace-base" : "2.2.0" ,
"protobufjs" : "^7.3.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : "^1.3.0"
}
} ,
"node_modules/@opentelemetry/resources" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/resources/-/resources-2.2.0.tgz" ,
"integrity" : "sha512-1pNQf/JazQTMA0BiO5NINUzH0cbLbbl7mntLa4aJNmCCXSj0q03T5ZXXL0zw4G55TjdL9Tz32cznGClf+8zr5A==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/core" : "2.2.0" ,
"@opentelemetry/semantic-conventions" : "^1.29.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : ">=1.3.0 <1.10.0"
}
} ,
"node_modules/@opentelemetry/sdk-logs" : {
"version" : "0.208.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.208.0.tgz" ,
"integrity" : "sha512-QlAyL1jRpOeaqx7/leG1vJMp84g0xKP6gJmfELBpnI4O/9xPX+Hu5m1POk9Kl+veNkyth5t19hRlN6tNY1sjbA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/api-logs" : "0.208.0" ,
"@opentelemetry/core" : "2.2.0" ,
"@opentelemetry/resources" : "2.2.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : ">=1.4.0 <1.10.0"
}
} ,
"node_modules/@opentelemetry/sdk-metrics" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-2.2.0.tgz" ,
"integrity" : "sha512-G5KYP6+VJMZzpGipQw7Giif48h6SGQ2PFKEYCybeXJsOCB4fp8azqMAAzE5lnnHK3ZVwYQrgmFbsUJO/zOnwGw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/core" : "2.2.0" ,
"@opentelemetry/resources" : "2.2.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : ">=1.9.0 <1.10.0"
}
} ,
"node_modules/@opentelemetry/sdk-trace-base" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.2.0.tgz" ,
"integrity" : "sha512-xWQgL0Bmctsalg6PaXExmzdedSp3gyKV8mQBwK/j9VGdCDu2fmXIb2gAehBKbkXCpJ4HPkgv3QfoJWRT4dHWbw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/core" : "2.2.0" ,
"@opentelemetry/resources" : "2.2.0" ,
"@opentelemetry/semantic-conventions" : "^1.29.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : ">=1.3.0 <1.10.0"
}
} ,
"node_modules/@opentelemetry/sdk-trace-node" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/sdk-trace-node/-/sdk-trace-node-2.2.0.tgz" ,
"integrity" : "sha512-+OaRja3f0IqGG2kptVeYsrZQK9nKRSpfFrKtRBq4uh6nIB8bTBgaGvYQrQoRrQWQMA5dK5yLhDMDc0dvYvCOIQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@opentelemetry/context-async-hooks" : "2.2.0" ,
"@opentelemetry/core" : "2.2.0" ,
"@opentelemetry/sdk-trace-base" : "2.2.0"
} ,
"engines" : {
"node" : "^18.19.0 || >=20.6.0"
} ,
"peerDependencies" : {
"@opentelemetry/api" : ">=1.0.0 <1.10.0"
}
} ,
"node_modules/@opentelemetry/semantic-conventions" : {
"version" : "1.38.0" ,
"resolved" : "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.38.0.tgz" ,
"integrity" : "sha512-kocjix+/sSggfJhwXqClZ3i9Y/MI0fp7b+g7kCRm6psy2dsf8uApTRclwG18h8Avm7C9+fnt+O36PspJ/OzoWg==" ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=14"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@pkgjs/parseargs" : {
"version" : "0.11.0" ,
"resolved" : "https://registry.npmmirror.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz" ,
"integrity" : "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"engines" : {
"node" : ">=14"
}
} ,
2025-12-05 21:15:02 +09:00
"node_modules/@protobufjs/aspromise" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz" ,
"integrity" : "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
"node_modules/@protobufjs/base64" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz" ,
"integrity" : "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
"node_modules/@protobufjs/codegen" : {
"version" : "2.0.4" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz" ,
"integrity" : "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
"node_modules/@protobufjs/eventemitter" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz" ,
"integrity" : "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
"node_modules/@protobufjs/fetch" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz" ,
"integrity" : "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==" ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"@protobufjs/aspromise" : "^1.1.1" ,
"@protobufjs/inquire" : "^1.1.0"
}
} ,
"node_modules/@protobufjs/float" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz" ,
"integrity" : "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
"node_modules/@protobufjs/inquire" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz" ,
"integrity" : "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
"node_modules/@protobufjs/path" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz" ,
"integrity" : "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
"node_modules/@protobufjs/pool" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz" ,
"integrity" : "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
"node_modules/@protobufjs/utf8" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz" ,
"integrity" : "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==" ,
2025-12-07 20:33:43 +09:00
"license" : "BSD-3-Clause"
2025-12-05 21:15:02 +09:00
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@radix-ui/number" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.0.tgz" ,
"integrity" : "sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/primitive" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.1.tgz" ,
"integrity" : "sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==" ,
"license" : "MIT"
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-alert-dialog" : {
"version" : "1.1.15" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.1.15.tgz" ,
"integrity" : "sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-dialog" : "1.1.15" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-alert-dialog/node_modules/@radix-ui/primitive" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz" ,
"integrity" : "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-alert-dialog/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-alert-dialog/node_modules/@radix-ui/react-context" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz" ,
"integrity" : "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-alert-dialog/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz" ,
"integrity" : "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-alert-dialog/node_modules/@radix-ui/react-slot" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz" ,
"integrity" : "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@radix-ui/react-arrow" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.2.tgz" ,
"integrity" : "sha512-G+KcpzXHq24iH0uGG/pF8LyzpFJYGD4RfLjCIBfGdSLXvjLHST31RUiRVrupIBMvIppMgSzQ6l66iAxl03tdlg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-primitive" : "2.0.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
2025-12-10 20:54:43 +05:30
"node_modules/@radix-ui/react-collapsible" : {
"version" : "1.1.12" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.1.12.tgz" ,
"integrity" : "sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-id" : "1.1.1" ,
"@radix-ui/react-presence" : "1.1.5" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-controllable-state" : "1.2.2" ,
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/primitive" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz" ,
"integrity" : "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-context" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz" ,
"integrity" : "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-id" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz" ,
"integrity" : "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-presence" : {
"version" : "1.1.5" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.5.tgz" ,
"integrity" : "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz" ,
"integrity" : "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-slot" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz" ,
"integrity" : "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collapsible/node_modules/@radix-ui/react-use-layout-effect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz" ,
"integrity" : "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-04 22:56:59 +09:00
"node_modules/@radix-ui/react-collection" : {
"version" : "1.1.7" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.7.tgz" ,
"integrity" : "sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-context" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz" ,
"integrity" : "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz" ,
"integrity" : "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-slot" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz" ,
"integrity" : "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.1.tgz" ,
"integrity" : "sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-context" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.1.tgz" ,
"integrity" : "sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-dialog" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"version" : "1.1.15" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.15.tgz" ,
"integrity" : "sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-dismissable-layer" : "1.1.11" ,
"@radix-ui/react-focus-guards" : "1.1.3" ,
"@radix-ui/react-focus-scope" : "1.1.7" ,
"@radix-ui/react-id" : "1.1.1" ,
"@radix-ui/react-portal" : "1.1.9" ,
"@radix-ui/react-presence" : "1.1.5" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-slot" : "1.2.3" ,
"@radix-ui/react-use-controllable-state" : "1.2.2" ,
2025-08-19 01:17:17 +00:00
"aria-hidden" : "^1.2.4" ,
"react-remove-scroll" : "^2.6.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/primitive" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz" ,
"integrity" : "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
2025-12-10 20:54:43 +05:30
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-context" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz" ,
"integrity" : "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-dismissable-layer" : {
"version" : "1.1.11" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz" ,
"integrity" : "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-callback-ref" : "1.1.1" ,
"@radix-ui/react-use-escape-keydown" : "1.1.1"
2025-08-19 01:17:17 +00:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-id" : {
2025-08-19 01:17:17 +00:00
"version" : "1.1.1" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"resolved" : "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz" ,
"integrity" : "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
2025-08-19 01:17:17 +00:00
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-portal" : {
"version" : "1.1.9" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz" ,
"integrity" : "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-layout-effect" : "1.1.1"
2025-08-19 01:17:17 +00:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-presence" : {
"version" : "1.1.5" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.5.tgz" ,
"integrity" : "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-use-layout-effect" : "1.1.1"
2025-08-19 01:17:17 +00:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
2025-08-19 01:17:17 +00:00
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
} ,
"@types/react-dom" : {
"optional" : true
2025-08-19 01:17:17 +00:00
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz" ,
"integrity" : "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==" ,
2025-12-06 21:42:28 +09:00
"license" : "MIT" ,
"dependencies" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-slot" : "1.2.3"
2025-12-06 21:42:28 +09:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz" ,
"integrity" : "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==" ,
2025-12-06 21:42:28 +09:00
"license" : "MIT" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2"
} ,
2025-12-06 21:42:28 +09:00
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-use-callback-ref" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz" ,
"integrity" : "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==" ,
2025-12-06 21:42:28 +09:00
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
2025-12-06 21:42:28 +09:00
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-use-escape-keydown" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz" ,
"integrity" : "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==" ,
2025-12-06 21:42:28 +09:00
"license" : "MIT" ,
"dependencies" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-use-callback-ref" : "1.1.1"
2025-12-06 21:42:28 +09:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-use-layout-effect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz" ,
"integrity" : "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
2025-08-19 01:17:17 +00:00
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
}
}
} ,
"node_modules/@radix-ui/react-direction" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.0.tgz" ,
"integrity" : "sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-dismissable-layer" : {
"version" : "1.1.5" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.5.tgz" ,
"integrity" : "sha512-E4TywXY6UsXNRhFrECa5HAvE5/4BFcGyfTyK36gP+pAW1ed7UTK4vKwdr53gAJYwqbfCWC6ATvJa3J3R/9+Qrg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/primitive" : "1.1.1" ,
"@radix-ui/react-compose-refs" : "1.1.1" ,
"@radix-ui/react-primitive" : "2.0.2" ,
"@radix-ui/react-use-callback-ref" : "1.1.0" ,
"@radix-ui/react-use-escape-keydown" : "1.1.0"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-focus-guards" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.3.tgz" ,
"integrity" : "sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-focus-scope" : {
"version" : "1.1.7" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.7.tgz" ,
"integrity" : "sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-callback-ref" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz" ,
"integrity" : "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-slot" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz" ,
"integrity" : "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-focus-scope/node_modules/@radix-ui/react-use-callback-ref" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz" ,
"integrity" : "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-id" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.0.tgz" ,
"integrity" : "sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.0"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-label" : {
"version" : "2.1.8" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.8.tgz" ,
"integrity" : "sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-primitive" : "2.1.4"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.4" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.4.tgz" ,
"integrity" : "sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.2.4"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover" : {
"version" : "1.1.15" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.15.tgz" ,
"integrity" : "sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-dismissable-layer" : "1.1.11" ,
"@radix-ui/react-focus-guards" : "1.1.3" ,
"@radix-ui/react-focus-scope" : "1.1.7" ,
"@radix-ui/react-id" : "1.1.1" ,
"@radix-ui/react-popper" : "1.2.8" ,
"@radix-ui/react-portal" : "1.1.9" ,
"@radix-ui/react-presence" : "1.1.5" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-slot" : "1.2.3" ,
"@radix-ui/react-use-controllable-state" : "1.2.2" ,
"aria-hidden" : "^1.2.4" ,
"react-remove-scroll" : "^2.6.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/primitive" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz" ,
"integrity" : "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-arrow" : {
"version" : "1.1.7" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz" ,
"integrity" : "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-primitive" : "2.1.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-context" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz" ,
"integrity" : "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-dismissable-layer" : {
"version" : "1.1.11" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz" ,
"integrity" : "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-callback-ref" : "1.1.1" ,
"@radix-ui/react-use-escape-keydown" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-id" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz" ,
"integrity" : "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-popper" : {
"version" : "1.2.8" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.8.tgz" ,
"integrity" : "sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==" ,
"license" : "MIT" ,
"dependencies" : {
"@floating-ui/react-dom" : "^2.0.0" ,
"@radix-ui/react-arrow" : "1.1.7" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-callback-ref" : "1.1.1" ,
"@radix-ui/react-use-layout-effect" : "1.1.1" ,
"@radix-ui/react-use-rect" : "1.1.1" ,
"@radix-ui/react-use-size" : "1.1.1" ,
"@radix-ui/rect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-portal" : {
"version" : "1.1.9" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz" ,
"integrity" : "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-presence" : {
"version" : "1.1.5" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.5.tgz" ,
"integrity" : "sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz" ,
"integrity" : "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-slot" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz" ,
"integrity" : "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-use-callback-ref" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz" ,
"integrity" : "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-use-escape-keydown" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz" ,
"integrity" : "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-callback-ref" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-use-layout-effect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz" ,
"integrity" : "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-use-rect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz" ,
"integrity" : "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/rect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-use-size" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz" ,
"integrity" : "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-popover/node_modules/@radix-ui/rect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.1.tgz" ,
"integrity" : "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-popper" : {
"version" : "1.2.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.2.tgz" ,
"integrity" : "sha512-Rvqc3nOpwseCyj/rgjlJDYAgyfw7OC1tTkKn2ivhaMGcYt8FSBlahHOZak2i3QwkRXUXgGgzeEe2RuqeEHuHgA==" ,
"license" : "MIT" ,
"dependencies" : {
"@floating-ui/react-dom" : "^2.0.0" ,
"@radix-ui/react-arrow" : "1.1.2" ,
"@radix-ui/react-compose-refs" : "1.1.1" ,
"@radix-ui/react-context" : "1.1.1" ,
"@radix-ui/react-primitive" : "2.0.2" ,
"@radix-ui/react-use-callback-ref" : "1.1.0" ,
"@radix-ui/react-use-layout-effect" : "1.1.0" ,
"@radix-ui/react-use-rect" : "1.1.0" ,
"@radix-ui/react-use-size" : "1.1.0" ,
"@radix-ui/rect" : "1.1.0"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
2025-08-19 01:17:17 +00:00
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-portal" : {
"version" : "1.1.4" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.4.tgz" ,
"integrity" : "sha512-sn2O9k1rPFYVyKd5LAJfo96JlSGVFpa1fS6UuBJfrZadudiw5tAmru+n1x7aMRQ84qDM71Zh1+SzK5QwU0tJfA==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-primitive" : "2.0.2" ,
"@radix-ui/react-use-layout-effect" : "1.1.0"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-presence" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.2.tgz" ,
"integrity" : "sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.1" ,
"@radix-ui/react-use-layout-effect" : "1.1.0"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-primitive" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.2.tgz" ,
"integrity" : "sha512-Ec/0d38EIuvDF+GZjcMU/Ze6MxntVJYO/fRlCPhCaVUyPY9WTalHJw54tp9sXeJo3tlShWpy41vQRgLRGOuz+w==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.2.tgz" ,
"integrity" : "sha512-YAKxaiGsSQJ38VzKH86/BPRC4rh+b1Jpa+JneA5LRE7skmLPNAyeG8kPJj/oo4STLvlrs8vkf/iYyc3A5stYCQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@radix-ui/react-scroll-area" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.2.3.tgz" ,
"integrity" : "sha512-l7+NNBfBYYJa9tNqVcP2AGvxdE3lmE6kFTBXdvHgUaZuy+4wGCL1Cl2AfaR7RKyimj7lZURGLwFO59k4eBnDJQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/number" : "1.1.0" ,
"@radix-ui/primitive" : "1.1.1" ,
"@radix-ui/react-compose-refs" : "1.1.1" ,
"@radix-ui/react-context" : "1.1.1" ,
"@radix-ui/react-direction" : "1.1.0" ,
"@radix-ui/react-presence" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.0.2" ,
"@radix-ui/react-use-callback-ref" : "1.1.0" ,
"@radix-ui/react-use-layout-effect" : "1.1.0"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
2025-12-04 22:56:59 +09:00
"node_modules/@radix-ui/react-select" : {
"version" : "2.2.6" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.2.6.tgz" ,
"integrity" : "sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/number" : "1.1.1" ,
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-collection" : "1.1.7" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-direction" : "1.1.1" ,
"@radix-ui/react-dismissable-layer" : "1.1.11" ,
"@radix-ui/react-focus-guards" : "1.1.3" ,
"@radix-ui/react-focus-scope" : "1.1.7" ,
"@radix-ui/react-id" : "1.1.1" ,
"@radix-ui/react-popper" : "1.2.8" ,
"@radix-ui/react-portal" : "1.1.9" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-slot" : "1.2.3" ,
"@radix-ui/react-use-callback-ref" : "1.1.1" ,
"@radix-ui/react-use-controllable-state" : "1.2.2" ,
"@radix-ui/react-use-layout-effect" : "1.1.1" ,
"@radix-ui/react-use-previous" : "1.1.1" ,
"@radix-ui/react-visually-hidden" : "1.2.3" ,
"aria-hidden" : "^1.2.4" ,
"react-remove-scroll" : "^2.6.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/number" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.1.tgz" ,
"integrity" : "sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/primitive" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz" ,
"integrity" : "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-arrow" : {
"version" : "1.1.7" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.7.tgz" ,
"integrity" : "sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-primitive" : "2.1.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-context" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz" ,
"integrity" : "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-direction" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.1.tgz" ,
"integrity" : "sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-dismissable-layer" : {
"version" : "1.1.11" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.11.tgz" ,
"integrity" : "sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-callback-ref" : "1.1.1" ,
"@radix-ui/react-use-escape-keydown" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-id" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.1.tgz" ,
"integrity" : "sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-popper" : {
"version" : "1.2.8" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.8.tgz" ,
"integrity" : "sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==" ,
"license" : "MIT" ,
"dependencies" : {
"@floating-ui/react-dom" : "^2.0.0" ,
"@radix-ui/react-arrow" : "1.1.7" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-callback-ref" : "1.1.1" ,
"@radix-ui/react-use-layout-effect" : "1.1.1" ,
"@radix-ui/react-use-rect" : "1.1.1" ,
"@radix-ui/react-use-size" : "1.1.1" ,
"@radix-ui/rect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-portal" : {
"version" : "1.1.9" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.9.tgz" ,
"integrity" : "sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz" ,
"integrity" : "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-slot" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz" ,
"integrity" : "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-callback-ref" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.1.tgz" ,
"integrity" : "sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-escape-keydown" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.1.tgz" ,
"integrity" : "sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-callback-ref" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-layout-effect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz" ,
"integrity" : "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-rect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.1.tgz" ,
"integrity" : "sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/rect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-use-size" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz" ,
"integrity" : "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/react-visually-hidden" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.2.3.tgz" ,
"integrity" : "sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-primitive" : "2.1.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-select/node_modules/@radix-ui/rect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.1.tgz" ,
"integrity" : "sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-slot" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.4.tgz" ,
"integrity" : "sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==" ,
2025-12-05 09:19:26 +09:00
"license" : "MIT" ,
"dependencies" : {
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"@radix-ui/react-compose-refs" : "1.1.2"
2025-12-05 09:19:26 +09:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-slot/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-06 21:42:28 +09:00
"node_modules/@radix-ui/react-switch" : {
"version" : "1.2.6" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.2.6.tgz" ,
"integrity" : "sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/primitive" : "1.1.3" ,
"@radix-ui/react-compose-refs" : "1.1.2" ,
"@radix-ui/react-context" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.1.3" ,
"@radix-ui/react-use-controllable-state" : "1.2.2" ,
"@radix-ui/react-use-previous" : "1.1.1" ,
"@radix-ui/react-use-size" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-switch/node_modules/@radix-ui/primitive" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.3.tgz" ,
"integrity" : "sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==" ,
"license" : "MIT"
} ,
"node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-compose-refs" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.2.tgz" ,
"integrity" : "sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-context" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz" ,
"integrity" : "sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-primitive" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.1.3.tgz" ,
"integrity" : "sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-slot" : "1.2.3"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-slot" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz" ,
"integrity" : "sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-use-layout-effect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz" ,
"integrity" : "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-switch/node_modules/@radix-ui/react-use-size" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.1.tgz" ,
"integrity" : "sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@radix-ui/react-tooltip" : {
"version" : "1.1.8" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.1.8.tgz" ,
"integrity" : "sha512-YAA2cu48EkJZdAMHC0dqo9kialOcRStbtiY4nJPaht7Ptrhcvpo+eDChaM6BIs8kL6a8Z5l5poiqLnXcNduOkA==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/primitive" : "1.1.1" ,
"@radix-ui/react-compose-refs" : "1.1.1" ,
"@radix-ui/react-context" : "1.1.1" ,
"@radix-ui/react-dismissable-layer" : "1.1.5" ,
"@radix-ui/react-id" : "1.1.0" ,
"@radix-ui/react-popper" : "1.2.2" ,
"@radix-ui/react-portal" : "1.1.4" ,
"@radix-ui/react-presence" : "1.1.2" ,
"@radix-ui/react-primitive" : "2.0.2" ,
"@radix-ui/react-slot" : "1.1.2" ,
"@radix-ui/react-use-controllable-state" : "1.1.0" ,
"@radix-ui/react-visually-hidden" : "1.1.2"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-slot" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.2.tgz" ,
"integrity" : "sha512-YAKxaiGsSQJ38VzKH86/BPRC4rh+b1Jpa+JneA5LRE7skmLPNAyeG8kPJj/oo4STLvlrs8vkf/iYyc3A5stYCQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-10 20:54:43 +05:30
"node_modules/@radix-ui/react-tooltip/node_modules/@radix-ui/react-use-controllable-state" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz" ,
"integrity" : "sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-callback-ref" : "1.1.0"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@radix-ui/react-use-callback-ref" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz" ,
"integrity" : "sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-use-controllable-state" : {
2025-12-10 20:54:43 +05:30
"version" : "1.2.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.2.2.tgz" ,
"integrity" : "sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==" ,
2025-12-05 09:19:26 +09:00
"license" : "MIT" ,
"dependencies" : {
2025-12-10 20:54:43 +05:30
"@radix-ui/react-use-effect-event" : "0.0.2" ,
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
2025-12-05 09:19:26 +09:00
} ,
2025-12-10 20:54:43 +05:30
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-use-controllable-state/node_modules/@radix-ui/react-use-layout-effect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz" ,
"integrity" : "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==" ,
"license" : "MIT" ,
2025-12-05 09:19:26 +09:00
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-use-effect-event" : {
"version" : "0.0.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-effect-event/-/react-use-effect-event-0.0.2.tgz" ,
"integrity" : "sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-layout-effect" : "1.1.1"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-use-effect-event/node_modules/@radix-ui/react-use-layout-effect" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.1.tgz" ,
"integrity" : "sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-use-escape-keydown" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.0.tgz" ,
"integrity" : "sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-use-callback-ref" : "1.1.0"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-use-layout-effect" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.0.tgz" ,
"integrity" : "sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-use-previous" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.1.tgz" ,
"integrity" : "sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/@radix-ui/react-use-rect" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.0.tgz" ,
"integrity" : "sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==" ,
2025-12-04 22:56:59 +09:00
"license" : "MIT" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@radix-ui/rect" : "1.1.0"
2025-12-04 22:56:59 +09:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
2025-12-05 09:19:26 +09:00
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
2025-12-04 22:56:59 +09:00
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@radix-ui/react-use-size" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.0.tgz" ,
"integrity" : "sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@radix-ui/react-use-layout-effect" : "1.1.0"
2025-08-19 01:17:17 +00:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@radix-ui/react-visually-hidden" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.1.2.tgz" ,
"integrity" : "sha512-1SzA4ns2M1aRlvxErqhLHsBHoS5eI5UUcI2awAMgGUp4LoaoWOKYmvqDY2s/tltuPkh3Yk77YF/r3IRj+Amx4Q==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@radix-ui/react-primitive" : "2.0.2"
2025-08-19 01:17:17 +00:00
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"@types/react-dom" : "*" ,
"react" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" ,
"react-dom" : "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
} ,
"@types/react-dom" : {
"optional" : true
}
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@radix-ui/rect" : {
2025-08-19 01:17:17 +00:00
"version" : "1.1.0" ,
2025-12-05 09:19:26 +09:00
"resolved" : "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.0.tgz" ,
"integrity" : "sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==" ,
"license" : "MIT"
} ,
"node_modules/@rtsao/scc" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@rtsao/scc/-/scc-1.1.0.tgz" ,
"integrity" : "sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@sindresorhus/is" : {
"version" : "4.6.0" ,
"resolved" : "https://registry.npmmirror.com/@sindresorhus/is/-/is-4.6.0.tgz" ,
"integrity" : "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sindresorhus/is?sponsor=1"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/abort-controller" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/abort-controller/-/abort-controller-4.2.5.tgz" ,
"integrity" : "sha512-j7HwVkBw68YW8UmFRcjZOmssE77Rvk0GWAIN1oFBhsaovQmZWYCIcGa9/pwRB0ExI8Sk9MWNALTjftjHZea7VA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/config-resolver" : {
"version" : "4.4.3" ,
"resolved" : "https://registry.npmjs.org/@smithy/config-resolver/-/config-resolver-4.4.3.tgz" ,
"integrity" : "sha512-ezHLe1tKLUxDJo2LHtDuEDyWXolw8WGOR92qb4bQdWq/zKenO5BvctZGrVJBK08zjezSk7bmbKFOXIVyChvDLw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-config-provider" : "^4.2.0" ,
"@smithy/util-endpoints" : "^3.2.5" ,
"@smithy/util-middleware" : "^4.2.5" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/core" : {
"version" : "3.18.7" ,
"resolved" : "https://registry.npmjs.org/@smithy/core/-/core-3.18.7.tgz" ,
"integrity" : "sha512-axG9MvKhMWOhFbvf5y2DuyTxQueO0dkedY9QC3mAfndLosRI/9LJv8WaL0mw7ubNhsO4IuXX9/9dYGPFvHrqlw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/middleware-serde" : "^4.2.6" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-base64" : "^4.3.0" ,
"@smithy/util-body-length-browser" : "^4.2.0" ,
"@smithy/util-middleware" : "^4.2.5" ,
"@smithy/util-stream" : "^4.5.6" ,
"@smithy/util-utf8" : "^4.2.0" ,
"@smithy/uuid" : "^1.1.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/credential-provider-imds" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/credential-provider-imds/-/credential-provider-imds-4.2.5.tgz" ,
"integrity" : "sha512-BZwotjoZWn9+36nimwm/OLIcVe+KYRwzMjfhd4QT7QxPm9WY0HiOV8t/Wlh+HVUif0SBVV7ksq8//hPaBC/okQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/url-parser" : "^4.2.5" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/eventstream-codec" : {
"version" : "4.0.2" ,
"resolved" : "https://registry.npmjs.org/@smithy/eventstream-codec/-/eventstream-codec-4.0.2.tgz" ,
"integrity" : "sha512-p+f2kLSK7ZrXVfskU/f5dzksKTewZk8pJLPvER3aFHPt76C2MxD9vNatSfLzzQSQB4FNO96RK4PSXfhD1TTeMQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@aws-crypto/crc32" : "5.2.0" ,
"@smithy/types" : "^4.2.0" ,
"@smithy/util-hex-encoding" : "^4.0.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/fetch-http-handler" : {
"version" : "5.3.6" ,
"resolved" : "https://registry.npmjs.org/@smithy/fetch-http-handler/-/fetch-http-handler-5.3.6.tgz" ,
"integrity" : "sha512-3+RG3EA6BBJ/ofZUeTFJA7mHfSYrZtQIrDP9dI8Lf7X6Jbos2jptuLrAAteDiFVrmbEmLSuRG/bUKzfAXk7dhg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/querystring-builder" : "^4.2.5" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-base64" : "^4.3.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/hash-node" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/hash-node/-/hash-node-4.2.5.tgz" ,
"integrity" : "sha512-DpYX914YOfA3UDT9CN1BM787PcHfWRBB43fFGCYrZFUH0Jv+5t8yYl+Pd5PW4+QzoGEDvn5d5QIO4j2HyYZQSA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"@smithy/util-buffer-from" : "^4.2.0" ,
"@smithy/util-utf8" : "^4.2.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/invalid-dependency" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/invalid-dependency/-/invalid-dependency-4.2.5.tgz" ,
"integrity" : "sha512-2L2erASEro1WC5nV+plwIMxrTXpvpfzl4e+Nre6vBVRR2HKeGGcvpJyyL3/PpiSg+cJG2KpTmZmq934Olb6e5A==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/is-array-buffer" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/is-array-buffer/-/is-array-buffer-4.2.0.tgz" ,
"integrity" : "sha512-DZZZBvC7sjcYh4MazJSGiWMI2L7E0oCiRHREDzIxi/M2LY79/21iXt6aPLHge82wi5LsuRF5A06Ds3+0mlh6CQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/middleware-content-length" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/middleware-content-length/-/middleware-content-length-4.2.5.tgz" ,
"integrity" : "sha512-Y/RabVa5vbl5FuHYV2vUCwvh/dqzrEY/K2yWPSqvhFUwIY0atLqO4TienjBXakoy4zrKAMCZwg+YEqmH7jaN7A==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/middleware-endpoint" : {
"version" : "4.3.14" ,
"resolved" : "https://registry.npmjs.org/@smithy/middleware-endpoint/-/middleware-endpoint-4.3.14.tgz" ,
"integrity" : "sha512-v0q4uTKgBM8dsqGjqsabZQyH85nFaTnFcgpWU1uydKFsdyyMzfvOkNum9G7VK+dOP01vUnoZxIeRiJ6uD0kjIg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/core" : "^3.18.7" ,
"@smithy/middleware-serde" : "^4.2.6" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/url-parser" : "^4.2.5" ,
"@smithy/util-middleware" : "^4.2.5" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/middleware-retry" : {
"version" : "4.4.14" ,
"resolved" : "https://registry.npmjs.org/@smithy/middleware-retry/-/middleware-retry-4.4.14.tgz" ,
"integrity" : "sha512-Z2DG8Ej7FyWG1UA+7HceINtSLzswUgs2np3sZX0YBBxCt+CXG4QUxv88ZDS3+2/1ldW7LqtSY1UO/6VQ1pND8Q==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/service-error-classification" : "^4.2.5" ,
"@smithy/smithy-client" : "^4.9.10" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-middleware" : "^4.2.5" ,
"@smithy/util-retry" : "^4.2.5" ,
"@smithy/uuid" : "^1.1.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/middleware-serde" : {
"version" : "4.2.6" ,
"resolved" : "https://registry.npmjs.org/@smithy/middleware-serde/-/middleware-serde-4.2.6.tgz" ,
"integrity" : "sha512-VkLoE/z7e2g8pirwisLz8XJWedUSY8my/qrp81VmAdyrhi94T+riBfwP+AOEEFR9rFTSonC/5D2eWNmFabHyGQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/middleware-stack" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/middleware-stack/-/middleware-stack-4.2.5.tgz" ,
"integrity" : "sha512-bYrutc+neOyWxtZdbB2USbQttZN0mXaOyYLIsaTbJhFsfpXyGWUxJpEuO1rJ8IIJm2qH4+xJT0mxUSsEDTYwdQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/node-config-provider" : {
"version" : "4.3.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/node-config-provider/-/node-config-provider-4.3.5.tgz" ,
"integrity" : "sha512-UTurh1C4qkVCtqggI36DGbLB2Kv8UlcFdMXDcWMbqVY2uRg0XmT9Pb4Vj6oSQ34eizO1fvR0RnFV4Axw4IrrAg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/shared-ini-file-loader" : "^4.4.0" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/node-http-handler" : {
"version" : "4.4.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/node-http-handler/-/node-http-handler-4.4.5.tgz" ,
"integrity" : "sha512-CMnzM9R2WqlqXQGtIlsHMEZfXKJVTIrqCNoSd/QpAyp+Dw0a1Vps13l6ma1fH8g7zSPNsA59B/kWgeylFuA/lw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/abort-controller" : "^4.2.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/querystring-builder" : "^4.2.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/property-provider" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/property-provider/-/property-provider-4.2.5.tgz" ,
"integrity" : "sha512-8iLN1XSE1rl4MuxvQ+5OSk/Zb5El7NJZ1td6Tn+8dQQHIjp59Lwl6bd0+nzw6SKm2wSSriH2v/I9LPzUic7EOg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/protocol-http" : {
"version" : "5.3.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/protocol-http/-/protocol-http-5.3.5.tgz" ,
"integrity" : "sha512-RlaL+sA0LNMp03bf7XPbFmT5gN+w3besXSWMkA8rcmxLSVfiEXElQi4O2IWwPfxzcHkxqrwBFMbngB8yx/RvaQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/querystring-builder" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/querystring-builder/-/querystring-builder-4.2.5.tgz" ,
"integrity" : "sha512-y98otMI1saoajeik2kLfGyRp11e5U/iJYH/wLCh3aTV/XutbGT9nziKGkgCaMD1ghK7p6htHMm6b6scl9JRUWg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"@smithy/util-uri-escape" : "^4.2.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/querystring-parser" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/querystring-parser/-/querystring-parser-4.2.5.tgz" ,
"integrity" : "sha512-031WCTdPYgiQRYNPXznHXof2YM0GwL6SeaSyTH/P72M1Vz73TvCNH2Nq8Iu2IEPq9QP2yx0/nrw5YmSeAi/AjQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/service-error-classification" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/service-error-classification/-/service-error-classification-4.2.5.tgz" ,
"integrity" : "sha512-8fEvK+WPE3wUAcDvqDQG1Vk3ANLR8Px979te96m84CbKAjBVf25rPYSzb4xU4hlTyho7VhOGnh5i62D/JVF0JQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/shared-ini-file-loader" : {
"version" : "4.4.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/shared-ini-file-loader/-/shared-ini-file-loader-4.4.0.tgz" ,
"integrity" : "sha512-5WmZ5+kJgJDjwXXIzr1vDTG+RhF9wzSODQBfkrQ2VVkYALKGvZX1lgVSxEkgicSAFnFhPj5rudJV0zoinqS0bA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/signature-v4" : {
"version" : "5.3.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/signature-v4/-/signature-v4-5.3.5.tgz" ,
"integrity" : "sha512-xSUfMu1FT7ccfSXkoLl/QRQBi2rOvi3tiBZU2Tdy3I6cgvZ6SEi9QNey+lqps/sJRnogIS+lq+B1gxxbra2a/w==" ,
"license" : "Apache-2.0" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/is-array-buffer" : "^4.2.0" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-hex-encoding" : "^4.2.0" ,
"@smithy/util-middleware" : "^4.2.5" ,
"@smithy/util-uri-escape" : "^4.2.0" ,
"@smithy/util-utf8" : "^4.2.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/smithy-client" : {
"version" : "4.9.10" ,
"resolved" : "https://registry.npmjs.org/@smithy/smithy-client/-/smithy-client-4.9.10.tgz" ,
"integrity" : "sha512-Jaoz4Jw1QYHc1EFww/E6gVtNjhoDU+gwRKqXP6C3LKYqqH2UQhP8tMP3+t/ePrhaze7fhLE8vS2q6vVxBANFTQ==" ,
"license" : "Apache-2.0" ,
2025-12-04 22:56:59 +09:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/core" : "^3.18.7" ,
"@smithy/middleware-endpoint" : "^4.3.14" ,
"@smithy/middleware-stack" : "^4.2.5" ,
"@smithy/protocol-http" : "^5.3.5" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-stream" : "^4.5.6" ,
"tslib" : "^2.6.2"
2025-12-04 22:56:59 +09:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-12-04 22:56:59 +09:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/types" : {
"version" : "4.9.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/types/-/types-4.9.0.tgz" ,
"integrity" : "sha512-MvUbdnXDTwykR8cB1WZvNNwqoWVaTRA0RLlLmf/cIFNMM2cKWz01X4Ly6SMC4Kks30r8tT3Cty0jmeWfiuyHTA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.6.2"
2025-12-04 22:56:59 +09:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-12-04 22:56:59 +09:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/url-parser" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/url-parser/-/url-parser-4.2.5.tgz" ,
"integrity" : "sha512-VaxMGsilqFnK1CeBX+LXnSuaMx4sTL/6znSZh2829txWieazdVxr54HmiyTsIbpOTLcf5nYpq9lpzmwRdxj6rQ==" ,
"license" : "Apache-2.0" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/querystring-parser" : "^4.2.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-base64" : {
"version" : "4.3.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-base64/-/util-base64-4.3.0.tgz" ,
"integrity" : "sha512-GkXZ59JfyxsIwNTWFnjmFEI8kZpRNIBfxKjv09+nkAWPt/4aGaEWMM04m4sxgNVWkbt2MdSvE3KF/PfX4nFedQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/util-buffer-from" : "^4.2.0" ,
"@smithy/util-utf8" : "^4.2.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-body-length-browser" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-body-length-browser/-/util-body-length-browser-4.2.0.tgz" ,
"integrity" : "sha512-Fkoh/I76szMKJnBXWPdFkQJl2r9SjPt3cMzLdOB6eJ4Pnpas8hVoWPYemX/peO0yrrvldgCUVJqOAjUrOLjbxg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.6.2"
2025-12-04 22:56:59 +09:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-12-04 22:56:59 +09:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-body-length-node" : {
"version" : "4.2.1" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-body-length-node/-/util-body-length-node-4.2.1.tgz" ,
"integrity" : "sha512-h53dz/pISVrVrfxV1iqXlx5pRg3V2YWFcSQyPyXZRrZoZj4R4DeWRDo1a7dd3CPTcFi3kE+98tuNyD2axyZReA==" ,
"license" : "Apache-2.0" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-buffer-from" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-buffer-from/-/util-buffer-from-4.2.0.tgz" ,
"integrity" : "sha512-kAY9hTKulTNevM2nlRtxAG2FQ3B2OR6QIrPY3zE5LqJy1oxzmgBGsHLWTcNhWXKchgA0WHW+mZkQrng/pgcCew==" ,
"license" : "Apache-2.0" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/is-array-buffer" : "^4.2.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-config-provider" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-config-provider/-/util-config-provider-4.2.0.tgz" ,
"integrity" : "sha512-YEjpl6XJ36FTKmD+kRJJWYvrHeUvm5ykaUS5xK+6oXffQPHeEM4/nXlZPe+Wu0lsgRUcNZiliYNh/y7q9c2y6Q==" ,
"license" : "Apache-2.0" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-05 09:19:26 +09:00
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/util-defaults-mode-browser" : {
"version" : "4.3.13" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-defaults-mode-browser/-/util-defaults-mode-browser-4.3.13.tgz" ,
"integrity" : "sha512-hlVLdAGrVfyNei+pKIgqDTxfu/ZI2NSyqj4IDxKd5bIsIqwR/dSlkxlPaYxFiIaDVrBy0he8orsFy+Cz119XvA==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/smithy-client" : "^4.9.10" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"engines" : {
"node" : ">=18.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-defaults-mode-node" : {
"version" : "4.2.16" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-defaults-mode-node/-/util-defaults-mode-node-4.2.16.tgz" ,
"integrity" : "sha512-F1t22IUiJLHrxW9W1CQ6B9PN+skZ9cqSuzB18Eh06HrJPbjsyZ7ZHecAKw80DQtyGTRcVfeukKaCRYebFwclbg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/config-resolver" : "^4.4.3" ,
"@smithy/credential-provider-imds" : "^4.2.5" ,
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/property-provider" : "^4.2.5" ,
"@smithy/smithy-client" : "^4.9.10" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
2025-08-19 01:17:17 +00:00
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-endpoints" : {
"version" : "3.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-endpoints/-/util-endpoints-3.2.5.tgz" ,
"integrity" : "sha512-3O63AAWu2cSNQZp+ayl9I3NapW1p1rR5mlVHcF6hAB1dPZUQFfRPYtplWX/3xrzWthPGj5FqB12taJJCfH6s8A==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/node-config-provider" : "^4.3.5" ,
"@smithy/types" : "^4.9.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
2025-11-29 12:39:35 +08:00
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-hex-encoding" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-hex-encoding/-/util-hex-encoding-4.2.0.tgz" ,
"integrity" : "sha512-CCQBwJIvXMLKxVbO88IukazJD9a4kQ9ZN7/UMGBjBcJYvatpWk+9g870El4cB8/EJxfe+k+y0GmR9CAzkF+Nbw==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-middleware" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-middleware/-/util-middleware-4.2.5.tgz" ,
"integrity" : "sha512-6Y3+rvBF7+PZOc40ybeZMcGln6xJGVeY60E7jy9Mv5iKpMJpHgRE6dKy9ScsVxvfAYuEX4Q9a65DQX90KaQ3bA==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/types" : "^4.9.0" ,
2025-08-19 01:17:17 +00:00
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-retry" : {
"version" : "4.2.5" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-retry/-/util-retry-4.2.5.tgz" ,
"integrity" : "sha512-GBj3+EZBbN4NAqJ/7pAhsXdfzdlznOh8PydUijy6FpNIMnHPSMO2/rP4HKu+UFeikJxShERk528oy7GT79YiJg==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/service-error-classification" : "^4.2.5" ,
"@smithy/types" : "^4.9.0" ,
2025-08-19 01:17:17 +00:00
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-stream" : {
"version" : "4.5.6" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-stream/-/util-stream-4.5.6.tgz" ,
"integrity" : "sha512-qWw/UM59TiaFrPevefOZ8CNBKbYEP6wBAIlLqxn3VAIo9rgnTNc4ASbVrqDmhuwI87usnjhdQrxodzAGFFzbRQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-05 09:19:26 +09:00
"@smithy/fetch-http-handler" : "^5.3.6" ,
"@smithy/node-http-handler" : "^4.4.5" ,
"@smithy/types" : "^4.9.0" ,
"@smithy/util-base64" : "^4.3.0" ,
"@smithy/util-buffer-from" : "^4.2.0" ,
"@smithy/util-hex-encoding" : "^4.2.0" ,
"@smithy/util-utf8" : "^4.2.0" ,
2025-08-19 01:17:17 +00:00
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/@smithy/util-uri-escape" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-uri-escape/-/util-uri-escape-4.2.0.tgz" ,
"integrity" : "sha512-igZpCKV9+E/Mzrpq6YacdTQ0qTiLm85gD6N/IrmyDvQFA4UnU3d5g3m8tMT/6zG/vVkWSU+VxeUyGonL62DuxA==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/util-utf8" : {
2025-12-05 09:19:26 +09:00
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/util-utf8/-/util-utf8-4.2.0.tgz" ,
"integrity" : "sha512-zBPfuzoI8xyBtR2P6WQj63Rz8i3AmfAaJLuNG8dWsfvPe8lO4aCPYLn879mEgHndZH1zQ2oXmG8O1GGzzaoZiw==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@smithy/util-buffer-from" : "^4.2.0" ,
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
"node_modules/@smithy/uuid" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/@smithy/uuid/-/uuid-1.1.0.tgz" ,
"integrity" : "sha512-4aUIteuyxtBUhVdiQqcDhKFitwfd9hqoSDYY2KRXiWtgoWJ9Bmise+KfEPDiVHWeJepvF8xJO9/9+WDIciMFFw==" ,
2025-08-19 01:17:17 +00:00
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.6.2"
} ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
2025-08-31 12:54:14 +09:00
"node_modules/@standard-schema/spec" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/@standard-schema/spec/-/spec-1.0.0.tgz" ,
"integrity" : "sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==" ,
"license" : "MIT"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@swc/helpers" : {
"version" : "0.5.15" ,
"resolved" : "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz" ,
"integrity" : "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.8.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@szmarczak/http-timer" : {
"version" : "4.0.6" ,
"resolved" : "https://registry.npmmirror.com/@szmarczak/http-timer/-/http-timer-4.0.6.tgz" ,
"integrity" : "sha512-4BAffykYOgO+5nzBWYwE3W90sBgLJoUPRWWcL8wlyiM8IB8ipJz3UMJ9KXQd1RKQXpKp8Tutn80HZtWsu2u76w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"defer-to-connect" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@tailwindcss/node" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.2.tgz" ,
"integrity" : "sha512-ZwFnxH+1z8Ehh8bNTMX3YFrYdzAv7JLY5X5X7XSFY+G9QGJVce/P9xb2mh+j5hKt8NceuHmdtllJvAHWKtsNrQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"enhanced-resolve" : "^5.18.1" ,
"jiti" : "^2.4.2" ,
"lightningcss" : "1.29.2" ,
"tailwindcss" : "4.1.2"
}
} ,
"node_modules/@tailwindcss/oxide" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.2.tgz" ,
"integrity" : "sha512-Zwz//1QKo6+KqnCKMT7lA4bspGfwEgcPAHlSthmahtgrpKDfwRGk8PKQrW8Zg/ofCDIlg6EtjSTKSxxSufC+CQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10"
} ,
"optionalDependencies" : {
"@tailwindcss/oxide-android-arm64" : "4.1.2" ,
"@tailwindcss/oxide-darwin-arm64" : "4.1.2" ,
"@tailwindcss/oxide-darwin-x64" : "4.1.2" ,
"@tailwindcss/oxide-freebsd-x64" : "4.1.2" ,
"@tailwindcss/oxide-linux-arm-gnueabihf" : "4.1.2" ,
"@tailwindcss/oxide-linux-arm64-gnu" : "4.1.2" ,
"@tailwindcss/oxide-linux-arm64-musl" : "4.1.2" ,
"@tailwindcss/oxide-linux-x64-gnu" : "4.1.2" ,
"@tailwindcss/oxide-linux-x64-musl" : "4.1.2" ,
"@tailwindcss/oxide-win32-arm64-msvc" : "4.1.2" ,
"@tailwindcss/oxide-win32-x64-msvc" : "4.1.2"
}
} ,
"node_modules/@tailwindcss/oxide-android-arm64" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.2.tgz" ,
"integrity" : "sha512-IxkXbntHX8lwGmwURUj4xTr6nezHhLYqeiJeqa179eihGv99pRlKV1W69WByPJDQgSf4qfmwx904H6MkQqTA8w==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"android"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-darwin-arm64" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.2.tgz" ,
"integrity" : "sha512-ZRtiHSnFYHb4jHKIdzxlFm6EDfijTCOT4qwUhJ3GWxfDoW2yT3z/y8xg0nE7e72unsmSj6dtfZ9Y5r75FIrlpA==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-darwin-x64" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.2.tgz" ,
"integrity" : "sha512-BiKUNZf1A0pBNzndBvnPnBxonCY49mgbOsPfILhcCE5RM7pQlRoOgN7QnwNhY284bDbfQSEOWnFR0zbPo6IDTw==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-freebsd-x64" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.2.tgz" ,
"integrity" : "sha512-Z30VcpUfRGkiddj4l5NRCpzbSGjhmmklVoqkVQdkEC0MOelpY+fJrVhzSaXHmWrmSvnX8yiaEqAbdDScjVujYQ==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"freebsd"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-linux-arm-gnueabihf" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.2.tgz" ,
"integrity" : "sha512-w3wsK1ChOLeQ3gFOiwabtWU5e8fY3P1Ss8jR3IFIn/V0va3ir//hZ8AwURveS4oK1Pu6b8i+yxesT4qWnLVUow==" ,
"cpu" : [
"arm"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-linux-arm64-gnu" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.2.tgz" ,
"integrity" : "sha512-oY/u+xJHpndTj7B5XwtmXGk8mQ1KALMfhjWMMpE8pdVAznjJsF5KkCceJ4Fmn5lS1nHMCwZum5M3/KzdmwDMdw==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-linux-arm64-musl" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.2.tgz" ,
"integrity" : "sha512-k7G6vcRK/D+JOWqnKzKN/yQq1q4dCkI49fMoLcfs2pVcaUAXEqCP9NmA8Jv+XahBv5DtDjSAY3HJbjosEdKczg==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-linux-x64-gnu" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.2.tgz" ,
"integrity" : "sha512-fLL+c678TkYKgkDLLNxSjPPK/SzTec7q/E5pTwvpTqrth867dftV4ezRyhPM5PaiCqX651Y8Yk0wRQMcWUGnmQ==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-linux-x64-musl" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.2.tgz" ,
"integrity" : "sha512-0tU1Vjd1WucZ2ooq6y4nI9xyTSaH2g338bhrqk+2yzkMHskBm+pMsOCfY7nEIvALkA1PKPOycR4YVdlV7Czo+A==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-win32-arm64-msvc" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.2.tgz" ,
"integrity" : "sha512-r8QaMo3QKiHqUcn+vXYCypCEha+R0sfYxmaZSgZshx9NfkY+CHz91aS2xwNV/E4dmUDkTPUag7sSdiCHPzFVTg==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/oxide-win32-x64-msvc" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.2.tgz" ,
"integrity" : "sha512-lYCdkPxh9JRHXoBsPE8Pu/mppUsC2xihYArNAESub41PKhHTnvn6++5RpmFM+GLSt3ewyS8fwCVvht7ulWm6cw==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/@tailwindcss/postcss" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.2.tgz" ,
"integrity" : "sha512-vgkMo6QRhG6uv97im6Y4ExDdq71y9v2IGZc+0wn7lauQFYJM/1KdUVhrOkexbUso8tUsMOWALxyHVkQEbsM7gw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@alloc/quick-lru" : "^5.2.0" ,
"@tailwindcss/node" : "4.1.2" ,
"@tailwindcss/oxide" : "4.1.2" ,
"postcss" : "^8.4.41" ,
"tailwindcss" : "4.1.2"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/@tailwindcss/typography" : {
"version" : "0.5.19" ,
"resolved" : "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.19.tgz" ,
"integrity" : "sha512-w31dd8HOx3k9vPtcQh5QHP9GwKcgbMp87j58qi6xgiBnFFtKEAgCWnDw4qUT8aHwkCp8bKvb/KGKWWHedP0AAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"postcss-selector-parser" : "6.0.10"
} ,
"peerDependencies" : {
"tailwindcss" : ">=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@tootallnate/once" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmmirror.com/@tootallnate/once/-/once-2.0.0.tgz" ,
"integrity" : "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@tybys/wasm-util" : {
"version" : "0.10.1" ,
"resolved" : "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.10.1.tgz" ,
"integrity" : "sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"tslib" : "^2.4.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@types/cacheable-request" : {
"version" : "6.0.3" ,
"resolved" : "https://registry.npmmirror.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz" ,
"integrity" : "sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/http-cache-semantics" : "*" ,
"@types/keyv" : "^3.1.4" ,
"@types/node" : "*" ,
"@types/responselike" : "^1.0.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@types/debug" : {
"version" : "4.1.12" ,
"resolved" : "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz" ,
"integrity" : "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/ms" : "*"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@types/estree" : {
"version" : "1.0.8" ,
"resolved" : "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz" ,
"integrity" : "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==" ,
"license" : "MIT"
} ,
2025-12-05 22:42:39 +09:00
"node_modules/@types/estree-jsx" : {
"version" : "1.0.5" ,
"resolved" : "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz" ,
"integrity" : "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/estree" : "*"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@types/fs-extra" : {
"version" : "9.0.13" ,
"resolved" : "https://registry.npmmirror.com/@types/fs-extra/-/fs-extra-9.0.13.tgz" ,
"integrity" : "sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/node" : "*"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/@types/hast" : {
"version" : "3.0.4" ,
"resolved" : "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz" ,
"integrity" : "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "*"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@types/http-cache-semantics" : {
"version" : "4.0.4" ,
"resolved" : "https://registry.npmmirror.com/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz" ,
"integrity" : "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@types/json-schema" : {
"version" : "7.0.15" ,
"resolved" : "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz" ,
"integrity" : "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/@types/json5" : {
"version" : "0.0.29" ,
"resolved" : "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" ,
"integrity" : "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@types/keyv" : {
"version" : "3.1.4" ,
"resolved" : "https://registry.npmmirror.com/@types/keyv/-/keyv-3.1.4.tgz" ,
"integrity" : "sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/node" : "*"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@types/mdast" : {
"version" : "4.0.4" ,
"resolved" : "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz" ,
"integrity" : "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "*"
}
} ,
"node_modules/@types/ms" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz" ,
"integrity" : "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==" ,
"license" : "MIT"
} ,
2025-12-20 20:18:54 +05:30
"node_modules/@types/negotiator" : {
"version" : "0.6.4" ,
"resolved" : "https://registry.npmjs.org/@types/negotiator/-/negotiator-0.6.4.tgz" ,
"integrity" : "sha512-elf6BsTq+AkyNsb2h5cGNst2Mc7dPliVoAPm1fXglC/BM3f2pFA40BaSSv3E5lyHteEawVKLP+8TwiY1DMNb3A==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@types/node" : {
"version" : "20.17.30" ,
"resolved" : "https://registry.npmjs.org/@types/node/-/node-20.17.30.tgz" ,
"integrity" : "sha512-7zf4YyHA+jvBNfVrk2Gtvs6x7E8V+YDW05bNfG2XkWDJfYRXrTiP/DsB2zSYTaHX0bGIujTBQdMVAhb+j7mwpg==" ,
"license" : "MIT" ,
"dependencies" : {
"undici-types" : "~6.19.2"
}
} ,
"node_modules/@types/pako" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/@types/pako/-/pako-2.0.3.tgz" ,
"integrity" : "sha512-bq0hMV9opAcrmE0Byyo0fY3Ew4tgOevJmQ9grUhpXQhYfyLJ1Kqg3P33JT5fdbT2AjeAjR51zqqVjAL/HMkx7Q==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@types/plist" : {
"version" : "3.0.5" ,
"resolved" : "https://registry.npmmirror.com/@types/plist/-/plist-3.0.5.tgz" ,
"integrity" : "sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"@types/node" : "*" ,
"xmlbuilder" : ">=11.0.1"
}
} ,
2025-12-03 21:49:34 +09:00
"node_modules/@types/prismjs" : {
"version" : "1.26.5" ,
"resolved" : "https://registry.npmjs.org/@types/prismjs/-/prismjs-1.26.5.tgz" ,
"integrity" : "sha512-AUZTa7hQ2KY5L7AmtSiqxlhWxb4ina0yd8hNbl4TWuqnv/pFP0nDMb3YrfSBf4hJVGLh2YEIBfKaBW/9UEl6IQ==" ,
"license" : "MIT"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@types/react" : {
"version" : "19.1.0" ,
"resolved" : "https://registry.npmjs.org/@types/react/-/react-19.1.0.tgz" ,
"integrity" : "sha512-UaicktuQI+9UKyA4njtDOGBD/67t8YEBt2xdfqu8+gP9hqPUPsiXlNPcpS2gVdjmis5GKPG3fCxbQLVgxsQZ8w==" ,
"license" : "MIT" ,
"dependencies" : {
"csstype" : "^3.0.2"
}
} ,
"node_modules/@types/react-dom" : {
"version" : "19.1.1" ,
"resolved" : "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.1.tgz" ,
"integrity" : "sha512-jFf/woGTVTjUJsl2O7hcopJ1r0upqoq/vIOoCj0yLh3RIXxWcljlpuZ+vEBRXsymD1jhfeJrlyTy/S1UW+4y1w==" ,
"devOptional" : true ,
"license" : "MIT" ,
"peerDependencies" : {
"@types/react" : "^19.0.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@types/responselike" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmmirror.com/@types/responselike/-/responselike-1.0.3.tgz" ,
"integrity" : "sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/node" : "*"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/@types/unist" : {
"version" : "3.0.3" ,
"resolved" : "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz" ,
"integrity" : "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==" ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/@types/verror" : {
"version" : "1.10.11" ,
"resolved" : "https://registry.npmmirror.com/@types/verror/-/verror-1.10.11.tgz" ,
"integrity" : "sha512-RlDm9K7+o5stv0Co8i8ZRGxDbrTxhJtgjqjFyVh/tXQyl/rYtTKlnTvZ88oSTeYREWurwx20Js4kTuKCsFkUtg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true
} ,
"node_modules/@types/yauzl" : {
"version" : "2.10.3" ,
"resolved" : "https://registry.npmmirror.com/@types/yauzl/-/yauzl-2.10.3.tgz" ,
"integrity" : "sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"@types/node" : "*"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/eslint-plugin" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.48.0.tgz" ,
"integrity" : "sha512-XxXP5tL1txl13YFtrECECQYeZjBZad4fyd3cFV4a19LkAY/bIp9fev3US4S5fDVV2JaYFiKAZ/GRTOLer+mbyQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@eslint-community/regexpp" : "^4.10.0" ,
"@typescript-eslint/scope-manager" : "8.48.0" ,
"@typescript-eslint/type-utils" : "8.48.0" ,
"@typescript-eslint/utils" : "8.48.0" ,
"@typescript-eslint/visitor-keys" : "8.48.0" ,
"graphemer" : "^1.4.0" ,
"ignore" : "^7.0.0" ,
"natural-compare" : "^1.4.0" ,
"ts-api-utils" : "^2.1.0"
2025-08-19 01:17:17 +00:00
} ,
2025-11-09 23:24:15 +09:00
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
} ,
"peerDependencies" : {
"@typescript-eslint/parser" : "^8.48.0" ,
"eslint" : "^8.57.0 || ^9.0.0" ,
"typescript" : ">=4.8.4 <6.0.0"
2025-11-09 23:24:15 +09:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore" : {
"version" : "7.0.5" ,
"resolved" : "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz" ,
"integrity" : "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 4"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/parser" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.48.0.tgz" ,
"integrity" : "sha512-jCzKdm/QK0Kg4V4IK/oMlRZlY+QOcdjv89U2NgKHZk1CYTj82/RVSx1mV/0gqCVMJ/DA+Zf/S4NBWNF8GQ+eqQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"@typescript-eslint/scope-manager" : "8.48.0" ,
"@typescript-eslint/types" : "8.48.0" ,
"@typescript-eslint/typescript-estree" : "8.48.0" ,
"@typescript-eslint/visitor-keys" : "8.48.0" ,
"debug" : "^4.3.4"
} ,
2025-08-19 01:17:17 +00:00
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
} ,
"peerDependencies" : {
"eslint" : "^8.57.0 || ^9.0.0" ,
"typescript" : ">=4.8.4 <6.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/project-service" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.48.0.tgz" ,
"integrity" : "sha512-Ne4CTZyRh1BecBf84siv42wv5vQvVmgtk8AuiEffKTUo3DrBaGYZueJSxxBZ8fjk/N3DrgChH4TOdIOwOwiqqw==" ,
"dev" : true ,
"license" : "MIT" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-11-29 12:39:35 +08:00
"@typescript-eslint/tsconfig-utils" : "^8.48.0" ,
"@typescript-eslint/types" : "^8.48.0" ,
"debug" : "^4.3.4"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
2025-08-19 01:17:17 +00:00
} ,
"peerDependencies" : {
2025-11-29 12:39:35 +08:00
"typescript" : ">=4.8.4 <6.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/scope-manager" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.48.0.tgz" ,
"integrity" : "sha512-uGSSsbrtJrLduti0Q1Q9+BF1/iFKaxGoQwjWOIVNJv0o6omrdyR8ct37m4xIl5Zzpkp69Kkmvom7QFTtue89YQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"@typescript-eslint/types" : "8.48.0" ,
"@typescript-eslint/visitor-keys" : "8.48.0"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/tsconfig-utils" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.48.0.tgz" ,
"integrity" : "sha512-WNebjBdFdyu10sR1M4OXTt2OkMd5KWIL+LLfeH9KhgP+jzfDV/LI3eXzwJ1s9+Yc0Kzo2fQCdY/OpdusCMmh6w==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
} ,
"peerDependencies" : {
"typescript" : ">=4.8.4 <6.0.0"
}
2025-08-19 01:17:17 +00:00
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/type-utils" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.48.0.tgz" ,
"integrity" : "sha512-zbeVaVqeXhhab6QNEKfK96Xyc7UQuoFWERhEnj3mLVnUWrQnv15cJNseUni7f3g557gm0e46LZ6IJ4NJVOgOpw==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"@typescript-eslint/types" : "8.48.0" ,
"@typescript-eslint/typescript-estree" : "8.48.0" ,
"@typescript-eslint/utils" : "8.48.0" ,
"debug" : "^4.3.4" ,
"ts-api-utils" : "^2.1.0"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
2025-08-19 01:17:17 +00:00
"funding" : {
2025-11-29 12:39:35 +08:00
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
} ,
"peerDependencies" : {
"eslint" : "^8.57.0 || ^9.0.0" ,
"typescript" : ">=4.8.4 <6.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/types" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.48.0.tgz" ,
"integrity" : "sha512-cQMcGQQH7kwKoVswD1xdOytxQR60MWKM1di26xSUtxehaDs/32Zpqsu5WJlXTtTTqyAVK8R7hvsUnIXRS+bjvA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
}
2025-08-19 01:17:17 +00:00
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/typescript-estree" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.48.0.tgz" ,
"integrity" : "sha512-ljHab1CSO4rGrQIAyizUS6UGHHCiAYhbfcIZ1zVJr5nMryxlXMVWS3duFPSKvSUbFPwkXMFk1k0EMIjub4sRRQ==" ,
"dev" : true ,
"license" : "MIT" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-11-29 12:39:35 +08:00
"@typescript-eslint/project-service" : "8.48.0" ,
"@typescript-eslint/tsconfig-utils" : "8.48.0" ,
"@typescript-eslint/types" : "8.48.0" ,
"@typescript-eslint/visitor-keys" : "8.48.0" ,
"debug" : "^4.3.4" ,
"minimatch" : "^9.0.4" ,
"semver" : "^7.6.0" ,
"tinyglobby" : "^0.2.15" ,
"ts-api-utils" : "^2.1.0"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
} ,
"peerDependencies" : {
"typescript" : ">=4.8.4 <6.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"balanced-match" : "^1.0.0"
}
} ,
"node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch" : {
"version" : "9.0.5" ,
"resolved" : "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz" ,
"integrity" : "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"brace-expansion" : "^2.0.1"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=16 || 14 >=14.17"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@typescript-eslint/utils" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.48.0.tgz" ,
"integrity" : "sha512-yTJO1XuGxCsSfIVt1+1UrLHtue8xz16V8apzPYI06W0HbEbEWHxHXgZaAgavIkoh+GeV6hKKd5jm0sS6OYxWXQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@eslint-community/eslint-utils" : "^4.7.0" ,
"@typescript-eslint/scope-manager" : "8.48.0" ,
"@typescript-eslint/types" : "8.48.0" ,
"@typescript-eslint/typescript-estree" : "8.48.0"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
} ,
"peerDependencies" : {
"eslint" : "^8.57.0 || ^9.0.0" ,
"typescript" : ">=4.8.4 <6.0.0"
}
} ,
"node_modules/@typescript-eslint/visitor-keys" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.48.0.tgz" ,
"integrity" : "sha512-T0XJMaRPOH3+LBbAfzR2jalckP1MSG/L9eUtY0DEzUyVaXJ/t6zN0nR7co5kz0Jko/nkSYCBRkz1djvjajVTTg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@typescript-eslint/types" : "8.48.0" ,
"eslint-visitor-keys" : "^4.2.1"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/@ungap/structured-clone" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz" ,
"integrity" : "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==" ,
"license" : "ISC"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/@unrs/resolver-binding-android-arm-eabi" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-android-arm-eabi/-/resolver-binding-android-arm-eabi-1.11.1.tgz" ,
"integrity" : "sha512-ppLRUgHVaGRWUx0R0Ut06Mjo9gBaBkg3v/8AxusGLhsIotbBLuRk51rAzqLC8gq6NyyAojEXglNjzf6R948DNw==" ,
"cpu" : [
"arm"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"android"
]
} ,
"node_modules/@unrs/resolver-binding-android-arm64" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-android-arm64/-/resolver-binding-android-arm64-1.11.1.tgz" ,
"integrity" : "sha512-lCxkVtb4wp1v+EoN+HjIG9cIIzPkX5OtM03pQYkG+U5O/wL53LC4QbIeazgiKqluGeVEeBlZahHalCaBvU1a2g==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"android"
]
} ,
"node_modules/@unrs/resolver-binding-darwin-arm64" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-darwin-arm64/-/resolver-binding-darwin-arm64-1.11.1.tgz" ,
"integrity" : "sha512-gPVA1UjRu1Y/IsB/dQEsp2V1pm44Of6+LWvbLc9SDk1c2KhhDRDBUkQCYVWe6f26uJb3fOK8saWMgtX8IrMk3g==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
]
} ,
"node_modules/@unrs/resolver-binding-darwin-x64" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-darwin-x64/-/resolver-binding-darwin-x64-1.11.1.tgz" ,
"integrity" : "sha512-cFzP7rWKd3lZaCsDze07QX1SC24lO8mPty9vdP+YVa3MGdVgPmFc59317b2ioXtgCMKGiCLxJ4HQs62oz6GfRQ==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
]
} ,
"node_modules/@unrs/resolver-binding-freebsd-x64" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-freebsd-x64/-/resolver-binding-freebsd-x64-1.11.1.tgz" ,
"integrity" : "sha512-fqtGgak3zX4DCB6PFpsH5+Kmt/8CIi4Bry4rb1ho6Av2QHTREM+47y282Uqiu3ZRF5IQioJQ5qWRV6jduA+iGw==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"freebsd"
]
} ,
"node_modules/@unrs/resolver-binding-linux-arm-gnueabihf" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-gnueabihf/-/resolver-binding-linux-arm-gnueabihf-1.11.1.tgz" ,
"integrity" : "sha512-u92mvlcYtp9MRKmP+ZvMmtPN34+/3lMHlyMj7wXJDeXxuM0Vgzz0+PPJNsro1m3IZPYChIkn944wW8TYgGKFHw==" ,
"cpu" : [
"arm"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-arm-musleabihf" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm-musleabihf/-/resolver-binding-linux-arm-musleabihf-1.11.1.tgz" ,
"integrity" : "sha512-cINaoY2z7LVCrfHkIcmvj7osTOtm6VVT16b5oQdS4beibX2SYBwgYLmqhBjA1t51CarSaBuX5YNsWLjsqfW5Cw==" ,
"cpu" : [
"arm"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-arm64-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-gnu/-/resolver-binding-linux-arm64-gnu-1.11.1.tgz" ,
"integrity" : "sha512-34gw7PjDGB9JgePJEmhEqBhWvCiiWCuXsL9hYphDF7crW7UgI05gyBAi6MF58uGcMOiOqSJ2ybEeCvHcq0BCmQ==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-arm64-musl" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-arm64-musl/-/resolver-binding-linux-arm64-musl-1.11.1.tgz" ,
"integrity" : "sha512-RyMIx6Uf53hhOtJDIamSbTskA99sPHS96wxVE/bJtePJJtpdKGXO1wY90oRdXuYOGOTuqjT8ACccMc4K6QmT3w==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-ppc64-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-ppc64-gnu/-/resolver-binding-linux-ppc64-gnu-1.11.1.tgz" ,
"integrity" : "sha512-D8Vae74A4/a+mZH0FbOkFJL9DSK2R6TFPC9M+jCWYia/q2einCubX10pecpDiTmkJVUH+y8K3BZClycD8nCShA==" ,
"cpu" : [
"ppc64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-riscv64-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-gnu/-/resolver-binding-linux-riscv64-gnu-1.11.1.tgz" ,
"integrity" : "sha512-frxL4OrzOWVVsOc96+V3aqTIQl1O2TjgExV4EKgRY09AJ9leZpEg8Ak9phadbuX0BA4k8U5qtvMSQQGGmaJqcQ==" ,
"cpu" : [
"riscv64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-riscv64-musl" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-riscv64-musl/-/resolver-binding-linux-riscv64-musl-1.11.1.tgz" ,
"integrity" : "sha512-mJ5vuDaIZ+l/acv01sHoXfpnyrNKOk/3aDoEdLO/Xtn9HuZlDD6jKxHlkN8ZhWyLJsRBxfv9GYM2utQ1SChKew==" ,
"cpu" : [
"riscv64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-s390x-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-s390x-gnu/-/resolver-binding-linux-s390x-gnu-1.11.1.tgz" ,
"integrity" : "sha512-kELo8ebBVtb9sA7rMe1Cph4QHreByhaZ2QEADd9NzIQsYNQpt9UkM9iqr2lhGr5afh885d/cB5QeTXSbZHTYPg==" ,
"cpu" : [
"s390x"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-x64-gnu" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-gnu/-/resolver-binding-linux-x64-gnu-1.11.1.tgz" ,
"integrity" : "sha512-C3ZAHugKgovV5YvAMsxhq0gtXuwESUKc5MhEtjBpLoHPLYM+iuwSj3lflFwK3DPm68660rZ7G8BMcwSro7hD5w==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-linux-x64-musl" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-linux-x64-musl/-/resolver-binding-linux-x64-musl-1.11.1.tgz" ,
"integrity" : "sha512-rV0YSoyhK2nZ4vEswT/QwqzqQXw5I6CjoaYMOX0TqBlWhojUf8P94mvI7nuJTeaCkkds3QE4+zS8Ko+GdXuZtA==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"linux"
]
} ,
"node_modules/@unrs/resolver-binding-wasm32-wasi" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-wasm32-wasi/-/resolver-binding-wasm32-wasi-1.11.1.tgz" ,
"integrity" : "sha512-5u4RkfxJm+Ng7IWgkzi3qrFOvLvQYnPBmjmZQ8+szTK/b31fQCnleNl1GgEt7nIsZRIf5PLhPwT0WM+q45x/UQ==" ,
"cpu" : [
"wasm32"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"@napi-rs/wasm-runtime" : "^0.2.11"
} ,
"engines" : {
"node" : ">=14.0.0"
}
} ,
"node_modules/@unrs/resolver-binding-win32-arm64-msvc" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-win32-arm64-msvc/-/resolver-binding-win32-arm64-msvc-1.11.1.tgz" ,
"integrity" : "sha512-nRcz5Il4ln0kMhfL8S3hLkxI85BXs3o8EYoattsJNdsX4YUU89iOkVn7g0VHSRxFuVMdM4Q1jEpIId1Ihim/Uw==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
]
} ,
"node_modules/@unrs/resolver-binding-win32-ia32-msvc" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-win32-ia32-msvc/-/resolver-binding-win32-ia32-msvc-1.11.1.tgz" ,
"integrity" : "sha512-DCEI6t5i1NmAZp6pFonpD5m7i6aFrpofcp4LA2i8IIq60Jyo28hamKBxNrZcyOwVOZkgsRp9O2sXWBWP8MnvIQ==" ,
"cpu" : [
"ia32"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
]
} ,
"node_modules/@unrs/resolver-binding-win32-x64-msvc" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/@unrs/resolver-binding-win32-x64-msvc/-/resolver-binding-win32-x64-msvc-1.11.1.tgz" ,
"integrity" : "sha512-lrW200hZdbfRtztbygyaq/6jP6AKE8qQN2KvPcJ+x7wiD038YtnYtZ82IMNJ69GJibV7bwL3y9FgK+5w/pYt6g==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"win32"
]
} ,
"node_modules/@vercel/oidc" : {
2025-12-07 00:40:11 +09:00
"version" : "3.0.5" ,
"resolved" : "https://registry.npmjs.org/@vercel/oidc/-/oidc-3.0.5.tgz" ,
"integrity" : "sha512-fnYhv671l+eTTp48gB4zEsTW/YtRgRPnkI2nT7x6qw5rkI1Lq2hTmQIpHPgyThI0znLK+vX2n9XxKdXZ7BUbbw==" ,
2025-11-29 12:39:35 +08:00
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">= 20"
}
} ,
"node_modules/@xmldom/xmldom" : {
"version" : "0.9.8" ,
"resolved" : "https://registry.npmjs.org/@xmldom/xmldom/-/xmldom-0.9.8.tgz" ,
"integrity" : "sha512-p96FSY54r+WJ50FIOsCOjyj/wavs8921hG5+kVMmZgKcvIKxMXHTrjNJvRgWa/zuX3B6t2lijLNFaOyuxUH+2A==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=14.6"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/7zip-bin" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmmirror.com/7zip-bin/-/7zip-bin-5.2.0.tgz" ,
"integrity" : "sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/abbrev" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmmirror.com/abbrev/-/abbrev-1.1.1.tgz" ,
"integrity" : "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==" ,
"dev" : true ,
"license" : "ISC"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/acorn" : {
"version" : "8.15.0" ,
"resolved" : "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz" ,
"integrity" : "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"acorn" : "bin/acorn"
} ,
"engines" : {
"node" : ">=0.4.0"
}
} ,
"node_modules/acorn-jsx" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz" ,
"integrity" : "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==" ,
"dev" : true ,
"license" : "MIT" ,
"peerDependencies" : {
"acorn" : "^6.0.0 || ^7.0.0 || ^8.0.0"
}
} ,
"node_modules/agent-base" : {
"version" : "7.1.3" ,
"resolved" : "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz" ,
"integrity" : "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 14"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/agentkeepalive" : {
"version" : "4.6.0" ,
"resolved" : "https://registry.npmmirror.com/agentkeepalive/-/agentkeepalive-4.6.0.tgz" ,
"integrity" : "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"humanize-ms" : "^1.2.1"
} ,
"engines" : {
"node" : ">= 8.0.0"
}
} ,
"node_modules/aggregate-error" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmmirror.com/aggregate-error/-/aggregate-error-3.1.0.tgz" ,
"integrity" : "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"clean-stack" : "^2.0.0" ,
"indent-string" : "^4.0.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/ai" : {
2025-12-07 00:40:11 +09:00
"version" : "5.0.107" ,
"resolved" : "https://registry.npmjs.org/ai/-/ai-5.0.107.tgz" ,
"integrity" : "sha512-laZlS9ZC/DZfSaxPgrBqI4mM+kxRvTPBBQfa74ceBFskkunZKEsaGVFNEs4cfyGa3nCCCl1WO/fjxixp4V8Zag==" ,
2025-11-29 12:39:35 +08:00
"license" : "Apache-2.0" ,
"dependencies" : {
2025-12-07 00:40:11 +09:00
"@ai-sdk/gateway" : "2.0.18" ,
2025-11-29 12:39:35 +08:00
"@ai-sdk/provider" : "2.0.0" ,
2025-12-07 00:40:11 +09:00
"@ai-sdk/provider-utils" : "3.0.18" ,
2025-11-29 12:39:35 +08:00
"@opentelemetry/api" : "1.9.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
2025-12-16 22:43:33 -05:00
"node_modules/ai/node_modules/@ai-sdk/gateway" : {
"version" : "2.0.18" ,
"resolved" : "https://registry.npmjs.org/@ai-sdk/gateway/-/gateway-2.0.18.tgz" ,
"integrity" : "sha512-sDQcW+6ck2m0pTIHW6BPHD7S125WD3qNkx/B8sEzJp/hurocmJ5Cni0ybExg6sQMGo+fr/GWOwpHF1cmCdg5rQ==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "2.0.0" ,
"@ai-sdk/provider-utils" : "3.0.18" ,
"@vercel/oidc" : "3.0.5"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^3.25.76 || ^4.1.8"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/ajv" : {
"version" : "6.12.6" ,
"resolved" : "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" ,
"integrity" : "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"fast-deep-equal" : "^3.1.1" ,
"fast-json-stable-stringify" : "^2.0.0" ,
"json-schema-traverse" : "^0.4.1" ,
"uri-js" : "^4.2.2"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/epoberezkin"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/ajv-keywords" : {
"version" : "3.5.2" ,
"resolved" : "https://registry.npmmirror.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz" ,
"integrity" : "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" ,
"dev" : true ,
"license" : "MIT" ,
"peerDependencies" : {
"ajv" : "^6.9.1"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/ansi-escapes" : {
"version" : "7.2.0" ,
"resolved" : "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.2.0.tgz" ,
"integrity" : "sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"environment" : "^1.0.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/ansi-regex" : {
"version" : "6.2.2" ,
"resolved" : "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.2.2.tgz" ,
"integrity" : "sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-regex?sponsor=1"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/ansi-styles" : {
"version" : "4.3.0" ,
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" ,
"integrity" : "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"color-convert" : "^2.0.1"
} ,
"engines" : {
"node" : ">=8"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/app-builder-bin" : {
"version" : "5.0.0-alpha.12" ,
"resolved" : "https://registry.npmmirror.com/app-builder-bin/-/app-builder-bin-5.0.0-alpha.12.tgz" ,
"integrity" : "sha512-j87o0j6LqPL3QRr8yid6c+Tt5gC7xNfYo6uQIQkorAC6MpeayVMZrEDzKmJJ/Hlv7EnOQpaRm53k6ktDYZyB6w==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/app-builder-lib" : {
"version" : "26.0.12" ,
"resolved" : "https://registry.npmmirror.com/app-builder-lib/-/app-builder-lib-26.0.12.tgz" ,
"integrity" : "sha512-+/CEPH1fVKf6HowBUs6LcAIoRcjeqgvAeoSE+cl7Y7LndyQ9ViGPYibNk7wmhMHzNgHIuIbw4nWADPO+4mjgWw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@develar/schema-utils" : "~2.6.5" ,
"@electron/asar" : "3.2.18" ,
"@electron/fuses" : "^1.8.0" ,
"@electron/notarize" : "2.5.0" ,
"@electron/osx-sign" : "1.3.1" ,
"@electron/rebuild" : "3.7.0" ,
"@electron/universal" : "2.0.1" ,
"@malept/flatpak-bundler" : "^0.4.0" ,
"@types/fs-extra" : "9.0.13" ,
"async-exit-hook" : "^2.0.1" ,
"builder-util" : "26.0.11" ,
"builder-util-runtime" : "9.3.1" ,
"chromium-pickle-js" : "^0.2.0" ,
"config-file-ts" : "0.2.8-rc1" ,
"debug" : "^4.3.4" ,
"dotenv" : "^16.4.5" ,
"dotenv-expand" : "^11.0.6" ,
"ejs" : "^3.1.8" ,
"electron-publish" : "26.0.11" ,
"fs-extra" : "^10.1.0" ,
"hosted-git-info" : "^4.1.0" ,
"is-ci" : "^3.0.0" ,
"isbinaryfile" : "^5.0.0" ,
"js-yaml" : "^4.1.0" ,
"json5" : "^2.2.3" ,
"lazy-val" : "^1.0.5" ,
"minimatch" : "^10.0.0" ,
"plist" : "3.1.0" ,
"resedit" : "^1.7.0" ,
"semver" : "^7.3.8" ,
"tar" : "^6.1.12" ,
"temp-file" : "^3.4.0" ,
"tiny-async-pool" : "1.3.0"
} ,
"engines" : {
"node" : ">=14.0.0"
} ,
"peerDependencies" : {
"dmg-builder" : "26.0.12" ,
"electron-builder-squirrel-windows" : "26.0.12"
}
} ,
"node_modules/app-builder-lib/node_modules/fs-extra" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" ,
"integrity" : "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/app-builder-lib/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/app-builder-lib/node_modules/minimatch" : {
"version" : "10.1.1" ,
"resolved" : "https://registry.npmmirror.com/minimatch/-/minimatch-10.1.1.tgz" ,
"integrity" : "sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0" ,
"dependencies" : {
"@isaacs/brace-expansion" : "^5.0.0"
} ,
"engines" : {
"node" : "20 || >=22"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/app-builder-lib/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/argparse" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz" ,
"integrity" : "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" ,
"dev" : true ,
"license" : "Python-2.0"
} ,
"node_modules/aria-hidden" : {
"version" : "1.2.4" ,
"resolved" : "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz" ,
"integrity" : "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==" ,
"license" : "MIT" ,
"dependencies" : {
"tslib" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/aria-query" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz" ,
"integrity" : "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/array-buffer-byte-length" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz" ,
"integrity" : "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.3" ,
"is-array-buffer" : "^3.0.5"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/array-includes" : {
"version" : "3.1.9" ,
"resolved" : "https://registry.npmjs.org/array-includes/-/array-includes-3.1.9.tgz" ,
"integrity" : "sha512-FmeCCAenzH0KH381SPT5FZmiA/TmpndpcaShhfgEN9eCVjnFBqq3l1xrI42y8+PPLI6hypzou4GXw00WHmPBLQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.4" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.24.0" ,
"es-object-atoms" : "^1.1.1" ,
"get-intrinsic" : "^1.3.0" ,
"is-string" : "^1.1.1" ,
"math-intrinsics" : "^1.1.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/array.prototype.findlast" : {
"version" : "1.2.5" ,
"resolved" : "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz" ,
"integrity" : "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.7" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.2" ,
"es-errors" : "^1.3.0" ,
"es-object-atoms" : "^1.0.0" ,
"es-shim-unscopables" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/array.prototype.findlastindex" : {
"version" : "1.2.6" ,
"resolved" : "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.6.tgz" ,
"integrity" : "sha512-F/TKATkzseUExPlfvmwQKGITM3DGTK+vkAsCZoDc5daVygbJBnjEUCbgkAvVFsgfXfX4YIqZ/27G3k3tdXrTxQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.4" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.9" ,
"es-errors" : "^1.3.0" ,
"es-object-atoms" : "^1.1.1" ,
"es-shim-unscopables" : "^1.1.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/array.prototype.flat" : {
"version" : "1.3.3" ,
"resolved" : "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz" ,
"integrity" : "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.5" ,
"es-shim-unscopables" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/array.prototype.flatmap" : {
"version" : "1.3.3" ,
"resolved" : "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz" ,
"integrity" : "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.5" ,
"es-shim-unscopables" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/array.prototype.tosorted" : {
"version" : "1.1.4" ,
"resolved" : "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz" ,
"integrity" : "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.7" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.3" ,
"es-errors" : "^1.3.0" ,
"es-shim-unscopables" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/arraybuffer.prototype.slice" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz" ,
"integrity" : "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"array-buffer-byte-length" : "^1.0.1" ,
"call-bind" : "^1.0.8" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.5" ,
"es-errors" : "^1.3.0" ,
"get-intrinsic" : "^1.2.6" ,
"is-array-buffer" : "^3.0.4"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/assert-plus" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/assert-plus/-/assert-plus-1.0.0.tgz" ,
"integrity" : "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"engines" : {
"node" : ">=0.8"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/ast-types-flow" : {
"version" : "0.0.8" ,
"resolved" : "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz" ,
"integrity" : "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/astral-regex" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmmirror.com/astral-regex/-/astral-regex-2.0.0.tgz" ,
"integrity" : "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/async" : {
"version" : "3.2.6" ,
"resolved" : "https://registry.npmmirror.com/async/-/async-3.2.6.tgz" ,
"integrity" : "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/async-exit-hook" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/async-exit-hook/-/async-exit-hook-2.0.1.tgz" ,
"integrity" : "sha512-NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.12.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/async-function" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/async-function/-/async-function-1.0.0.tgz" ,
"integrity" : "sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/asynckit" : {
"version" : "0.4.0" ,
"resolved" : "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" ,
"integrity" : "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/at-least-node" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/at-least-node/-/at-least-node-1.0.0.tgz" ,
"integrity" : "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">= 4.0.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/available-typed-arrays" : {
"version" : "1.0.7" ,
"resolved" : "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz" ,
"integrity" : "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"possible-typed-array-names" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/aws4fetch" : {
"version" : "1.0.20" ,
"resolved" : "https://registry.npmjs.org/aws4fetch/-/aws4fetch-1.0.20.tgz" ,
"integrity" : "sha512-/djoAN709iY65ETD6LKCtyyEI04XIBP5xVvfmNxsEP0uJB5tyaGBztSryRr4HqMStr9R06PisQE7m9zDTXKu6g==" ,
"license" : "MIT"
} ,
"node_modules/axe-core" : {
"version" : "4.11.0" ,
"resolved" : "https://registry.npmjs.org/axe-core/-/axe-core-4.11.0.tgz" ,
"integrity" : "sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==" ,
"dev" : true ,
"license" : "MPL-2.0" ,
"engines" : {
"node" : ">=4"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/axios" : {
"version" : "1.13.2" ,
"resolved" : "https://registry.npmmirror.com/axios/-/axios-1.13.2.tgz" ,
"integrity" : "sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"follow-redirects" : "^1.15.6" ,
"form-data" : "^4.0.4" ,
"proxy-from-env" : "^1.1.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/axobject-query" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz" ,
"integrity" : "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/bail" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz" ,
"integrity" : "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/balanced-match" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz" ,
"integrity" : "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/base-64" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/base-64/-/base-64-1.0.0.tgz" ,
"integrity" : "sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==" ,
"license" : "MIT"
} ,
2025-12-08 18:56:34 +09:00
"node_modules/base64-js" : {
"version" : "1.5.1" ,
"resolved" : "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" ,
"integrity" : "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/baseline-browser-mapping" : {
"version" : "2.8.31" ,
"resolved" : "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.31.tgz" ,
"integrity" : "sha512-a28v2eWrrRWPpJSzxc+mKwm0ZtVx/G8SepdQZDArnXYU/XS+IF6mp8aB/4E+hH1tyGCoDo3KlUCdlSxGDsRkAw==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"bin" : {
"baseline-browser-mapping" : "dist/cli.js"
}
} ,
"node_modules/bl" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmmirror.com/bl/-/bl-4.1.0.tgz" ,
"integrity" : "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"buffer" : "^5.5.0" ,
"inherits" : "^2.0.4" ,
"readable-stream" : "^3.4.0"
}
} ,
"node_modules/boolean" : {
"version" : "3.2.0" ,
"resolved" : "https://registry.npmmirror.com/boolean/-/boolean-3.2.0.tgz" ,
"integrity" : "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==" ,
"deprecated" : "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info." ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true
} ,
"node_modules/bowser" : {
"version" : "2.13.1" ,
"resolved" : "https://registry.npmjs.org/bowser/-/bowser-2.13.1.tgz" ,
"integrity" : "sha512-OHawaAbjwx6rqICCKgSG0SAnT05bzd7ppyKLVUITZpANBaaMFBAsaNkto3LoQ31tyFP5kNujE8Cdx85G9VzOkw==" ,
"license" : "MIT"
} ,
"node_modules/brace-expansion" : {
"version" : "1.1.12" ,
"resolved" : "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz" ,
"integrity" : "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0" ,
"concat-map" : "0.0.1"
}
} ,
"node_modules/braces" : {
"version" : "3.0.3" ,
"resolved" : "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz" ,
"integrity" : "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"fill-range" : "^7.1.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/browserslist" : {
"version" : "4.28.0" ,
"resolved" : "https://registry.npmjs.org/browserslist/-/browserslist-4.28.0.tgz" ,
"integrity" : "sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==" ,
"dev" : true ,
"funding" : [
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/browserslist"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/browserslist"
} ,
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"baseline-browser-mapping" : "^2.8.25" ,
"caniuse-lite" : "^1.0.30001754" ,
"electron-to-chromium" : "^1.5.249" ,
"node-releases" : "^2.0.27" ,
"update-browserslist-db" : "^1.1.4"
} ,
"bin" : {
"browserslist" : "cli.js"
} ,
"engines" : {
"node" : "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
}
} ,
"node_modules/buffer" : {
"version" : "5.7.1" ,
"resolved" : "https://registry.npmmirror.com/buffer/-/buffer-5.7.1.tgz" ,
"integrity" : "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==" ,
"dev" : true ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"base64-js" : "^1.3.1" ,
"ieee754" : "^1.1.13"
}
} ,
"node_modules/buffer-crc32" : {
"version" : "0.2.13" ,
"resolved" : "https://registry.npmmirror.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz" ,
"integrity" : "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : "*"
}
} ,
"node_modules/buffer-from" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmmirror.com/buffer-from/-/buffer-from-1.1.2.tgz" ,
"integrity" : "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/builder-util" : {
"version" : "26.0.11" ,
"resolved" : "https://registry.npmmirror.com/builder-util/-/builder-util-26.0.11.tgz" ,
"integrity" : "sha512-xNjXfsldUEe153h1DraD0XvDOpqGR0L5eKFkdReB7eFW5HqysDZFfly4rckda6y9dF39N3pkPlOblcfHKGw+uA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/debug" : "^4.1.6" ,
"7zip-bin" : "~5.2.0" ,
"app-builder-bin" : "5.0.0-alpha.12" ,
"builder-util-runtime" : "9.3.1" ,
"chalk" : "^4.1.2" ,
"cross-spawn" : "^7.0.6" ,
"debug" : "^4.3.4" ,
"fs-extra" : "^10.1.0" ,
"http-proxy-agent" : "^7.0.0" ,
"https-proxy-agent" : "^7.0.0" ,
"is-ci" : "^3.0.0" ,
"js-yaml" : "^4.1.0" ,
"sanitize-filename" : "^1.6.3" ,
"source-map-support" : "^0.5.19" ,
"stat-mode" : "^1.0.0" ,
"temp-file" : "^3.4.0" ,
"tiny-async-pool" : "1.3.0"
}
} ,
"node_modules/builder-util-runtime" : {
"version" : "9.3.1" ,
"resolved" : "https://registry.npmmirror.com/builder-util-runtime/-/builder-util-runtime-9.3.1.tgz" ,
"integrity" : "sha512-2/egrNDDnRaxVwK3A+cJq6UOlqOdedGA7JPqCeJjN2Zjk1/QB/6QUi3b714ScIGS7HafFXTyzJEOr5b44I3kvQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "^4.3.4" ,
"sax" : "^1.2.4"
} ,
"engines" : {
"node" : ">=12.0.0"
}
} ,
"node_modules/builder-util/node_modules/fs-extra" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" ,
"integrity" : "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/builder-util/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/builder-util/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/cacache" : {
"version" : "16.1.3" ,
"resolved" : "https://registry.npmmirror.com/cacache/-/cacache-16.1.3.tgz" ,
"integrity" : "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"@npmcli/fs" : "^2.1.0" ,
"@npmcli/move-file" : "^2.0.0" ,
"chownr" : "^2.0.0" ,
"fs-minipass" : "^2.1.0" ,
"glob" : "^8.0.1" ,
"infer-owner" : "^1.0.4" ,
"lru-cache" : "^7.7.1" ,
"minipass" : "^3.1.6" ,
"minipass-collect" : "^1.0.2" ,
"minipass-flush" : "^1.0.5" ,
"minipass-pipeline" : "^1.2.4" ,
"mkdirp" : "^1.0.4" ,
"p-map" : "^4.0.0" ,
"promise-inflight" : "^1.0.1" ,
"rimraf" : "^3.0.2" ,
"ssri" : "^9.0.0" ,
"tar" : "^6.1.11" ,
"unique-filename" : "^2.0.0"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
"node_modules/cacache/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0"
}
} ,
"node_modules/cacache/node_modules/glob" : {
"version" : "8.1.0" ,
"resolved" : "https://registry.npmmirror.com/glob/-/glob-8.1.0.tgz" ,
"integrity" : "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==" ,
"deprecated" : "Glob versions prior to v9 are no longer supported" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"fs.realpath" : "^1.0.0" ,
"inflight" : "^1.0.4" ,
"inherits" : "2" ,
"minimatch" : "^5.0.1" ,
"once" : "^1.3.0"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/cacache/node_modules/lru-cache" : {
"version" : "7.18.3" ,
"resolved" : "https://registry.npmmirror.com/lru-cache/-/lru-cache-7.18.3.tgz" ,
"integrity" : "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "ISC" ,
"engines" : {
"node" : ">=12"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/cacache/node_modules/minimatch" : {
"version" : "5.1.6" ,
"resolved" : "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz" ,
"integrity" : "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "ISC" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-22 09:18:21 +08:00
"brace-expansion" : "^2.0.1"
} ,
"engines" : {
"node" : ">=10"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/cacheable-lookup" : {
"version" : "5.0.4" ,
"resolved" : "https://registry.npmmirror.com/cacheable-lookup/-/cacheable-lookup-5.0.4.tgz" ,
"integrity" : "sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">=10.6.0"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/cacheable-request" : {
"version" : "7.0.4" ,
"resolved" : "https://registry.npmmirror.com/cacheable-request/-/cacheable-request-7.0.4.tgz" ,
"integrity" : "sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-12-22 09:18:21 +08:00
"clone-response" : "^1.0.2" ,
"get-stream" : "^5.1.0" ,
"http-cache-semantics" : "^4.0.0" ,
"keyv" : "^4.0.0" ,
"lowercase-keys" : "^2.0.0" ,
"normalize-url" : "^6.0.1" ,
"responselike" : "^2.0.0"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">=8"
2025-11-29 12:39:35 +08:00
}
} ,
"node_modules/call-bind" : {
"version" : "1.0.8" ,
"resolved" : "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz" ,
"integrity" : "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind-apply-helpers" : "^1.0.0" ,
"es-define-property" : "^1.0.0" ,
"get-intrinsic" : "^1.2.4" ,
"set-function-length" : "^1.2.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/call-bind-apply-helpers" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz" ,
"integrity" : "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==" ,
"license" : "MIT" ,
"dependencies" : {
"es-errors" : "^1.3.0" ,
"function-bind" : "^1.1.2"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/call-bound" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmjs.org/call-bound/-/call-bound-1.0.4.tgz" ,
"integrity" : "sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind-apply-helpers" : "^1.0.2" ,
"get-intrinsic" : "^1.3.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/callsites" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" ,
"integrity" : "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/caniuse-lite" : {
"version" : "1.0.30001757" ,
"resolved" : "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001757.tgz" ,
"integrity" : "sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==" ,
"funding" : [
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/browserslist"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/caniuse-lite"
} ,
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
"license" : "CC-BY-4.0"
} ,
"node_modules/ccount" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz" ,
"integrity" : "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/chalk" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz" ,
"integrity" : "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^4.1.0" ,
"supports-color" : "^7.1.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/chalk/chalk?sponsor=1"
}
} ,
"node_modules/character-entities" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz" ,
"integrity" : "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/character-entities-html4" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz" ,
"integrity" : "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/character-entities-legacy" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz" ,
"integrity" : "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/character-reference-invalid" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz" ,
"integrity" : "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/chownr" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmmirror.com/chownr/-/chownr-2.0.0.tgz" ,
"integrity" : "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/chromium-pickle-js" : {
"version" : "0.2.0" ,
"resolved" : "https://registry.npmmirror.com/chromium-pickle-js/-/chromium-pickle-js-0.2.0.tgz" ,
"integrity" : "sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/ci-info" : {
"version" : "3.9.0" ,
"resolved" : "https://registry.npmmirror.com/ci-info/-/ci-info-3.9.0.tgz" ,
"integrity" : "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==" ,
"dev" : true ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/sibiraj-s"
}
] ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/class-variance-authority" : {
"version" : "0.7.1" ,
"resolved" : "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz" ,
"integrity" : "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"clsx" : "^2.1.1"
} ,
"funding" : {
"url" : "https://polar.sh/cva"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/clean-stack" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmmirror.com/clean-stack/-/clean-stack-2.2.0.tgz" ,
"integrity" : "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/cli-cursor" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz" ,
"integrity" : "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"restore-cursor" : "^5.0.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/cli-spinners" : {
"version" : "2.9.2" ,
"resolved" : "https://registry.npmmirror.com/cli-spinners/-/cli-spinners-2.9.2.tgz" ,
"integrity" : "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/cli-truncate" : {
"version" : "5.1.1" ,
"resolved" : "https://registry.npmjs.org/cli-truncate/-/cli-truncate-5.1.1.tgz" ,
"integrity" : "sha512-SroPvNHxUnk+vIW/dOSfNqdy1sPEFkrTk6TUtqLCnBlo3N7TNYYkzzN7uSD6+jVjrdO4+p8nH7JzH6cIvUem6A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"slice-ansi" : "^7.1.0" ,
"string-width" : "^8.0.0"
} ,
"engines" : {
"node" : ">=20"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/client-only" : {
"version" : "0.0.1" ,
"resolved" : "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz" ,
"integrity" : "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/cliui" : {
"version" : "8.0.1" ,
"resolved" : "https://registry.npmmirror.com/cliui/-/cliui-8.0.1.tgz" ,
"integrity" : "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"string-width" : "^4.2.0" ,
"strip-ansi" : "^6.0.1" ,
"wrap-ansi" : "^7.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/cliui/node_modules/ansi-regex" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" ,
"integrity" : "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/cliui/node_modules/emoji-regex" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz" ,
"integrity" : "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/cliui/node_modules/is-fullwidth-code-point" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" ,
"integrity" : "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/cliui/node_modules/string-width" : {
"version" : "4.2.3" ,
"resolved" : "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz" ,
"integrity" : "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"emoji-regex" : "^8.0.0" ,
"is-fullwidth-code-point" : "^3.0.0" ,
"strip-ansi" : "^6.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/cliui/node_modules/strip-ansi" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/cliui/node_modules/wrap-ansi" : {
"version" : "7.0.0" ,
"resolved" : "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz" ,
"integrity" : "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^4.0.0" ,
"string-width" : "^4.1.0" ,
"strip-ansi" : "^6.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
}
} ,
"node_modules/clone" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmmirror.com/clone/-/clone-1.0.4.tgz" ,
"integrity" : "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.8"
}
} ,
"node_modules/clone-response" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmmirror.com/clone-response/-/clone-response-1.0.3.tgz" ,
"integrity" : "sha512-ROoL94jJH2dUVML2Y/5PEDNaSHgeOdSDicUyS7izcF63G6sTc/FTjLub4b8Il9S8S0beOfYt0TaA5qvFK+w0wA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"mimic-response" : "^1.0.0"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/clsx" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz" ,
"integrity" : "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
feat: multi-provider model configuration with UI/UX improvements (#355)
* feat: add multi-provider model configuration
- Add model config dialog for managing multiple AI providers
- Support for OpenAI, Anthropic, Google, Azure, Bedrock, OpenRouter, DeepSeek, SiliconFlow, Ollama, and AI Gateway
- Add model selector dropdown in chat panel header
- Add API key validation endpoint
- Add custom model ID input with keyboard navigation
- Fix hover highlight in Command component
- Add suggested models for each provider including latest Claude 4.5 series
- Store configuration locally in browser
* feat: improve model config UI and move selector to chat input
- Move model selector from header to chat input (left of send button)
- Add per-model validation status (queued, running, valid, invalid)
- Filter model selector to only show verified models
- Add editable model IDs in config dialog
- Add custom model input field alongside suggested models dropdown
- Fix hover states on provider buttons and select triggers
- Update OpenAI suggested models with GPT-5 series
- Add alert-dialog component for delete confirmation
* refactor: revert shadcn component changes, apply hover fix at usage site
* feat: add AWS credentials support for Bedrock provider
- Add AWS Access Key ID, Secret Access Key, Region fields for Bedrock
- Show different credential fields based on provider type
- Update validation API to handle Bedrock with AWS credentials
- Add region selector with common AWS regions
* fix: reset Test button after validation completes
* fix: reset validation button to Test after success
* fix: complete bedrock support and UI/UX improvements
- Add bedrock to ALLOWED_CLIENT_PROVIDERS for client credentials
- Pass AWS credentials through full chain (headers → API → provider)
- Replace non-existent GPT-5 models with real ones (o1, o3-mini)
- Add accessibility: aria-labels, focus-visible rings, inline errors
- Add more AWS regions (Ohio, London, Paris, Mumbai, Seoul, São Paulo)
- Fix setTimeout cleanup with useRef on component unmount
- Fix TypeScript type consistency in getSelectedAIConfig fallback
* chore: remove unused code
- Remove unused setAccessCodeRequired state in chat-panel.tsx
- Remove unused getSelectedModel export in model-config.ts
* fix: UI/UX improvements for model configuration dialog
- Add gradient header styling with icon badge
- Change Configuration section icon from Key to Settings2
- Add duplicate model detection with warning banner and inline removal
- Filter out already-added models from suggestions dropdown
- Add type-to-confirm for deleting providers with 3+ models
- Enhance delete confirmation dialog with warning icon
- Improve model selector discoverability (show model name + chevron)
- Add truncation for long model names with title tooltip
- Remove AI provider settings from Settings dialog (now in Model Config)
- Extract ValidationButton into reusable component
* fix: prevent duplicate model IDs within same provider
- Block adding model if ID already exists in provider
- Block editing model ID to match existing model in provider
* fix: improve duplicate model ID notifications
- Add toast notification when trying to add duplicate model
- Allow free typing when editing model ID, validate on blur
- Show warning toast instead of blocking input
* fix: improve duplicate model validation UX in config dialog
- Add inline error display for duplicate model IDs
- Show red border on input when error exists
- Validate on blur with shake animation for edit errors
- Prevent saving empty model names
- Clear errors when user starts typing
- Simplify error styling (small red text, no heavy chips)
2025-12-22 22:36:36 +09:00
"node_modules/cmdk" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/cmdk/-/cmdk-1.1.1.tgz" ,
"integrity" : "sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==" ,
"license" : "MIT" ,
"dependencies" : {
"@radix-ui/react-compose-refs" : "^1.1.1" ,
"@radix-ui/react-dialog" : "^1.1.6" ,
"@radix-ui/react-id" : "^1.1.0" ,
"@radix-ui/react-primitive" : "^2.0.2"
} ,
"peerDependencies" : {
"react" : "^18 || ^19 || ^19.0.0-rc" ,
"react-dom" : "^18 || ^19 || ^19.0.0-rc"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/color-convert" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" ,
"integrity" : "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" ,
2025-12-04 13:48:30 +09:00
"dev" : true ,
2025-11-29 12:39:35 +08:00
"license" : "MIT" ,
"dependencies" : {
"color-name" : "~1.1.4"
} ,
"engines" : {
"node" : ">=7.0.0"
}
} ,
"node_modules/color-name" : {
"version" : "1.1.4" ,
"resolved" : "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" ,
"integrity" : "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" ,
2025-12-04 13:48:30 +09:00
"dev" : true ,
2025-11-29 12:39:35 +08:00
"license" : "MIT"
} ,
2025-12-06 12:46:40 +09:00
"node_modules/colorette" : {
"version" : "2.0.20" ,
"resolved" : "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz" ,
"integrity" : "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/combined-stream" : {
"version" : "1.0.8" ,
"resolved" : "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" ,
"integrity" : "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" ,
"license" : "MIT" ,
"dependencies" : {
"delayed-stream" : "~1.0.0"
} ,
"engines" : {
"node" : ">= 0.8"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/comma-separated-tokens" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz" ,
"integrity" : "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==" ,
"license" : "MIT" ,
"funding" : {
2025-12-22 09:18:21 +08:00
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/commander" : {
"version" : "14.0.2" ,
"resolved" : "https://registry.npmjs.org/commander/-/commander-14.0.2.tgz" ,
"integrity" : "sha512-TywoWNNRbhoD0BXs1P3ZEScW8W5iKrnbithIl0YH+uCmBd0QpPOA8yc82DS3BIE5Ma6FnBVUsJ7wVUDz4dvOWQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=20"
}
} ,
"node_modules/compare-version" : {
"version" : "0.1.2" ,
"resolved" : "https://registry.npmmirror.com/compare-version/-/compare-version-0.1.2.tgz" ,
"integrity" : "sha512-pJDh5/4wrEnXX/VWRZvruAGHkzKdr46z11OlTPN+VrATlWWhSKewNCJ1futCO5C7eJB3nPMFZA1LeYtcFboZ2A==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/concat-map" : {
"version" : "0.0.1" ,
"resolved" : "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" ,
"integrity" : "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/concurrently" : {
"version" : "9.2.1" ,
"resolved" : "https://registry.npmmirror.com/concurrently/-/concurrently-9.2.1.tgz" ,
"integrity" : "sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"chalk" : "4.1.2" ,
"rxjs" : "7.8.2" ,
"shell-quote" : "1.8.3" ,
"supports-color" : "8.1.1" ,
"tree-kill" : "1.2.2" ,
"yargs" : "17.7.2"
} ,
"bin" : {
"conc" : "dist/bin/concurrently.js" ,
"concurrently" : "dist/bin/concurrently.js"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/open-cli-tools/concurrently?sponsor=1"
}
} ,
"node_modules/concurrently/node_modules/supports-color" : {
"version" : "8.1.1" ,
"resolved" : "https://registry.npmmirror.com/supports-color/-/supports-color-8.1.1.tgz" ,
"integrity" : "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"has-flag" : "^4.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/chalk/supports-color?sponsor=1"
}
} ,
"node_modules/config-file-ts" : {
"version" : "0.2.8-rc1" ,
"resolved" : "https://registry.npmmirror.com/config-file-ts/-/config-file-ts-0.2.8-rc1.tgz" ,
"integrity" : "sha512-GtNECbVI82bT4RiDIzBSVuTKoSHufnU7Ce7/42bkWZJZFLjmDF2WBpVsvRkhKCfKBnTBb3qZrBwPpFBU/Myvhg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"glob" : "^10.3.12" ,
"typescript" : "^5.4.3"
}
} ,
"node_modules/config-file-ts/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0"
}
} ,
"node_modules/config-file-ts/node_modules/glob" : {
"version" : "10.5.0" ,
"resolved" : "https://registry.npmmirror.com/glob/-/glob-10.5.0.tgz" ,
"integrity" : "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"foreground-child" : "^3.1.0" ,
"jackspeak" : "^3.1.2" ,
"minimatch" : "^9.0.4" ,
"minipass" : "^7.1.2" ,
"package-json-from-dist" : "^1.0.0" ,
"path-scurry" : "^1.11.1"
} ,
"bin" : {
"glob" : "dist/esm/bin.mjs"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/config-file-ts/node_modules/minimatch" : {
"version" : "9.0.5" ,
"resolved" : "https://registry.npmmirror.com/minimatch/-/minimatch-9.0.5.tgz" ,
"integrity" : "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"brace-expansion" : "^2.0.1"
} ,
"engines" : {
"node" : ">=16 || 14 >=14.17"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
2025-12-05 22:42:39 +09:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/config-file-ts/node_modules/minipass" : {
"version" : "7.1.2" ,
"resolved" : "https://registry.npmmirror.com/minipass/-/minipass-7.1.2.tgz" ,
"integrity" : "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" ,
2025-12-06 12:46:40 +09:00
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "ISC" ,
2025-12-06 12:46:40 +09:00
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">=16 || 14 >=14.17"
2025-12-06 12:46:40 +09:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/convert-source-map" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz" ,
"integrity" : "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/core-util-is" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmmirror.com/core-util-is/-/core-util-is-1.0.2.tgz" ,
"integrity" : "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true
} ,
"node_modules/crc" : {
"version" : "3.8.0" ,
"resolved" : "https://registry.npmmirror.com/crc/-/crc-3.8.0.tgz" ,
"integrity" : "sha512-iX3mfgcTMIq3ZKLIsVFAbv7+Mc10kxabAGQb8HvjA1o3T1PIYprbakQ65d3I+2HGHt6nSKkM9PYjgoJO2KcFBQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"buffer" : "^5.1.0"
}
} ,
"node_modules/cross-dirname" : {
"version" : "0.1.0" ,
"resolved" : "https://registry.npmmirror.com/cross-dirname/-/cross-dirname-0.1.0.tgz" ,
"integrity" : "sha512-+R08/oI0nl3vfPcqftZRpytksBXDzOUveBq/NBVx0sUp1axwzPQrKinNx5yd5sxPu8j1wIy8AfnVQ+5eFdha6Q==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"peer" : true
} ,
"node_modules/cross-env" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/cross-env/-/cross-env-10.1.0.tgz" ,
"integrity" : "sha512-GsYosgnACZTADcmEyJctkJIoqAhHjttw7RsFrVoJNXbsWWqaq6Ym+7kZjq6mS45O0jij6vtiReppKQEtqWy6Dw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@epic-web/invariant" : "^1.0.0" ,
"cross-spawn" : "^7.0.6"
} ,
"bin" : {
"cross-env" : "dist/bin/cross-env.js" ,
"cross-env-shell" : "dist/bin/cross-env-shell.js"
} ,
"engines" : {
"node" : ">=20"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/cross-spawn" : {
"version" : "7.0.6" ,
"resolved" : "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz" ,
"integrity" : "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"path-key" : "^3.1.0" ,
"shebang-command" : "^2.0.0" ,
"which" : "^2.0.1"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/cssesc" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" ,
"integrity" : "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"cssesc" : "bin/cssesc"
} ,
"engines" : {
"node" : ">=4"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/cssstyle" : {
"version" : "4.3.0" ,
"resolved" : "https://registry.npmjs.org/cssstyle/-/cssstyle-4.3.0.tgz" ,
"integrity" : "sha512-6r0NiY0xizYqfBvWp1G7WXJ06/bZyrk7Dc6PHql82C/pKGUTKu4yAX4Y8JPamb1ob9nBKuxWzCGTRuGwU3yxJQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@asamuzakjp/css-color" : "^3.1.1" ,
"rrweb-cssom" : "^0.8.0"
} ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/csstype" : {
"version" : "3.1.3" ,
"resolved" : "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz" ,
"integrity" : "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" ,
"license" : "MIT"
} ,
"node_modules/damerau-levenshtein" : {
"version" : "1.0.8" ,
"resolved" : "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz" ,
"integrity" : "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" ,
"dev" : true ,
"license" : "BSD-2-Clause"
} ,
"node_modules/data-urls" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz" ,
"integrity" : "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==" ,
"license" : "MIT" ,
"dependencies" : {
"whatwg-mimetype" : "^4.0.0" ,
"whatwg-url" : "^14.0.0"
} ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/data-view-buffer" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz" ,
"integrity" : "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.3" ,
"es-errors" : "^1.3.0" ,
"is-data-view" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/data-view-byte-length" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz" ,
"integrity" : "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.3" ,
"es-errors" : "^1.3.0" ,
"is-data-view" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/inspect-js"
}
} ,
"node_modules/data-view-byte-offset" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz" ,
"integrity" : "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.2" ,
"es-errors" : "^1.3.0" ,
"is-data-view" : "^1.0.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/debug" : {
"version" : "4.4.0" ,
"resolved" : "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz" ,
"integrity" : "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==" ,
"license" : "MIT" ,
"dependencies" : {
"ms" : "^2.1.3"
} ,
"engines" : {
"node" : ">=6.0"
} ,
"peerDependenciesMeta" : {
"supports-color" : {
"optional" : true
}
}
} ,
"node_modules/decimal.js" : {
"version" : "10.5.0" ,
"resolved" : "https://registry.npmjs.org/decimal.js/-/decimal.js-10.5.0.tgz" ,
"integrity" : "sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==" ,
"license" : "MIT"
} ,
"node_modules/decode-named-character-reference" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.1.0.tgz" ,
"integrity" : "sha512-Wy+JTSbFThEOXQIR2L6mxJvEs+veIzpmqD7ynWxMXGpnk3smkHQOp6forLdHsKpAMW9iJpaBBIxz285t1n1C3w==" ,
"license" : "MIT" ,
"dependencies" : {
"character-entities" : "^2.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/decompress-response" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmmirror.com/decompress-response/-/decompress-response-6.0.0.tgz" ,
"integrity" : "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"mimic-response" : "^3.1.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/decompress-response/node_modules/mimic-response" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmmirror.com/mimic-response/-/mimic-response-3.1.0.tgz" ,
"integrity" : "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/deep-is" : {
"version" : "0.1.4" ,
"resolved" : "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz" ,
"integrity" : "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/defaults" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmmirror.com/defaults/-/defaults-1.0.4.tgz" ,
"integrity" : "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"clone" : "^1.0.2"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/defer-to-connect" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/defer-to-connect/-/defer-to-connect-2.0.1.tgz" ,
"integrity" : "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/define-data-property" : {
"version" : "1.1.4" ,
"resolved" : "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" ,
"integrity" : "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"es-define-property" : "^1.0.0" ,
"es-errors" : "^1.3.0" ,
"gopd" : "^1.0.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/define-properties" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz" ,
"integrity" : "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"define-data-property" : "^1.0.1" ,
"has-property-descriptors" : "^1.0.0" ,
"object-keys" : "^1.1.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/delayed-stream" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" ,
"integrity" : "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.4.0"
}
} ,
"node_modules/dequal" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz" ,
"integrity" : "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/detect-libc" : {
2025-12-04 13:48:30 +09:00
"version" : "2.1.2" ,
"resolved" : "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz" ,
"integrity" : "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==" ,
2025-11-29 12:39:35 +08:00
"devOptional" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=8"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/detect-node" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmmirror.com/detect-node/-/detect-node-2.1.0.tgz" ,
"integrity" : "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true
} ,
2025-11-29 12:39:35 +08:00
"node_modules/detect-node-es" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz" ,
"integrity" : "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==" ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/devlop" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz" ,
"integrity" : "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==" ,
"license" : "MIT" ,
"dependencies" : {
"dequal" : "^2.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/dir-compare" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmmirror.com/dir-compare/-/dir-compare-4.2.0.tgz" ,
"integrity" : "sha512-2xMCmOoMrdQIPHdsTawECdNPwlVFB9zGcz3kuhmBO6U3oU+UQjsue0i8ayLKpgBcm+hcXPMVSGUN9d+pvJ6+VQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"minimatch" : "^3.0.5" ,
"p-limit" : "^3.1.0 "
}
} ,
"node_modules/dmg-builder" : {
"version" : "26.0.12" ,
"resolved" : "https://registry.npmmirror.com/dmg-builder/-/dmg-builder-26.0.12.tgz" ,
"integrity" : "sha512-59CAAjAhTaIMCN8y9kD573vDkxbs1uhDcrFLHSgutYdPcGOU35Rf95725snvzEOy4BFB7+eLJ8djCNPmGwG67w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"app-builder-lib" : "26.0.12" ,
"builder-util" : "26.0.11" ,
"builder-util-runtime" : "9.3.1" ,
"fs-extra" : "^10.1.0" ,
"iconv-lite" : "^0.6.2" ,
"js-yaml" : "^4.1.0"
} ,
"optionalDependencies" : {
"dmg-license" : "^1.0.11"
}
} ,
"node_modules/dmg-builder/node_modules/fs-extra" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" ,
"integrity" : "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/dmg-builder/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/dmg-builder/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/dmg-license" : {
"version" : "1.0.11" ,
"resolved" : "https://registry.npmmirror.com/dmg-license/-/dmg-license-1.0.11.tgz" ,
"integrity" : "sha512-ZdzmqwKmECOWJpqefloC5OJy1+WZBBse5+MR88z9g9Zn4VY+WYUkAyojmhzJckH5YbbZGcYIuGAkY5/Ys5OM2Q==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"dependencies" : {
"@types/plist" : "^3.0.1" ,
"@types/verror" : "^1.10.3" ,
"ajv" : "^6.10.0" ,
"crc" : "^3.8.0" ,
"iconv-corefoundation" : "^1.1.7" ,
"plist" : "^3.0.4" ,
"smart-buffer" : "^4.0.2" ,
"verror" : "^1.10.0"
} ,
"bin" : {
"dmg-license" : "bin/dmg-license.js"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/doctrine" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" ,
"integrity" : "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"esutils" : "^2.0.2"
} ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/dotenv" : {
"version" : "16.6.1" ,
"resolved" : "https://registry.npmmirror.com/dotenv/-/dotenv-16.6.1.tgz" ,
"integrity" : "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://dotenvx.com"
}
} ,
"node_modules/dotenv-expand" : {
"version" : "11.0.7" ,
"resolved" : "https://registry.npmmirror.com/dotenv-expand/-/dotenv-expand-11.0.7.tgz" ,
"integrity" : "sha512-zIHwmZPRshsCdpMDyVsqGmgyP0yT8GAgXUnkdAoJisxvf33k7yO6OuoKmcTGuXPWSsm8Oh88nZicRLA9Y0rUeA==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"dotenv" : "^16.4.5"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://dotenvx.com"
}
} ,
"node_modules/dunder-proto" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz" ,
"integrity" : "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==" ,
"license" : "MIT" ,
"dependencies" : {
"call-bind-apply-helpers" : "^1.0.1" ,
"es-errors" : "^1.3.0" ,
"gopd" : "^1.2.0"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/eastasianwidth" : {
"version" : "0.2.0" ,
"resolved" : "https://registry.npmmirror.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz" ,
"integrity" : "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/ejs" : {
"version" : "3.1.10" ,
"resolved" : "https://registry.npmmirror.com/ejs/-/ejs-3.1.10.tgz" ,
"integrity" : "sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"jake" : "^10.8.5"
} ,
"bin" : {
"ejs" : "bin/cli.js"
} ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/electron" : {
"version" : "39.2.7" ,
"resolved" : "https://registry.npmmirror.com/electron/-/electron-39.2.7.tgz" ,
"integrity" : "sha512-KU0uFS6LSTh4aOIC3miolcbizOFP7N1M46VTYVfqIgFiuA2ilfNaOHLDS9tCMvwwHRowAsvqBrh9NgMXcTOHCQ==" ,
"dev" : true ,
"hasInstallScript" : true ,
"license" : "MIT" ,
"dependencies" : {
"@electron/get" : "^2.0.0" ,
"@types/node" : "^22.7.7" ,
"extract-zip" : "^2.0.1"
} ,
"bin" : {
"electron" : "cli.js"
} ,
"engines" : {
"node" : ">= 12.20.55"
}
} ,
"node_modules/electron-builder" : {
"version" : "26.0.12" ,
"resolved" : "https://registry.npmmirror.com/electron-builder/-/electron-builder-26.0.12.tgz" ,
"integrity" : "sha512-cD1kz5g2sgPTMFHjLxfMjUK5JABq3//J4jPswi93tOPFz6btzXYtK5NrDt717NRbukCUDOrrvmYVOWERlqoiXA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"app-builder-lib" : "26.0.12" ,
"builder-util" : "26.0.11" ,
"builder-util-runtime" : "9.3.1" ,
"chalk" : "^4.1.2" ,
"dmg-builder" : "26.0.12" ,
"fs-extra" : "^10.1.0" ,
"is-ci" : "^3.0.0" ,
"lazy-val" : "^1.0.5" ,
"simple-update-notifier" : "2.0.0" ,
"yargs" : "^17.6.2"
} ,
"bin" : {
"electron-builder" : "cli.js" ,
"install-app-deps" : "install-app-deps.js"
} ,
"engines" : {
"node" : ">=14.0.0"
}
} ,
"node_modules/electron-builder-squirrel-windows" : {
"version" : "26.0.12" ,
"resolved" : "https://registry.npmmirror.com/electron-builder-squirrel-windows/-/electron-builder-squirrel-windows-26.0.12.tgz" ,
"integrity" : "sha512-kpwXM7c/ayRUbYVErQbsZ0nQZX4aLHQrPEG9C4h9vuJCXylwFH8a7Jgi2VpKIObzCXO7LKHiCw4KdioFLFOgqA==" ,
"dev" : true ,
"license" : "MIT" ,
"peer" : true ,
"dependencies" : {
"app-builder-lib" : "26.0.12" ,
"builder-util" : "26.0.11" ,
"electron-winstaller" : "5.4.0"
}
} ,
"node_modules/electron-builder/node_modules/fs-extra" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" ,
"integrity" : "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/electron-builder/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
} ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/electron-builder/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 10.0.0"
}
} ,
"node_modules/electron-publish" : {
"version" : "26.0.11" ,
"resolved" : "https://registry.npmmirror.com/electron-publish/-/electron-publish-26.0.11.tgz" ,
"integrity" : "sha512-a8QRH0rAPIWH9WyyS5LbNvW9Ark6qe63/LqDB7vu2JXYpi0Gma5Q60Dh4tmTqhOBQt0xsrzD8qE7C+D7j+B24A==" ,
"dev" : true ,
2025-11-29 12:39:35 +08:00
"license" : "MIT" ,
"dependencies" : {
2025-12-22 09:18:21 +08:00
"@types/fs-extra" : "^9.0.11" ,
"builder-util" : "26.0.11" ,
"builder-util-runtime" : "9.3.1" ,
"chalk" : "^4.1.2" ,
"form-data" : "^4.0.0" ,
"fs-extra" : "^10.1.0" ,
"lazy-val" : "^1.0.5" ,
"mime" : "^2.5.2"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/electron-publish/node_modules/fs-extra" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" ,
"integrity" : "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-22 09:18:21 +08:00
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">=12"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/electron-publish/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
2025-11-29 12:39:35 +08:00
"license" : "MIT" ,
"dependencies" : {
2025-12-22 09:18:21 +08:00
"universalify" : "^2.0.0"
2025-11-29 12:39:35 +08:00
} ,
2025-12-22 09:18:21 +08:00
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
"node_modules/electron-publish/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">= 10.0.0"
2025-11-29 12:39:35 +08:00
}
} ,
"node_modules/electron-to-chromium" : {
"version" : "1.5.262" ,
"resolved" : "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.262.tgz" ,
"integrity" : "sha512-NlAsMteRHek05jRUxUR0a5jpjYq9ykk6+kO0yRaMi5moe7u0fVIOeQ3Y30A8dIiWFBNUoQGi1ljb1i5VtS9WQQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/electron-winstaller" : {
"version" : "5.4.0" ,
"resolved" : "https://registry.npmmirror.com/electron-winstaller/-/electron-winstaller-5.4.0.tgz" ,
"integrity" : "sha512-bO3y10YikuUwUuDUQRM4KfwNkKhnpVO7IPdbsrejwN9/AABJzzTQ4GeHwyzNSrVO+tEH3/Np255a3sVZpZDjvg==" ,
"dev" : true ,
"hasInstallScript" : true ,
"license" : "MIT" ,
"peer" : true ,
"dependencies" : {
"@electron/asar" : "^3.2.1" ,
"debug" : "^4.1.1" ,
"fs-extra" : "^7.0.1" ,
"lodash" : "^4.17.21" ,
"temp" : "^0.9.0"
} ,
"engines" : {
"node" : ">=8.0.0"
} ,
"optionalDependencies" : {
"@electron/windows-sign" : "^1.1.2"
}
} ,
"node_modules/electron-winstaller/node_modules/fs-extra" : {
"version" : "7.0.1" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-7.0.1.tgz" ,
"integrity" : "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" ,
"dev" : true ,
"license" : "MIT" ,
"peer" : true ,
"dependencies" : {
"graceful-fs" : "^4.1.2" ,
"jsonfile" : "^4.0.0" ,
"universalify" : "^0.1.0"
} ,
"engines" : {
"node" : ">=6 <7 || >=8"
}
} ,
"node_modules/electron/node_modules/@types/node" : {
"version" : "22.19.3" ,
"resolved" : "https://registry.npmmirror.com/@types/node/-/node-22.19.3.tgz" ,
"integrity" : "sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"undici-types" : "~6.21.0"
}
} ,
"node_modules/electron/node_modules/undici-types" : {
"version" : "6.21.0" ,
"resolved" : "https://registry.npmmirror.com/undici-types/-/undici-types-6.21.0.tgz" ,
"integrity" : "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/emoji-regex" : {
"version" : "9.2.2" ,
"resolved" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz" ,
"integrity" : "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/encoding" : {
"version" : "0.1.13" ,
"resolved" : "https://registry.npmmirror.com/encoding/-/encoding-0.1.13.tgz" ,
"integrity" : "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"iconv-lite" : "^0.6.2"
}
} ,
"node_modules/end-of-stream" : {
"version" : "1.4.5" ,
"resolved" : "https://registry.npmmirror.com/end-of-stream/-/end-of-stream-1.4.5.tgz" ,
"integrity" : "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"once" : "^1.4.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/enhanced-resolve" : {
"version" : "5.18.1" ,
"resolved" : "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz" ,
"integrity" : "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.4" ,
"tapable" : "^2.2.0"
} ,
"engines" : {
"node" : ">=10.13.0"
}
} ,
"node_modules/entities" : {
"version" : "4.5.0" ,
"resolved" : "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz" ,
"integrity" : "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==" ,
"license" : "BSD-2-Clause" ,
"engines" : {
"node" : ">=0.12"
} ,
"funding" : {
"url" : "https://github.com/fb55/entities?sponsor=1"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/env-paths" : {
"version" : "2.2.1" ,
"resolved" : "https://registry.npmmirror.com/env-paths/-/env-paths-2.2.1.tgz" ,
"integrity" : "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/environment" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz" ,
"integrity" : "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/err-code" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmmirror.com/err-code/-/err-code-2.0.3.tgz" ,
"integrity" : "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/es-abstract" : {
"version" : "1.24.0" ,
"resolved" : "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz" ,
"integrity" : "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"array-buffer-byte-length" : "^1.0.2" ,
"arraybuffer.prototype.slice" : "^1.0.4" ,
"available-typed-arrays" : "^1.0.7" ,
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.4" ,
"data-view-buffer" : "^1.0.2" ,
"data-view-byte-length" : "^1.0.2" ,
"data-view-byte-offset" : "^1.0.1" ,
"es-define-property" : "^1.0.1" ,
"es-errors" : "^1.3.0" ,
"es-object-atoms" : "^1.1.1" ,
"es-set-tostringtag" : "^2.1.0" ,
"es-to-primitive" : "^1.3.0" ,
"function.prototype.name" : "^1.1.8" ,
"get-intrinsic" : "^1.3.0" ,
"get-proto" : "^1.0.1" ,
"get-symbol-description" : "^1.1.0" ,
"globalthis" : "^1.0.4" ,
"gopd" : "^1.2.0" ,
"has-property-descriptors" : "^1.0.2" ,
"has-proto" : "^1.2.0" ,
"has-symbols" : "^1.1.0" ,
"hasown" : "^2.0.2" ,
"internal-slot" : "^1.1.0" ,
"is-array-buffer" : "^3.0.5" ,
"is-callable" : "^1.2.7" ,
"is-data-view" : "^1.0.2" ,
"is-negative-zero" : "^2.0.3" ,
"is-regex" : "^1.2.1" ,
"is-set" : "^2.0.3" ,
"is-shared-array-buffer" : "^1.0.4" ,
"is-string" : "^1.1.1" ,
"is-typed-array" : "^1.1.15" ,
"is-weakref" : "^1.1.1" ,
"math-intrinsics" : "^1.1.0" ,
"object-inspect" : "^1.13.4" ,
"object-keys" : "^1.1.1" ,
"object.assign" : "^4.1.7" ,
"own-keys" : "^1.0.1" ,
"regexp.prototype.flags" : "^1.5.4" ,
"safe-array-concat" : "^1.1.3" ,
"safe-push-apply" : "^1.0.0" ,
"safe-regex-test" : "^1.1.0" ,
"set-proto" : "^1.0.0" ,
"stop-iteration-iterator" : "^1.1.0" ,
"string.prototype.trim" : "^1.2.10" ,
"string.prototype.trimend" : "^1.0.9" ,
"string.prototype.trimstart" : "^1.0.8" ,
"typed-array-buffer" : "^1.0.3" ,
"typed-array-byte-length" : "^1.0.3" ,
"typed-array-byte-offset" : "^1.0.4" ,
"typed-array-length" : "^1.0.7" ,
"unbox-primitive" : "^1.1.0" ,
"which-typed-array" : "^1.1.19"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/es-define-property" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz" ,
"integrity" : "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/es-errors" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" ,
"integrity" : "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/es-iterator-helpers" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz" ,
"integrity" : "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.3" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.6" ,
"es-errors" : "^1.3.0" ,
"es-set-tostringtag" : "^2.0.3" ,
"function-bind" : "^1.1.2" ,
"get-intrinsic" : "^1.2.6" ,
"globalthis" : "^1.0.4" ,
"gopd" : "^1.2.0" ,
"has-property-descriptors" : "^1.0.2" ,
"has-proto" : "^1.2.0" ,
"has-symbols" : "^1.1.0" ,
"internal-slot" : "^1.1.0" ,
"iterator.prototype" : "^1.1.4" ,
"safe-array-concat" : "^1.1.3"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/es-object-atoms" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz" ,
"integrity" : "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==" ,
"license" : "MIT" ,
"dependencies" : {
"es-errors" : "^1.3.0"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/es-set-tostringtag" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz" ,
"integrity" : "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==" ,
"license" : "MIT" ,
"dependencies" : {
"es-errors" : "^1.3.0" ,
"get-intrinsic" : "^1.2.6" ,
"has-tostringtag" : "^1.0.2" ,
"hasown" : "^2.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/es-shim-unscopables" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.1.0.tgz" ,
"integrity" : "sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"hasown" : "^2.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/es-to-primitive" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz" ,
"integrity" : "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-callable" : "^1.2.7" ,
"is-date-object" : "^1.0.5" ,
"is-symbol" : "^1.0.4"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/es6-error" : {
"version" : "4.1.1" ,
"resolved" : "https://registry.npmmirror.com/es6-error/-/es6-error-4.1.1.tgz" ,
"integrity" : "sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true
} ,
"node_modules/esbuild" : {
"version" : "0.27.2" ,
"resolved" : "https://registry.npmmirror.com/esbuild/-/esbuild-0.27.2.tgz" ,
"integrity" : "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==" ,
"dev" : true ,
"hasInstallScript" : true ,
"license" : "MIT" ,
"bin" : {
"esbuild" : "bin/esbuild"
} ,
"engines" : {
"node" : ">=18"
} ,
"optionalDependencies" : {
"@esbuild/aix-ppc64" : "0.27.2" ,
"@esbuild/android-arm" : "0.27.2" ,
"@esbuild/android-arm64" : "0.27.2" ,
"@esbuild/android-x64" : "0.27.2" ,
"@esbuild/darwin-arm64" : "0.27.2" ,
"@esbuild/darwin-x64" : "0.27.2" ,
"@esbuild/freebsd-arm64" : "0.27.2" ,
"@esbuild/freebsd-x64" : "0.27.2" ,
"@esbuild/linux-arm" : "0.27.2" ,
"@esbuild/linux-arm64" : "0.27.2" ,
"@esbuild/linux-ia32" : "0.27.2" ,
"@esbuild/linux-loong64" : "0.27.2" ,
"@esbuild/linux-mips64el" : "0.27.2" ,
"@esbuild/linux-ppc64" : "0.27.2" ,
"@esbuild/linux-riscv64" : "0.27.2" ,
"@esbuild/linux-s390x" : "0.27.2" ,
"@esbuild/linux-x64" : "0.27.2" ,
"@esbuild/netbsd-arm64" : "0.27.2" ,
"@esbuild/netbsd-x64" : "0.27.2" ,
"@esbuild/openbsd-arm64" : "0.27.2" ,
"@esbuild/openbsd-x64" : "0.27.2" ,
"@esbuild/openharmony-arm64" : "0.27.2" ,
"@esbuild/sunos-x64" : "0.27.2" ,
"@esbuild/win32-arm64" : "0.27.2" ,
"@esbuild/win32-ia32" : "0.27.2" ,
"@esbuild/win32-x64" : "0.27.2"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/escalade" : {
"version" : "3.2.0" ,
"resolved" : "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz" ,
"integrity" : "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/escape-string-regexp" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz" ,
"integrity" : "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/eslint" : {
"version" : "9.39.1" ,
"resolved" : "https://registry.npmjs.org/eslint/-/eslint-9.39.1.tgz" ,
"integrity" : "sha512-BhHmn2yNOFA9H9JmmIVKJmd288g9hrVRDkdoIgRCRuSySRUHH7r/DI6aAXW9T1WwUuY3DFgrcaqB+deURBLR5g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@eslint-community/eslint-utils" : "^4.8.0" ,
"@eslint-community/regexpp" : "^4.12.1" ,
"@eslint/config-array" : "^0.21.1" ,
"@eslint/config-helpers" : "^0.4.2" ,
"@eslint/core" : "^0.17.0" ,
"@eslint/eslintrc" : "^3.3.1" ,
"@eslint/js" : "9.39.1" ,
"@eslint/plugin-kit" : "^0.4.1" ,
"@humanfs/node" : "^0.16.6" ,
"@humanwhocodes/module-importer" : "^1.0.1" ,
"@humanwhocodes/retry" : "^0.4.2" ,
"@types/estree" : "^1.0.6" ,
"ajv" : "^6.12.4" ,
"chalk" : "^4.0.0" ,
"cross-spawn" : "^7.0.6" ,
"debug" : "^4.3.2" ,
"escape-string-regexp" : "^4.0.0" ,
"eslint-scope" : "^8.4.0" ,
"eslint-visitor-keys" : "^4.2.1" ,
"espree" : "^10.4.0" ,
"esquery" : "^1.5.0" ,
"esutils" : "^2.0.2" ,
"fast-deep-equal" : "^3.1.3" ,
"file-entry-cache" : "^8.0.0" ,
"find-up" : "^5.0.0" ,
"glob-parent" : "^6.0.2" ,
"ignore" : "^5.2.0" ,
"imurmurhash" : "^0.1.4" ,
"is-glob" : "^4.0.0" ,
"json-stable-stringify-without-jsonify" : "^1.0.1" ,
"lodash.merge" : "^4.6.2" ,
"minimatch" : "^3.1.2" ,
"natural-compare" : "^1.4.0" ,
"optionator" : "^0.9.3"
} ,
"bin" : {
"eslint" : "bin/eslint.js"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://eslint.org/donate"
} ,
"peerDependencies" : {
"jiti" : "*"
} ,
"peerDependenciesMeta" : {
"jiti" : {
"optional" : true
}
}
} ,
"node_modules/eslint-config-next" : {
"version" : "16.0.5" ,
"resolved" : "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-16.0.5.tgz" ,
"integrity" : "sha512-9rBjZ/biSpolkIUiqvx/iwJJaz8sxJ6pKWSPptJenpj01HlWbCDeaA1v0yG3a71IIPMplxVCSXhmtP27SXqMdg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@next/eslint-plugin-next" : "16.0.5" ,
"eslint-import-resolver-node" : "^0.3.6" ,
"eslint-import-resolver-typescript" : "^3.5.2" ,
"eslint-plugin-import" : "^2.32.0" ,
"eslint-plugin-jsx-a11y" : "^6.10.0" ,
"eslint-plugin-react" : "^7.37.0" ,
"eslint-plugin-react-hooks" : "^7.0.0" ,
"globals" : "16.4.0" ,
"typescript-eslint" : "^8.46.0"
} ,
"peerDependencies" : {
"eslint" : ">=9.0.0" ,
"typescript" : ">=3.3.1"
} ,
"peerDependenciesMeta" : {
"typescript" : {
"optional" : true
}
}
} ,
"node_modules/eslint-config-next/node_modules/globals" : {
"version" : "16.4.0" ,
"resolved" : "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz" ,
"integrity" : "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/eslint-import-resolver-node" : {
"version" : "0.3.9" ,
"resolved" : "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz" ,
"integrity" : "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "^3.2.7" ,
"is-core-module" : "^2.13.0" ,
"resolve" : "^1.22.4"
}
} ,
"node_modules/eslint-import-resolver-node/node_modules/debug" : {
"version" : "3.2.7" ,
"resolved" : "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" ,
"integrity" : "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ms" : "^2.1.1"
}
} ,
"node_modules/eslint-import-resolver-typescript" : {
"version" : "3.10.1" ,
"resolved" : "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.10.1.tgz" ,
"integrity" : "sha512-A1rHYb06zjMGAxdLSkN2fXPBwuSaQ0iO5M/hdyS0Ajj1VBaRp0sPD3dn1FhME3c/JluGFbwSxyCfqdSbtQLAHQ==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"@nolyfill/is-core-module" : "1.0.39" ,
"debug" : "^4.4.0" ,
"get-tsconfig" : "^4.10.0" ,
"is-bun-module" : "^2.0.0" ,
"stable-hash" : "^0.0.5" ,
"tinyglobby" : "^0.2.13" ,
"unrs-resolver" : "^1.6.2"
} ,
"engines" : {
"node" : "^14.18.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint-import-resolver-typescript"
} ,
"peerDependencies" : {
"eslint" : "*" ,
"eslint-plugin-import" : "*" ,
"eslint-plugin-import-x" : "*"
} ,
"peerDependenciesMeta" : {
"eslint-plugin-import" : {
"optional" : true
} ,
"eslint-plugin-import-x" : {
"optional" : true
}
}
} ,
"node_modules/eslint-module-utils" : {
"version" : "2.12.1" ,
"resolved" : "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.12.1.tgz" ,
"integrity" : "sha512-L8jSWTze7K2mTg0vos/RuLRS5soomksDPoJLXIslC7c8Wmut3bx7CPpJijDcBZtxQ5lrbUdM+s0OlNbz0DCDNw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "^3.2.7"
} ,
"engines" : {
"node" : ">=4"
} ,
"peerDependenciesMeta" : {
"eslint" : {
"optional" : true
}
}
} ,
"node_modules/eslint-module-utils/node_modules/debug" : {
"version" : "3.2.7" ,
"resolved" : "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" ,
"integrity" : "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ms" : "^2.1.1"
}
} ,
"node_modules/eslint-plugin-import" : {
"version" : "2.32.0" ,
"resolved" : "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.32.0.tgz" ,
"integrity" : "sha512-whOE1HFo/qJDyX4SnXzP4N6zOWn79WhnCUY/iDR0mPfQZO8wcYE4JClzI2oZrhBnnMUCBCHZhO6VQyoBU95mZA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@rtsao/scc" : "^1.1.0" ,
"array-includes" : "^3.1.9" ,
"array.prototype.findlastindex" : "^1.2.6" ,
"array.prototype.flat" : "^1.3.3" ,
"array.prototype.flatmap" : "^1.3.3" ,
"debug" : "^3.2.7" ,
"doctrine" : "^2.1.0" ,
"eslint-import-resolver-node" : "^0.3.9" ,
"eslint-module-utils" : "^2.12.1" ,
"hasown" : "^2.0.2" ,
"is-core-module" : "^2.16.1" ,
"is-glob" : "^4.0.3" ,
"minimatch" : "^3.1.2" ,
"object.fromentries" : "^2.0.8" ,
"object.groupby" : "^1.0.3" ,
"object.values" : "^1.2.1" ,
"semver" : "^6.3.1" ,
"string.prototype.trimend" : "^1.0.9" ,
"tsconfig-paths" : "^3.15.0"
} ,
"engines" : {
"node" : ">=4"
} ,
"peerDependencies" : {
"eslint" : "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9"
}
} ,
"node_modules/eslint-plugin-import/node_modules/debug" : {
"version" : "3.2.7" ,
"resolved" : "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" ,
"integrity" : "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ms" : "^2.1.1"
}
} ,
"node_modules/eslint-plugin-import/node_modules/semver" : {
"version" : "6.3.1" ,
"resolved" : "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" ,
"integrity" : "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
}
} ,
"node_modules/eslint-plugin-jsx-a11y" : {
"version" : "6.10.2" ,
"resolved" : "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.10.2.tgz" ,
"integrity" : "sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"aria-query" : "^5.3.2" ,
"array-includes" : "^3.1.8" ,
"array.prototype.flatmap" : "^1.3.2" ,
"ast-types-flow" : "^0.0.8" ,
"axe-core" : "^4.10.0" ,
"axobject-query" : "^4.1.0" ,
"damerau-levenshtein" : "^1.0.8" ,
"emoji-regex" : "^9.2.2" ,
"hasown" : "^2.0.2" ,
"jsx-ast-utils" : "^3.3.5" ,
"language-tags" : "^1.0.9" ,
"minimatch" : "^3.1.2" ,
"object.fromentries" : "^2.0.8" ,
"safe-regex-test" : "^1.0.3" ,
"string.prototype.includes" : "^2.0.1"
} ,
"engines" : {
"node" : ">=4.0"
} ,
"peerDependencies" : {
"eslint" : "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9"
}
} ,
"node_modules/eslint-plugin-react" : {
"version" : "7.37.5" ,
"resolved" : "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.5.tgz" ,
"integrity" : "sha512-Qteup0SqU15kdocexFNAJMvCJEfa2xUKNV4CC1xsVMrIIqEy3SQ/rqyxCWNzfrd3/ldy6HMlD2e0JDVpDg2qIA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"array-includes" : "^3.1.8" ,
"array.prototype.findlast" : "^1.2.5" ,
"array.prototype.flatmap" : "^1.3.3" ,
"array.prototype.tosorted" : "^1.1.4" ,
"doctrine" : "^2.1.0" ,
"es-iterator-helpers" : "^1.2.1" ,
"estraverse" : "^5.3.0" ,
"hasown" : "^2.0.2" ,
"jsx-ast-utils" : "^2.4.1 || ^3.0.0" ,
"minimatch" : "^3.1.2" ,
"object.entries" : "^1.1.9" ,
"object.fromentries" : "^2.0.8" ,
"object.values" : "^1.2.1" ,
"prop-types" : "^15.8.1" ,
"resolve" : "^2.0.0-next.5" ,
"semver" : "^6.3.1" ,
"string.prototype.matchall" : "^4.0.12" ,
"string.prototype.repeat" : "^1.0.0"
} ,
"engines" : {
"node" : ">=4"
} ,
"peerDependencies" : {
"eslint" : "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
}
} ,
"node_modules/eslint-plugin-react-hooks" : {
"version" : "7.0.1" ,
"resolved" : "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-7.0.1.tgz" ,
"integrity" : "sha512-O0d0m04evaNzEPoSW+59Mezf8Qt0InfgGIBJnpC0h3NH/WjUAR7BIKUfysC6todmtiZ/A0oUVS8Gce0WhBrHsA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@babel/core" : "^7.24.4" ,
"@babel/parser" : "^7.24.4" ,
"hermes-parser" : "^0.25.1" ,
"zod" : "^3.25.0 || ^4.0.0" ,
"zod-validation-error" : "^3.5.0 || ^4.0.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"eslint" : "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
}
} ,
"node_modules/eslint-plugin-react/node_modules/resolve" : {
"version" : "2.0.0-next.5" ,
"resolved" : "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz" ,
"integrity" : "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-core-module" : "^2.13.0" ,
"path-parse" : "^1.0.7" ,
"supports-preserve-symlinks-flag" : "^1.0.0"
} ,
"bin" : {
"resolve" : "bin/resolve"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/eslint-plugin-react/node_modules/semver" : {
"version" : "6.3.1" ,
"resolved" : "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz" ,
"integrity" : "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
}
} ,
"node_modules/eslint-scope" : {
"version" : "8.4.0" ,
"resolved" : "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz" ,
"integrity" : "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"esrecurse" : "^4.3.0" ,
"estraverse" : "^5.2.0"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
}
} ,
"node_modules/eslint-visitor-keys" : {
"version" : "4.2.1" ,
"resolved" : "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz" ,
"integrity" : "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
}
} ,
"node_modules/eslint/node_modules/escape-string-regexp" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" ,
"integrity" : "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/espree" : {
"version" : "10.4.0" ,
"resolved" : "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz" ,
"integrity" : "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"acorn" : "^8.15.0" ,
"acorn-jsx" : "^5.3.2" ,
"eslint-visitor-keys" : "^4.2.1"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"url" : "https://opencollective.com/eslint"
}
} ,
"node_modules/esquery" : {
"version" : "1.6.0" ,
"resolved" : "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz" ,
"integrity" : "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"estraverse" : "^5.1.0"
} ,
"engines" : {
"node" : ">=0.10"
}
} ,
"node_modules/esrecurse" : {
"version" : "4.3.0" ,
"resolved" : "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" ,
"integrity" : "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"estraverse" : "^5.2.0"
} ,
"engines" : {
"node" : ">=4.0"
}
} ,
"node_modules/estraverse" : {
"version" : "5.3.0" ,
"resolved" : "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz" ,
"integrity" : "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"engines" : {
"node" : ">=4.0"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/estree-util-is-identifier-name" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz" ,
"integrity" : "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==" ,
"license" : "MIT" ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/esutils" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" ,
"integrity" : "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/eventemitter3" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz" ,
"integrity" : "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/eventsource-parser" : {
"version" : "3.0.6" ,
"resolved" : "https://registry.npmjs.org/eventsource-parser/-/eventsource-parser-3.0.6.tgz" ,
"integrity" : "sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18.0.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/execa" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/execa/-/execa-1.0.0.tgz" ,
"integrity" : "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"cross-spawn" : "^6.0.0" ,
"get-stream" : "^4.0.0" ,
"is-stream" : "^1.1.0" ,
"npm-run-path" : "^2.0.0" ,
"p-finally" : "^1.0.0" ,
"signal-exit" : "^3.0.0" ,
"strip-eof" : "^1.0.0"
} ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/execa/node_modules/cross-spawn" : {
"version" : "6.0.6" ,
"resolved" : "https://registry.npmmirror.com/cross-spawn/-/cross-spawn-6.0.6.tgz" ,
"integrity" : "sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"nice-try" : "^1.0.4" ,
"path-key" : "^2.0.1" ,
"semver" : "^5.5.0" ,
"shebang-command" : "^1.2.0" ,
"which" : "^1.2.9"
} ,
"engines" : {
"node" : ">=4.8"
}
} ,
"node_modules/execa/node_modules/get-stream" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmmirror.com/get-stream/-/get-stream-4.1.0.tgz" ,
"integrity" : "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"pump" : "^3.0.0"
} ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/execa/node_modules/path-key" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz" ,
"integrity" : "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4"
}
} ,
"node_modules/execa/node_modules/semver" : {
"version" : "5.7.2" ,
"resolved" : "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz" ,
"integrity" : "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver"
}
} ,
"node_modules/execa/node_modules/shebang-command" : {
"version" : "1.2.0" ,
"resolved" : "https://registry.npmmirror.com/shebang-command/-/shebang-command-1.2.0.tgz" ,
"integrity" : "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"shebang-regex" : "^1.0.0"
} ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/execa/node_modules/shebang-regex" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/shebang-regex/-/shebang-regex-1.0.0.tgz" ,
"integrity" : "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/execa/node_modules/signal-exit" : {
"version" : "3.0.7" ,
"resolved" : "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz" ,
"integrity" : "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/execa/node_modules/which" : {
"version" : "1.3.1" ,
"resolved" : "https://registry.npmmirror.com/which/-/which-1.3.1.tgz" ,
"integrity" : "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"isexe" : "^2.0.0"
} ,
"bin" : {
"which" : "bin/which"
}
} ,
"node_modules/exponential-backoff" : {
"version" : "3.1.3" ,
"resolved" : "https://registry.npmmirror.com/exponential-backoff/-/exponential-backoff-3.1.3.tgz" ,
"integrity" : "sha512-ZgEeZXj30q+I0EN+CbSSpIyPaJ5HVQD18Z1m+u1FXbAeT94mr1zw50q4q6jiiC447Nl/YTcIYSAftiGqetwXCA==" ,
"dev" : true ,
"license" : "Apache-2.0"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/extend" : {
"version" : "3.0.2" ,
"resolved" : "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" ,
"integrity" : "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/extract-zip" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/extract-zip/-/extract-zip-2.0.1.tgz" ,
"integrity" : "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"debug" : "^4.1.1" ,
"get-stream" : "^5.1.0" ,
"yauzl" : "^2.10.0"
} ,
"bin" : {
"extract-zip" : "cli.js"
} ,
"engines" : {
"node" : ">= 10.17.0"
} ,
"optionalDependencies" : {
"@types/yauzl" : "^2.9.1"
}
} ,
"node_modules/extsprintf" : {
"version" : "1.4.1" ,
"resolved" : "https://registry.npmmirror.com/extsprintf/-/extsprintf-1.4.1.tgz" ,
"integrity" : "sha512-Wrk35e8ydCKDj/ArClo1VrPVmN8zph5V4AtHwIuHhvMXsKf73UT3BOD+azBIW+3wOJ4FhEH7zyaJCFvChjYvMA==" ,
"dev" : true ,
"engines" : [
"node >=0.6.0"
] ,
"license" : "MIT" ,
"optional" : true
} ,
2025-11-29 12:39:35 +08:00
"node_modules/fast-deep-equal" : {
"version" : "3.1.3" ,
"resolved" : "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" ,
"integrity" : "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/fast-glob" : {
"version" : "3.3.1" ,
"resolved" : "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz" ,
"integrity" : "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@nodelib/fs.stat" : "^2.0.2" ,
"@nodelib/fs.walk" : "^1.2.3" ,
"glob-parent" : "^5.1.2" ,
"merge2" : "^1.3.0" ,
"micromatch" : "^4.0.4"
} ,
"engines" : {
"node" : ">=8.6.0"
}
} ,
"node_modules/fast-glob/node_modules/glob-parent" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz" ,
"integrity" : "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"is-glob" : "^4.0.1"
} ,
"engines" : {
"node" : ">= 6"
}
} ,
"node_modules/fast-json-stable-stringify" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" ,
"integrity" : "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" ,
"dev" : true ,
"license" : "MIT"
2025-08-19 01:17:17 +00:00
} ,
2025-11-29 12:39:35 +08:00
"node_modules/fast-levenshtein" : {
"version" : "2.0.6" ,
"resolved" : "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" ,
"integrity" : "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-05 09:19:26 +09:00
"node_modules/fast-xml-parser" : {
"version" : "5.2.5" ,
"resolved" : "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.2.5.tgz" ,
"integrity" : "sha512-pfX9uG9Ki0yekDHx2SiuRIyFdyAr1kMIMitPvb0YBo8SUfKvia7w7FIyd/l6av85pFYRhZscS75MwMnbvY+hcQ==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/NaturalIntelligence"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"strnum" : "^2.1.0"
} ,
"bin" : {
"fxparser" : "src/cli/cli.js"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/fastq" : {
"version" : "1.19.1" ,
"resolved" : "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz" ,
"integrity" : "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"reusify" : "^1.0.4"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/fd-slicer" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmmirror.com/fd-slicer/-/fd-slicer-1.1.0.tgz" ,
"integrity" : "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"pend" : "~1.2.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/file-entry-cache" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz" ,
"integrity" : "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"flat-cache" : "^4.0.0"
} ,
"engines" : {
"node" : ">=16.0.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/filelist" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmmirror.com/filelist/-/filelist-1.0.4.tgz" ,
"integrity" : "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"minimatch" : "^5.0.1"
}
} ,
"node_modules/filelist/node_modules/brace-expansion" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmmirror.com/brace-expansion/-/brace-expansion-2.0.2.tgz" ,
"integrity" : "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"balanced-match" : "^1.0.0"
}
} ,
"node_modules/filelist/node_modules/minimatch" : {
"version" : "5.1.6" ,
"resolved" : "https://registry.npmmirror.com/minimatch/-/minimatch-5.1.6.tgz" ,
"integrity" : "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"brace-expansion" : "^2.0.1"
} ,
"engines" : {
"node" : ">=10"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/fill-range" : {
"version" : "7.1.1" ,
"resolved" : "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz" ,
"integrity" : "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"to-regex-range" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/find-up" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz" ,
"integrity" : "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"locate-path" : "^6.0.0" ,
"path-exists" : "^4.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/flat-cache" : {
"version" : "4.0.1" ,
"resolved" : "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz" ,
"integrity" : "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"flatted" : "^3.2.9" ,
"keyv" : "^4.5.4"
} ,
"engines" : {
"node" : ">=16"
}
} ,
"node_modules/flatted" : {
"version" : "3.3.3" ,
"resolved" : "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz" ,
"integrity" : "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==" ,
"dev" : true ,
"license" : "ISC"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/follow-redirects" : {
"version" : "1.15.11" ,
"resolved" : "https://registry.npmmirror.com/follow-redirects/-/follow-redirects-1.15.11.tgz" ,
"integrity" : "sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==" ,
"dev" : true ,
"funding" : [
{
"type" : "individual" ,
"url" : "https://github.com/sponsors/RubenVerborgh"
}
] ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4.0"
} ,
"peerDependenciesMeta" : {
"debug" : {
"optional" : true
}
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/for-each" : {
"version" : "0.3.5" ,
"resolved" : "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz" ,
"integrity" : "sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-callable" : "^1.2.7"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/foreground-child" : {
"version" : "3.3.1" ,
"resolved" : "https://registry.npmmirror.com/foreground-child/-/foreground-child-3.3.1.tgz" ,
"integrity" : "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"cross-spawn" : "^7.0.6" ,
"signal-exit" : "^4.0.1"
} ,
"engines" : {
"node" : ">=14"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/form-data" : {
2025-12-13 23:28:41 +09:00
"version" : "4.0.5" ,
"resolved" : "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz" ,
"integrity" : "sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==" ,
2025-11-29 12:39:35 +08:00
"license" : "MIT" ,
"dependencies" : {
"asynckit" : "^0.4.0" ,
"combined-stream" : "^1.0.8" ,
"es-set-tostringtag" : "^2.1.0" ,
2025-12-13 23:28:41 +09:00
"hasown" : "^2.0.2" ,
2025-11-29 12:39:35 +08:00
"mime-types" : "^2.1.12"
} ,
"engines" : {
"node" : ">= 6"
}
} ,
2025-12-10 20:54:43 +05:30
"node_modules/framer-motion" : {
"version" : "12.23.25" ,
"resolved" : "https://registry.npmjs.org/framer-motion/-/framer-motion-12.23.25.tgz" ,
"integrity" : "sha512-gUHGl2e4VG66jOcH0JHhuJQr6ZNwrET9g31ZG0xdXzT0CznP7fHX4P8Bcvuc4MiUB90ysNnWX2ukHRIggkl6hQ==" ,
"license" : "MIT" ,
"dependencies" : {
"motion-dom" : "^12.23.23" ,
"motion-utils" : "^12.23.6" ,
"tslib" : "^2.4.0"
} ,
"peerDependencies" : {
"@emotion/is-prop-valid" : "*" ,
"react" : "^18.0.0 || ^19.0.0" ,
"react-dom" : "^18.0.0 || ^19.0.0"
} ,
"peerDependenciesMeta" : {
"@emotion/is-prop-valid" : {
"optional" : true
} ,
"react" : {
"optional" : true
} ,
"react-dom" : {
"optional" : true
}
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/fs-extra" : {
"version" : "8.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-8.1.0.tgz" ,
"integrity" : "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^4.0.0" ,
"universalify" : "^0.1.0"
} ,
"engines" : {
"node" : ">=6 <7 || >=8"
}
} ,
"node_modules/fs-minipass" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-minipass/-/fs-minipass-2.1.0.tgz" ,
"integrity" : "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"minipass" : "^3.0.0"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/fs.realpath" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/fs.realpath/-/fs.realpath-1.0.0.tgz" ,
"integrity" : "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" ,
"dev" : true ,
"license" : "ISC"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/function-bind" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" ,
"integrity" : "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==" ,
"license" : "MIT" ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/function.prototype.name" : {
"version" : "1.1.8" ,
"resolved" : "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz" ,
"integrity" : "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.3" ,
"define-properties" : "^1.2.1" ,
"functions-have-names" : "^1.2.3" ,
"hasown" : "^2.0.2" ,
"is-callable" : "^1.2.7"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/functions-have-names" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz" ,
"integrity" : "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/generator-function" : {
2025-08-19 01:17:17 +00:00
"version" : "2.0.1" ,
2025-11-29 12:39:35 +08:00
"resolved" : "https://registry.npmjs.org/generator-function/-/generator-function-2.0.1.tgz" ,
"integrity" : "sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/gensync" : {
"version" : "1.0.0-beta.2" ,
"resolved" : "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" ,
"integrity" : "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6.9.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/get-caller-file" : {
"version" : "2.0.5" ,
"resolved" : "https://registry.npmmirror.com/get-caller-file/-/get-caller-file-2.0.5.tgz" ,
"integrity" : "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : "6.* || 8.* || >= 10.*"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/get-east-asian-width" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.4.0.tgz" ,
"integrity" : "sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/get-intrinsic" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz" ,
"integrity" : "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==" ,
"license" : "MIT" ,
"dependencies" : {
"call-bind-apply-helpers" : "^1.0.2" ,
"es-define-property" : "^1.0.1" ,
"es-errors" : "^1.3.0" ,
"es-object-atoms" : "^1.1.1" ,
"function-bind" : "^1.1.2" ,
"get-proto" : "^1.0.1" ,
"gopd" : "^1.2.0" ,
"has-symbols" : "^1.1.0" ,
"hasown" : "^2.0.2" ,
"math-intrinsics" : "^1.1.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/get-nonce" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz" ,
"integrity" : "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/get-proto" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz" ,
"integrity" : "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==" ,
"license" : "MIT" ,
"dependencies" : {
"dunder-proto" : "^1.0.1" ,
"es-object-atoms" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/get-stream" : {
"version" : "5.2.0" ,
"resolved" : "https://registry.npmmirror.com/get-stream/-/get-stream-5.2.0.tgz" ,
"integrity" : "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"pump" : "^3.0.0"
} ,
"engines" : {
"node" : ">=8"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/get-symbol-description" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz" ,
"integrity" : "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"call-bound" : "^1.0.3" ,
"es-errors" : "^1.3.0" ,
"get-intrinsic" : "^1.2.6"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
2025-08-19 01:17:17 +00:00
"funding" : {
2025-11-29 12:39:35 +08:00
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/get-tsconfig" : {
"version" : "4.13.0" ,
"resolved" : "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz" ,
"integrity" : "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"resolve-pkg-maps" : "^1.0.0"
} ,
"funding" : {
"url" : "https://github.com/privatenumber/get-tsconfig?sponsor=1"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/glob" : {
"version" : "7.2.3" ,
"resolved" : "https://registry.npmmirror.com/glob/-/glob-7.2.3.tgz" ,
"integrity" : "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==" ,
"deprecated" : "Glob versions prior to v9 are no longer supported" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"fs.realpath" : "^1.0.0" ,
"inflight" : "^1.0.4" ,
"inherits" : "2" ,
"minimatch" : "^3.1.1" ,
"once" : "^1.3.0" ,
"path-is-absolute" : "^1.0.0"
} ,
"engines" : {
"node" : "*"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/glob-parent" : {
"version" : "6.0.2" ,
"resolved" : "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz" ,
"integrity" : "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"is-glob" : "^4.0.3"
} ,
"engines" : {
"node" : ">=10.13.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/global-agent" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/global-agent/-/global-agent-3.0.0.tgz" ,
"integrity" : "sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"optional" : true ,
"dependencies" : {
"boolean" : "^3.0.1" ,
"es6-error" : "^4.1.1" ,
"matcher" : "^3.0.0" ,
"roarr" : "^2.15.3" ,
"semver" : "^7.3.2" ,
"serialize-error" : "^7.0.1"
} ,
"engines" : {
"node" : ">=10.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/globals" : {
"version" : "14.0.0" ,
"resolved" : "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz" ,
"integrity" : "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/globalthis" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz" ,
"integrity" : "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"define-properties" : "^1.2.1" ,
"gopd" : "^1.0.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/gopd" : {
"version" : "1.2.0" ,
"resolved" : "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz" ,
"integrity" : "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/got" : {
"version" : "11.8.6" ,
"resolved" : "https://registry.npmmirror.com/got/-/got-11.8.6.tgz" ,
"integrity" : "sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@sindresorhus/is" : "^4.0.0" ,
"@szmarczak/http-timer" : "^4.0.5" ,
"@types/cacheable-request" : "^6.0.1" ,
"@types/responselike" : "^1.0.0" ,
"cacheable-lookup" : "^5.0.3" ,
"cacheable-request" : "^7.0.2" ,
"decompress-response" : "^6.0.0" ,
"http2-wrapper" : "^1.0.0-beta.5.2" ,
"lowercase-keys" : "^2.0.0" ,
"p-cancelable" : "^2.0.0" ,
"responselike" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10.19.0"
} ,
"funding" : {
"url" : "https://github.com/sindresorhus/got?sponsor=1"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/graceful-fs" : {
"version" : "4.2.11" ,
"resolved" : "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz" ,
"integrity" : "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/graphemer" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz" ,
"integrity" : "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/has-bigints" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz" ,
"integrity" : "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/has-flag" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" ,
"integrity" : "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/has-property-descriptors" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" ,
"integrity" : "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"es-define-property" : "^1.0.0"
} ,
2025-08-19 01:17:17 +00:00
"funding" : {
2025-11-29 12:39:35 +08:00
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/has-proto" : {
"version" : "1.2.0" ,
"resolved" : "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz" ,
"integrity" : "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==" ,
"dev" : true ,
"license" : "MIT" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-11-29 12:39:35 +08:00
"dunder-proto" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
2025-08-19 01:17:17 +00:00
} ,
"funding" : {
2025-11-29 12:39:35 +08:00
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/has-symbols" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz" ,
"integrity" : "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/has-tostringtag" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz" ,
"integrity" : "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"has-symbols" : "^1.0.3"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/hasown" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" ,
"integrity" : "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"function-bind" : "^1.1.2"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/hast-util-to-jsx-runtime" : {
"version" : "2.3.6" ,
"resolved" : "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz" ,
"integrity" : "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/estree" : "^1.0.0" ,
"@types/hast" : "^3.0.0" ,
"@types/unist" : "^3.0.0" ,
"comma-separated-tokens" : "^2.0.0" ,
"devlop" : "^1.0.0" ,
"estree-util-is-identifier-name" : "^3.0.0" ,
"hast-util-whitespace" : "^3.0.0" ,
"mdast-util-mdx-expression" : "^2.0.0" ,
"mdast-util-mdx-jsx" : "^3.0.0" ,
"mdast-util-mdxjs-esm" : "^2.0.0" ,
"property-information" : "^7.0.0" ,
"space-separated-tokens" : "^2.0.0" ,
"style-to-js" : "^1.0.0" ,
"unist-util-position" : "^5.0.0" ,
"vfile-message" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/hast-util-whitespace" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz" ,
"integrity" : "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/hast" : "^3.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/hermes-estree" : {
"version" : "0.25.1" ,
"resolved" : "https://registry.npmjs.org/hermes-estree/-/hermes-estree-0.25.1.tgz" ,
"integrity" : "sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==" ,
"dev" : true ,
"license" : "MIT"
2025-08-19 01:17:17 +00:00
} ,
2025-11-29 12:39:35 +08:00
"node_modules/hermes-parser" : {
"version" : "0.25.1" ,
"resolved" : "https://registry.npmjs.org/hermes-parser/-/hermes-parser-0.25.1.tgz" ,
"integrity" : "sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"hermes-estree" : "0.25.1"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/hosted-git-info" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmmirror.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz" ,
"integrity" : "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"lru-cache" : "^6.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/hosted-git-info/node_modules/lru-cache" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmmirror.com/lru-cache/-/lru-cache-6.0.0.tgz" ,
"integrity" : "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"yallist" : "^4.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/hosted-git-info/node_modules/yallist" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz" ,
"integrity" : "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" ,
"dev" : true ,
"license" : "ISC"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/html-encoding-sniffer" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz" ,
"integrity" : "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"whatwg-encoding" : "^3.1.1"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=18"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/html-url-attributes" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz" ,
"integrity" : "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==" ,
"license" : "MIT" ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/http-cache-semantics" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmmirror.com/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz" ,
"integrity" : "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==" ,
"dev" : true ,
"license" : "BSD-2-Clause"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/http-proxy-agent" : {
"version" : "7.0.2" ,
"resolved" : "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz" ,
"integrity" : "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"agent-base" : "^7.1.0" ,
"debug" : "^4.3.4"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 14"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/http2-wrapper" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmmirror.com/http2-wrapper/-/http2-wrapper-1.0.3.tgz" ,
"integrity" : "sha512-V+23sDMr12Wnz7iTcDeJr3O6AIxlnvT/bmaAAAP/Xda35C90p9599p0F1eHR/N1KILWSoWVAiOMFjBBXaXSMxg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"quick-lru" : "^5.1.1" ,
"resolve-alpn" : "^1.0.0"
} ,
"engines" : {
"node" : ">=10.19.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/https-proxy-agent" : {
"version" : "7.0.6" ,
"resolved" : "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz" ,
"integrity" : "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"agent-base" : "^7.1.2" ,
"debug" : "4"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 14"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/humanize-ms" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmmirror.com/humanize-ms/-/humanize-ms-1.2.1.tgz" ,
"integrity" : "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ms" : "^2.0.0"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/husky" : {
"version" : "9.1.7" ,
"resolved" : "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz" ,
"integrity" : "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"husky" : "bin.js"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/typicode"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/iconv-corefoundation" : {
"version" : "1.1.7" ,
"resolved" : "https://registry.npmmirror.com/iconv-corefoundation/-/iconv-corefoundation-1.1.7.tgz" ,
"integrity" : "sha512-T10qvkw0zz4wnm560lOEg0PovVqUXuOFhhHAkixw8/sycy7TJt7v/RrkEKEQnAw2viPSJu6iAkErxnzR0g8PpQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"dependencies" : {
"cli-truncate" : "^2.1.0" ,
"node-addon-api" : "^1.6.3"
} ,
"engines" : {
"node" : "^8.11.2 || >=10"
}
} ,
"node_modules/iconv-corefoundation/node_modules/ansi-regex" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" ,
"integrity" : "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/iconv-corefoundation/node_modules/cli-truncate" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmmirror.com/cli-truncate/-/cli-truncate-2.1.0.tgz" ,
"integrity" : "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"slice-ansi" : "^3.0.0" ,
"string-width" : "^4.2.0"
} ,
"engines" : {
"node" : ">=8"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/iconv-corefoundation/node_modules/emoji-regex" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz" ,
"integrity" : "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true
} ,
"node_modules/iconv-corefoundation/node_modules/is-fullwidth-code-point" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" ,
"integrity" : "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/iconv-corefoundation/node_modules/slice-ansi" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/slice-ansi/-/slice-ansi-3.0.0.tgz" ,
"integrity" : "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"ansi-styles" : "^4.0.0" ,
"astral-regex" : "^2.0.0" ,
"is-fullwidth-code-point" : "^3.0.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/iconv-corefoundation/node_modules/string-width" : {
"version" : "4.2.3" ,
"resolved" : "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz" ,
"integrity" : "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"emoji-regex" : "^8.0.0" ,
"is-fullwidth-code-point" : "^3.0.0" ,
"strip-ansi" : "^6.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/iconv-corefoundation/node_modules/strip-ansi" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/iconv-lite" : {
"version" : "0.6.3" ,
"resolved" : "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz" ,
"integrity" : "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"safer-buffer" : ">= 2.1.2 < 3.0.0"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=0.10.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/ieee754" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmmirror.com/ieee754/-/ieee754-1.2.1.tgz" ,
"integrity" : "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" ,
"dev" : true ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "BSD-3-Clause"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/ignore" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz" ,
"integrity" : "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 4"
}
2025-08-19 01:17:17 +00:00
} ,
2025-11-29 12:39:35 +08:00
"node_modules/import-fresh" : {
"version" : "3.3.1" ,
"resolved" : "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz" ,
"integrity" : "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"parent-module" : "^1.0.0" ,
"resolve-from" : "^4.0.0"
} ,
"engines" : {
"node" : ">=6"
2025-08-19 01:17:17 +00:00
} ,
"funding" : {
2025-11-29 12:39:35 +08:00
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/imurmurhash" : {
"version" : "0.1.4" ,
"resolved" : "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" ,
"integrity" : "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=0.8.19"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/indent-string" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmmirror.com/indent-string/-/indent-string-4.0.0.tgz" ,
"integrity" : "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/infer-owner" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmmirror.com/infer-owner/-/infer-owner-1.0.4.tgz" ,
"integrity" : "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/inflight" : {
"version" : "1.0.6" ,
"resolved" : "https://registry.npmmirror.com/inflight/-/inflight-1.0.6.tgz" ,
"integrity" : "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==" ,
"deprecated" : "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful." ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"once" : "^1.3.0" ,
"wrappy" : "1"
}
} ,
"node_modules/inherits" : {
"version" : "2.0.4" ,
"resolved" : "https://registry.npmmirror.com/inherits/-/inherits-2.0.4.tgz" ,
"integrity" : "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
2025-12-05 22:42:39 +09:00
"node_modules/inline-style-parser" : {
"version" : "0.2.7" ,
"resolved" : "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz" ,
"integrity" : "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==" ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/internal-slot" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz" ,
"integrity" : "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"es-errors" : "^1.3.0" ,
"hasown" : "^2.0.2" ,
"side-channel" : "^1.1.0"
} ,
2025-08-19 01:17:17 +00:00
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/interpret" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmmirror.com/interpret/-/interpret-1.4.0.tgz" ,
"integrity" : "sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.10"
}
} ,
"node_modules/ip-address" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/ip-address/-/ip-address-10.1.0.tgz" ,
"integrity" : "sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 12"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/is-alphabetical" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz" ,
"integrity" : "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/is-alphanumerical" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz" ,
"integrity" : "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==" ,
"license" : "MIT" ,
"dependencies" : {
"is-alphabetical" : "^2.0.0" ,
"is-decimal" : "^2.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-array-buffer" : {
"version" : "3.0.5" ,
"resolved" : "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz" ,
"integrity" : "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.3" ,
"get-intrinsic" : "^1.2.6"
} ,
2025-08-19 01:17:17 +00:00
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-async-function" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.1.tgz" ,
"integrity" : "sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"async-function" : "^1.0.0" ,
"call-bound" : "^1.0.3" ,
"get-proto" : "^1.0.1" ,
"has-tostringtag" : "^1.0.2" ,
"safe-regex-test" : "^1.1.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/is-bigint" : {
2025-08-19 01:17:17 +00:00
"version" : "1.1.0" ,
2025-11-29 12:39:35 +08:00
"resolved" : "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz" ,
"integrity" : "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"has-bigints" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/is-boolean-object" : {
"version" : "1.2.2" ,
"resolved" : "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.2.tgz" ,
"integrity" : "sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.3" ,
"has-tostringtag" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/is-bun-module" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/is-bun-module/-/is-bun-module-2.0.0.tgz" ,
"integrity" : "sha512-gNCGbnnnnFAUGKeZ9PdbyeGYJqewpmc2aKHUEMO5nQPWU9lOmv7jcmQIv+qHD8fXW6W7qfuCwX4rY9LNRjXrkQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"semver" : "^7.7.1"
}
} ,
"node_modules/is-callable" : {
"version" : "1.2.7" ,
"resolved" : "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz" ,
"integrity" : "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
2025-08-19 01:17:17 +00:00
} ,
"funding" : {
2025-11-29 12:39:35 +08:00
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/is-ci" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmmirror.com/is-ci/-/is-ci-3.0.1.tgz" ,
"integrity" : "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ci-info" : "^3.2.0"
} ,
"bin" : {
"is-ci" : "bin.js"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-core-module" : {
"version" : "2.16.1" ,
"resolved" : "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz" ,
"integrity" : "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"hasown" : "^2.0.2"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">= 0.4"
2025-11-29 12:39:35 +08:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-data-view" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz" ,
"integrity" : "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==" ,
2025-08-19 01:17:17 +00:00
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.2" ,
"get-intrinsic" : "^1.2.6" ,
"is-typed-array" : "^1.1.13"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
2025-08-19 01:17:17 +00:00
} ,
"funding" : {
2025-11-29 12:39:35 +08:00
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-date-object" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz" ,
"integrity" : "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"call-bound" : "^1.0.2" ,
"has-tostringtag" : "^1.0.2"
} ,
2025-08-19 01:17:17 +00:00
"engines" : {
"node" : ">= 0.4"
2025-11-29 12:39:35 +08:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/is-decimal" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz" ,
"integrity" : "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-extglob" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" ,
"integrity" : "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=0.10.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-finalizationregistry" : {
2025-08-19 01:17:17 +00:00
"version" : "1.1.1" ,
2025-11-29 12:39:35 +08:00
"resolved" : "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz" ,
"integrity" : "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.3"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">= 0.4"
2025-11-29 12:39:35 +08:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/is-fullwidth-code-point" : {
"version" : "5.1.0" ,
"resolved" : "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.1.0.tgz" ,
"integrity" : "sha512-5XHYaSyiqADb4RnZ1Bdad6cPp8Toise4TzEjcOYDHZkTCbKgiUl7WTUCpNWHuxmDt91wnsZBc9xinNzopv3JMQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"get-east-asian-width" : "^1.3.1"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-generator-function" : {
"version" : "1.1.2" ,
"resolved" : "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.2.tgz" ,
"integrity" : "sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.4" ,
"generator-function" : "^2.0.0" ,
"get-proto" : "^1.0.1" ,
2025-08-19 01:17:17 +00:00
"has-tostringtag" : "^1.0.2" ,
2025-11-29 12:39:35 +08:00
"safe-regex-test" : "^1.1.0"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
2025-11-29 12:39:35 +08:00
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-glob" : {
"version" : "4.0.3" ,
"resolved" : "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz" ,
"integrity" : "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"is-extglob" : "^2.1.1"
} ,
2025-08-19 01:17:17 +00:00
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=0.10.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/is-hexadecimal" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz" ,
"integrity" : "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/is-interactive" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/is-interactive/-/is-interactive-1.0.0.tgz" ,
"integrity" : "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/is-lambda" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmmirror.com/is-lambda/-/is-lambda-1.0.1.tgz" ,
"integrity" : "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-map" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz" ,
"integrity" : "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-negative-zero" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz" ,
"integrity" : "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"engines" : {
"node" : ">= 0.4"
} ,
2025-08-19 01:17:17 +00:00
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-number" : {
"version" : "7.0.0" ,
"resolved" : "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" ,
"integrity" : "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.12.0"
}
} ,
"node_modules/is-number-object" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz" ,
"integrity" : "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.3" ,
"has-tostringtag" : "^1.0.2"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-plain-obj" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz" ,
"integrity" : "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-potential-custom-element-name" : {
2025-08-19 01:17:17 +00:00
"version" : "1.0.1" ,
2025-11-29 12:39:35 +08:00
"resolved" : "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz" ,
"integrity" : "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==" ,
"license" : "MIT"
} ,
"node_modules/is-regex" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz" ,
"integrity" : "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.2" ,
"gopd" : "^1.2.0" ,
"has-tostringtag" : "^1.0.2" ,
"hasown" : "^2.0.2"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">= 0.4"
2025-11-29 12:39:35 +08:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-set" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz" ,
"integrity" : "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-shared-array-buffer" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz" ,
"integrity" : "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==" ,
2025-08-19 01:17:17 +00:00
"dev" : true ,
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"call-bound" : "^1.0.3"
} ,
2025-08-19 01:17:17 +00:00
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/is-stream" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmmirror.com/is-stream/-/is-stream-1.1.0.tgz" ,
"integrity" : "sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-string" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz" ,
"integrity" : "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.3" ,
"has-tostringtag" : "^1.0.2"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-symbol" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz" ,
"integrity" : "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.2" ,
"has-symbols" : "^1.1.0" ,
"safe-regex-test" : "^1.1.0"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : ">= 0.4"
2025-11-29 12:39:35 +08:00
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-typed-array" : {
"version" : "1.1.15" ,
"resolved" : "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz" ,
"integrity" : "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"which-typed-array" : "^1.1.16"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/is-unicode-supported" : {
"version" : "0.1.0" ,
"resolved" : "https://registry.npmmirror.com/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz" ,
"integrity" : "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-weakmap" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz" ,
"integrity" : "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-weakref" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.1.tgz" ,
"integrity" : "sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.3"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/is-weakset" : {
"version" : "2.0.4" ,
"resolved" : "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz" ,
"integrity" : "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"call-bound" : "^1.0.3" ,
"get-intrinsic" : "^1.2.6"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/isarray" : {
"version" : "2.0.5" ,
"resolved" : "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz" ,
"integrity" : "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" ,
"dev" : true ,
"license" : "MIT"
2025-08-19 01:17:17 +00:00
} ,
2025-12-22 09:18:21 +08:00
"node_modules/isbinaryfile" : {
"version" : "5.0.7" ,
"resolved" : "https://registry.npmmirror.com/isbinaryfile/-/isbinaryfile-5.0.7.tgz" ,
"integrity" : "sha512-gnWD14Jh3FzS3CPhF0AxNOJ8CxqeblPTADzI38r0wt8ZyQl5edpy75myt08EG2oKvpyiqSqsx+Wkz9vtkbTqYQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 18.0.0"
} ,
"funding" : {
"url" : "https://github.com/sponsors/gjtorikian/"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/isexe" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" ,
"integrity" : "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/iterator.prototype" : {
"version" : "1.1.5" ,
"resolved" : "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz" ,
"integrity" : "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
"define-data-property" : "^1.1.4" ,
"es-object-atoms" : "^1.0.0" ,
"get-intrinsic" : "^1.2.6" ,
"get-proto" : "^1.0.0" ,
"has-symbols" : "^1.1.0" ,
"set-function-name" : "^2.0.2"
2025-08-19 01:17:17 +00:00
} ,
2025-11-29 12:39:35 +08:00
"engines" : {
"node" : ">= 0.4"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/jackspeak" : {
"version" : "3.4.3" ,
"resolved" : "https://registry.npmmirror.com/jackspeak/-/jackspeak-3.4.3.tgz" ,
"integrity" : "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0" ,
"dependencies" : {
"@isaacs/cliui" : "^8.0.2"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
} ,
"optionalDependencies" : {
"@pkgjs/parseargs" : "^0.11.0"
}
} ,
"node_modules/jake" : {
"version" : "10.9.4" ,
"resolved" : "https://registry.npmmirror.com/jake/-/jake-10.9.4.tgz" ,
"integrity" : "sha512-wpHYzhxiVQL+IV05BLE2Xn34zW1S223hvjtqk0+gsPrwd/8JNLXJgZZM/iPFsYc1xyphF+6M6EvdE5E9MBGkDA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"async" : "^3.2.6" ,
"filelist" : "^1.0.4" ,
"picocolors" : "^1.1.1"
} ,
"bin" : {
"jake" : "bin/cli.js"
} ,
"engines" : {
"node" : ">=10"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/jiti" : {
"version" : "2.4.2" ,
"resolved" : "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz" ,
"integrity" : "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"jiti" : "lib/jiti-cli.mjs"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/joi" : {
"version" : "18.0.2" ,
"resolved" : "https://registry.npmmirror.com/joi/-/joi-18.0.2.tgz" ,
"integrity" : "sha512-RuCOQMIt78LWnktPoeBL0GErkNaJPTBGcYuyaBvUOQSpcpcLfWrHPPihYdOGbV5pam9VTWbeoF7TsGiHugcjGA==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"@hapi/address" : "^5.1.1" ,
"@hapi/formula" : "^3.0.2" ,
"@hapi/hoek" : "^11.0.7" ,
"@hapi/pinpoint" : "^2.0.1" ,
"@hapi/tlds" : "^1.1.1" ,
"@hapi/topo" : "^6.0.2" ,
"@standard-schema/spec" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 20"
}
} ,
2025-12-08 18:56:34 +09:00
"node_modules/js-tiktoken" : {
"version" : "1.0.21" ,
"resolved" : "https://registry.npmjs.org/js-tiktoken/-/js-tiktoken-1.0.21.tgz" ,
"integrity" : "sha512-biOj/6M5qdgx5TKjDnFT1ymSpM5tbd3ylwDtrQvFQSu0Z7bBYko2dF+W/aUkXUPuk6IVpRxk/3Q2sHOzGlS36g==" ,
"license" : "MIT" ,
"dependencies" : {
"base64-js" : "^1.5.1"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/js-tokens" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" ,
"integrity" : "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/js-yaml" : {
"version" : "4.1.1" ,
"resolved" : "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz" ,
"integrity" : "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"argparse" : "^2.0.1"
} ,
"bin" : {
"js-yaml" : "bin/js-yaml.js"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/jsdom" : {
"version" : "26.0.0" ,
"resolved" : "https://registry.npmjs.org/jsdom/-/jsdom-26.0.0.tgz" ,
"integrity" : "sha512-BZYDGVAIriBWTpIxYzrXjv3E/4u8+/pSG5bQdIYCbNCGOvsPkDQfTVLAIXAf9ETdCpduCVTkDe2NNZ8NIwUVzw==" ,
"license" : "MIT" ,
"dependencies" : {
"cssstyle" : "^4.2.1" ,
"data-urls" : "^5.0.0" ,
"decimal.js" : "^10.4.3" ,
"form-data" : "^4.0.1" ,
"html-encoding-sniffer" : "^4.0.0" ,
"http-proxy-agent" : "^7.0.2" ,
"https-proxy-agent" : "^7.0.6" ,
"is-potential-custom-element-name" : "^1.0.1" ,
"nwsapi" : "^2.2.16" ,
"parse5" : "^7.2.1" ,
"rrweb-cssom" : "^0.8.0" ,
"saxes" : "^6.0.0" ,
"symbol-tree" : "^3.2.4" ,
"tough-cookie" : "^5.0.0" ,
"w3c-xmlserializer" : "^5.0.0" ,
"webidl-conversions" : "^7.0.0" ,
"whatwg-encoding" : "^3.1.1" ,
"whatwg-mimetype" : "^4.0.0" ,
"whatwg-url" : "^14.1.0" ,
"ws" : "^8.18.0" ,
"xml-name-validator" : "^5.0.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"canvas" : "^3.0.0"
} ,
"peerDependenciesMeta" : {
"canvas" : {
"optional" : true
}
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/jsesc" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz" ,
"integrity" : "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"jsesc" : "bin/jsesc"
} ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/json-buffer" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz" ,
"integrity" : "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/json-schema" : {
"version" : "0.4.0" ,
"resolved" : "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz" ,
"integrity" : "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" ,
"license" : "(AFL-2.1 OR BSD-3-Clause)"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/json-schema-traverse" : {
"version" : "0.4.1" ,
"resolved" : "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" ,
"integrity" : "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/json-stable-stringify-without-jsonify" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" ,
"integrity" : "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/json-stringify-safe" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" ,
"integrity" : "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" ,
"dev" : true ,
"license" : "ISC" ,
"optional" : true
} ,
2025-11-29 12:39:35 +08:00
"node_modules/json5" : {
"version" : "2.2.3" ,
"resolved" : "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz" ,
"integrity" : "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"json5" : "lib/cli.js"
} ,
"engines" : {
"node" : ">=6"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/jsonfile" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-4.0.0.tgz" ,
"integrity" : "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==" ,
"dev" : true ,
"license" : "MIT" ,
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
}
} ,
2025-12-14 12:34:34 +09:00
"node_modules/jsonrepair" : {
"version" : "3.13.1" ,
"resolved" : "https://registry.npmjs.org/jsonrepair/-/jsonrepair-3.13.1.tgz" ,
"integrity" : "sha512-WJeiE0jGfxYmtLwBTEk8+y/mYcaleyLXWaqp5bJu0/ZTSeG0KQq/wWQ8pmnkKenEdN6pdnn6QtcoSUkbqDHWNw==" ,
"license" : "ISC" ,
"bin" : {
"jsonrepair" : "bin/cli.js"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/jsx-ast-utils" : {
"version" : "3.3.5" ,
"resolved" : "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz" ,
"integrity" : "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"array-includes" : "^3.1.6" ,
"array.prototype.flat" : "^1.3.1" ,
"object.assign" : "^4.1.4" ,
"object.values" : "^1.1.6"
} ,
"engines" : {
"node" : ">=4.0"
}
} ,
"node_modules/keyv" : {
"version" : "4.5.4" ,
"resolved" : "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz" ,
"integrity" : "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"json-buffer" : "3.0.1"
}
} ,
"node_modules/language-subtag-registry" : {
"version" : "0.3.23" ,
"resolved" : "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.23.tgz" ,
"integrity" : "sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==" ,
"dev" : true ,
"license" : "CC0-1.0"
} ,
"node_modules/language-tags" : {
"version" : "1.0.9" ,
"resolved" : "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz" ,
"integrity" : "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"language-subtag-registry" : "^0.3.20"
} ,
"engines" : {
"node" : ">=0.10"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/lazy-val" : {
"version" : "1.0.5" ,
"resolved" : "https://registry.npmmirror.com/lazy-val/-/lazy-val-1.0.5.tgz" ,
"integrity" : "sha512-0/BnGCCfyUMkBpeDgWihanIAF9JmZhHBgUhEqzvf+adhNGLoP6TaiI5oF8oyb3I45P+PcnrqihSf01M0l0G5+Q==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/levn" : {
"version" : "0.4.1" ,
"resolved" : "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" ,
"integrity" : "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"prelude-ls" : "^1.2.1" ,
"type-check" : "~0.4.0"
} ,
"engines" : {
"node" : ">= 0.8.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/lightningcss" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.2.tgz" ,
"integrity" : "sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==" ,
"dev" : true ,
"license" : "MPL-2.0" ,
"dependencies" : {
"detect-libc" : "^2.0.3"
} ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
} ,
"optionalDependencies" : {
"lightningcss-darwin-arm64" : "1.29.2" ,
"lightningcss-darwin-x64" : "1.29.2" ,
"lightningcss-freebsd-x64" : "1.29.2" ,
"lightningcss-linux-arm-gnueabihf" : "1.29.2" ,
"lightningcss-linux-arm64-gnu" : "1.29.2" ,
"lightningcss-linux-arm64-musl" : "1.29.2" ,
"lightningcss-linux-x64-gnu" : "1.29.2" ,
"lightningcss-linux-x64-musl" : "1.29.2" ,
"lightningcss-win32-arm64-msvc" : "1.29.2" ,
"lightningcss-win32-x64-msvc" : "1.29.2"
}
} ,
"node_modules/lightningcss-darwin-arm64" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.2.tgz" ,
"integrity" : "sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-darwin-x64" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.2.tgz" ,
"integrity" : "sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"darwin"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-freebsd-x64" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.2.tgz" ,
"integrity" : "sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"freebsd"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-linux-arm-gnueabihf" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.2.tgz" ,
"integrity" : "sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==" ,
"cpu" : [
"arm"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-linux-arm64-gnu" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.2.tgz" ,
"integrity" : "sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-linux-arm64-musl" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.2.tgz" ,
"integrity" : "sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-linux-x64-gnu" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.2.tgz" ,
"integrity" : "sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-linux-x64-musl" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.2.tgz" ,
"integrity" : "sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"linux"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-win32-arm64-msvc" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.2.tgz" ,
"integrity" : "sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==" ,
"cpu" : [
"arm64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
"node_modules/lightningcss-win32-x64-msvc" : {
"version" : "1.29.2" ,
"resolved" : "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.2.tgz" ,
"integrity" : "sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==" ,
"cpu" : [
"x64"
] ,
"dev" : true ,
"license" : "MPL-2.0" ,
"optional" : true ,
"os" : [
"win32"
] ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/parcel"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/lint-staged" : {
"version" : "16.2.7" ,
"resolved" : "https://registry.npmjs.org/lint-staged/-/lint-staged-16.2.7.tgz" ,
"integrity" : "sha512-lDIj4RnYmK7/kXMya+qJsmkRFkGolciXjrsZ6PC25GdTfWOAWetR0ZbsNXRAj1EHHImRSalc+whZFg56F5DVow==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"commander" : "^14.0.2" ,
"listr2" : "^9.0.5" ,
"micromatch" : "^4.0.8" ,
"nano-spawn" : "^2.0.0" ,
"pidtree" : "^0.6.0" ,
"string-argv" : "^0.3.2" ,
"yaml" : "^2.8.1"
} ,
"bin" : {
"lint-staged" : "bin/lint-staged.js"
} ,
"engines" : {
"node" : ">=20.17"
} ,
"funding" : {
"url" : "https://opencollective.com/lint-staged"
}
} ,
"node_modules/listr2" : {
"version" : "9.0.5" ,
"resolved" : "https://registry.npmjs.org/listr2/-/listr2-9.0.5.tgz" ,
"integrity" : "sha512-ME4Fb83LgEgwNw96RKNvKV4VTLuXfoKudAmm2lP8Kk87KaMK0/Xrx/aAkMWmT8mDb+3MlFDspfbCs7adjRxA2g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"cli-truncate" : "^5.0.0" ,
"colorette" : "^2.0.20" ,
"eventemitter3" : "^5.0.1" ,
"log-update" : "^6.1.0" ,
"rfdc" : "^1.4.1" ,
"wrap-ansi" : "^9.0.0"
} ,
"engines" : {
"node" : ">=20.0.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/locate-path" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz" ,
"integrity" : "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"p-locate" : "^5.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/lodash" : {
"version" : "4.17.21" ,
"resolved" : "https://registry.npmmirror.com/lodash/-/lodash-4.17.21.tgz" ,
"integrity" : "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/lodash.merge" : {
"version" : "4.6.2" ,
"resolved" : "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz" ,
"integrity" : "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/log-symbols" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmmirror.com/log-symbols/-/log-symbols-4.1.0.tgz" ,
"integrity" : "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"chalk" : "^4.1.0" ,
"is-unicode-supported" : "^0.1.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/log-update" : {
"version" : "6.1.0" ,
"resolved" : "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz" ,
"integrity" : "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-escapes" : "^7.0.0" ,
"cli-cursor" : "^5.0.0" ,
"slice-ansi" : "^7.1.0" ,
"strip-ansi" : "^7.1.0" ,
"wrap-ansi" : "^9.0.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-05 21:15:02 +09:00
"node_modules/long" : {
"version" : "5.3.2" ,
"resolved" : "https://registry.npmjs.org/long/-/long-5.3.2.tgz" ,
"integrity" : "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==" ,
2025-12-07 20:33:43 +09:00
"license" : "Apache-2.0"
2025-12-05 21:15:02 +09:00
} ,
2025-08-19 01:17:17 +00:00
"node_modules/longest-streak" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz" ,
"integrity" : "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/loose-envify" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" ,
"integrity" : "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"js-tokens" : "^3.0.0 || ^4.0.0"
} ,
"bin" : {
"loose-envify" : "cli.js"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/lowercase-keys" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmmirror.com/lowercase-keys/-/lowercase-keys-2.0.0.tgz" ,
"integrity" : "sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/lru-cache" : {
"version" : "10.4.3" ,
"resolved" : "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz" ,
"integrity" : "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==" ,
"license" : "ISC"
} ,
"node_modules/lucide-react" : {
"version" : "0.483.0" ,
"resolved" : "https://registry.npmjs.org/lucide-react/-/lucide-react-0.483.0.tgz" ,
"integrity" : "sha512-WldsY17Qb/T3VZdMnVQ9C3DDIP7h1ViDTHVdVGnLZcvHNg30zH/MTQ04RTORjexoGmpsXroiQXZ4QyR0kBy0FA==" ,
"license" : "ISC" ,
"peerDependencies" : {
"react" : "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/make-fetch-happen" : {
"version" : "10.2.1" ,
"resolved" : "https://registry.npmmirror.com/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz" ,
"integrity" : "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"agentkeepalive" : "^4.2.1" ,
"cacache" : "^16.1.0" ,
"http-cache-semantics" : "^4.1.0" ,
"http-proxy-agent" : "^5.0.0" ,
"https-proxy-agent" : "^5.0.0" ,
"is-lambda" : "^1.0.1" ,
"lru-cache" : "^7.7.1" ,
"minipass" : "^3.1.6" ,
"minipass-collect" : "^1.0.2" ,
"minipass-fetch" : "^2.0.3" ,
"minipass-flush" : "^1.0.5" ,
"minipass-pipeline" : "^1.2.4" ,
"negotiator" : "^0.6.3" ,
"promise-retry" : "^2.0.1" ,
"socks-proxy-agent" : "^7.0.0" ,
"ssri" : "^9.0.0"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
"node_modules/make-fetch-happen/node_modules/agent-base" : {
"version" : "6.0.2" ,
"resolved" : "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz" ,
"integrity" : "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "4"
} ,
"engines" : {
"node" : ">= 6.0.0"
}
} ,
"node_modules/make-fetch-happen/node_modules/http-proxy-agent" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmmirror.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz" ,
"integrity" : "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@tootallnate/once" : "2" ,
"agent-base" : "6" ,
"debug" : "4"
} ,
"engines" : {
"node" : ">= 6"
}
} ,
"node_modules/make-fetch-happen/node_modules/https-proxy-agent" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz" ,
"integrity" : "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"agent-base" : "6" ,
"debug" : "4"
} ,
"engines" : {
"node" : ">= 6"
}
} ,
"node_modules/make-fetch-happen/node_modules/lru-cache" : {
"version" : "7.18.3" ,
"resolved" : "https://registry.npmmirror.com/lru-cache/-/lru-cache-7.18.3.tgz" ,
"integrity" : "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/make-fetch-happen/node_modules/negotiator" : {
"version" : "0.6.4" ,
"resolved" : "https://registry.npmmirror.com/negotiator/-/negotiator-0.6.4.tgz" ,
"integrity" : "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.6"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/markdown-table" : {
"version" : "3.0.4" ,
"resolved" : "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz" ,
"integrity" : "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/matcher" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/matcher/-/matcher-3.0.0.tgz" ,
"integrity" : "sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"escape-string-regexp" : "^4.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/matcher/node_modules/escape-string-regexp" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmmirror.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz" ,
"integrity" : "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/math-intrinsics" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz" ,
"integrity" : "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/mdast-util-find-and-replace" : {
"version" : "3.0.2" ,
"resolved" : "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz" ,
"integrity" : "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"escape-string-regexp" : "^5.0.0" ,
"unist-util-is" : "^6.0.0" ,
"unist-util-visit-parents" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-from-markdown" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz" ,
"integrity" : "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"@types/unist" : "^3.0.0" ,
"decode-named-character-reference" : "^1.0.0" ,
"devlop" : "^1.0.0" ,
"mdast-util-to-string" : "^4.0.0" ,
"micromark" : "^4.0.0" ,
"micromark-util-decode-numeric-character-reference" : "^2.0.0" ,
"micromark-util-decode-string" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0" ,
"unist-util-stringify-position" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-gfm" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz" ,
"integrity" : "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==" ,
"license" : "MIT" ,
"dependencies" : {
"mdast-util-from-markdown" : "^2.0.0" ,
"mdast-util-gfm-autolink-literal" : "^2.0.0" ,
"mdast-util-gfm-footnote" : "^2.0.0" ,
"mdast-util-gfm-strikethrough" : "^2.0.0" ,
"mdast-util-gfm-table" : "^2.0.0" ,
"mdast-util-gfm-task-list-item" : "^2.0.0" ,
"mdast-util-to-markdown" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-gfm-autolink-literal" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz" ,
"integrity" : "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"ccount" : "^2.0.0" ,
"devlop" : "^1.0.0" ,
"mdast-util-find-and-replace" : "^3.0.0" ,
"micromark-util-character" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-gfm-footnote" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz" ,
"integrity" : "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"devlop" : "^1.1.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"mdast-util-to-markdown" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-gfm-strikethrough" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz" ,
"integrity" : "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"mdast-util-to-markdown" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-gfm-table" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz" ,
"integrity" : "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"devlop" : "^1.0.0" ,
"markdown-table" : "^3.0.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"mdast-util-to-markdown" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-gfm-task-list-item" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz" ,
"integrity" : "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"devlop" : "^1.0.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"mdast-util-to-markdown" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/mdast-util-mdx-expression" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz" ,
"integrity" : "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/estree-jsx" : "^1.0.0" ,
"@types/hast" : "^3.0.0" ,
"@types/mdast" : "^4.0.0" ,
"devlop" : "^1.0.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"mdast-util-to-markdown" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-mdx-jsx" : {
"version" : "3.2.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz" ,
"integrity" : "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/estree-jsx" : "^1.0.0" ,
"@types/hast" : "^3.0.0" ,
"@types/mdast" : "^4.0.0" ,
"@types/unist" : "^3.0.0" ,
"ccount" : "^2.0.0" ,
"devlop" : "^1.1.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"mdast-util-to-markdown" : "^2.0.0" ,
"parse-entities" : "^4.0.0" ,
"stringify-entities" : "^4.0.0" ,
"unist-util-stringify-position" : "^4.0.0" ,
"vfile-message" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-mdxjs-esm" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz" ,
"integrity" : "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/estree-jsx" : "^1.0.0" ,
"@types/hast" : "^3.0.0" ,
"@types/mdast" : "^4.0.0" ,
"devlop" : "^1.0.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"mdast-util-to-markdown" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/mdast-util-phrasing" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz" ,
"integrity" : "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"unist-util-is" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/mdast-util-to-hast" : {
"version" : "13.2.1" ,
"resolved" : "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz" ,
"integrity" : "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/hast" : "^3.0.0" ,
"@types/mdast" : "^4.0.0" ,
"@ungap/structured-clone" : "^1.0.0" ,
"devlop" : "^1.0.0" ,
"micromark-util-sanitize-uri" : "^2.0.0" ,
"trim-lines" : "^3.0.0" ,
"unist-util-position" : "^5.0.0" ,
"unist-util-visit" : "^5.0.0" ,
"vfile" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/mdast-util-to-markdown" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz" ,
"integrity" : "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"@types/unist" : "^3.0.0" ,
"longest-streak" : "^3.0.0" ,
"mdast-util-phrasing" : "^4.0.0" ,
"mdast-util-to-string" : "^4.0.0" ,
"micromark-util-classify-character" : "^2.0.0" ,
"micromark-util-decode-string" : "^2.0.0" ,
"unist-util-visit" : "^5.0.0" ,
"zwitch" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/mdast-util-to-string" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz" ,
"integrity" : "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/merge2" : {
"version" : "1.4.1" ,
"resolved" : "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" ,
"integrity" : "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 8"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/micromark" : {
"version" : "4.0.2" ,
"resolved" : "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz" ,
"integrity" : "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"@types/debug" : "^4.0.0" ,
"debug" : "^4.0.0" ,
"decode-named-character-reference" : "^1.0.0" ,
"devlop" : "^1.0.0" ,
"micromark-core-commonmark" : "^2.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-combine-extensions" : "^2.0.0" ,
"micromark-util-decode-numeric-character-reference" : "^2.0.0" ,
"micromark-util-encode" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0" ,
"micromark-util-resolve-all" : "^2.0.0" ,
"micromark-util-sanitize-uri" : "^2.0.0" ,
"micromark-util-subtokenize" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-core-commonmark" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz" ,
"integrity" : "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"decode-named-character-reference" : "^1.0.0" ,
"devlop" : "^1.0.0" ,
"micromark-factory-destination" : "^2.0.0" ,
"micromark-factory-label" : "^2.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-factory-title" : "^2.0.0" ,
"micromark-factory-whitespace" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-classify-character" : "^2.0.0" ,
"micromark-util-html-tag-name" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0" ,
"micromark-util-resolve-all" : "^2.0.0" ,
"micromark-util-subtokenize" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-extension-gfm" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz" ,
"integrity" : "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==" ,
"license" : "MIT" ,
"dependencies" : {
"micromark-extension-gfm-autolink-literal" : "^2.0.0" ,
"micromark-extension-gfm-footnote" : "^2.0.0" ,
"micromark-extension-gfm-strikethrough" : "^2.0.0" ,
"micromark-extension-gfm-table" : "^2.0.0" ,
"micromark-extension-gfm-tagfilter" : "^2.0.0" ,
"micromark-extension-gfm-task-list-item" : "^2.0.0" ,
"micromark-util-combine-extensions" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-autolink-literal" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz" ,
"integrity" : "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==" ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-character" : "^2.0.0" ,
"micromark-util-sanitize-uri" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-footnote" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz" ,
"integrity" : "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==" ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-core-commonmark" : "^2.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-normalize-identifier" : "^2.0.0" ,
"micromark-util-sanitize-uri" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-strikethrough" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz" ,
"integrity" : "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==" ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-classify-character" : "^2.0.0" ,
"micromark-util-resolve-all" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-table" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz" ,
"integrity" : "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==" ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-tagfilter" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz" ,
"integrity" : "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==" ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-extension-gfm-task-list-item" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz" ,
"integrity" : "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==" ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/micromark-factory-destination" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz" ,
"integrity" : "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-factory-label" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz" ,
"integrity" : "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-factory-space" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz" ,
"integrity" : "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-character" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-factory-title" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz" ,
"integrity" : "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-factory-whitespace" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz" ,
"integrity" : "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-factory-space" : "^2.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-util-character" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz" ,
"integrity" : "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-util-chunked" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz" ,
"integrity" : "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-symbol" : "^2.0.0"
}
} ,
"node_modules/micromark-util-classify-character" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz" ,
"integrity" : "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-character" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-util-combine-extensions" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz" ,
"integrity" : "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-util-decode-numeric-character-reference" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz" ,
"integrity" : "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-symbol" : "^2.0.0"
}
} ,
"node_modules/micromark-util-decode-string" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz" ,
"integrity" : "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"decode-named-character-reference" : "^1.0.0" ,
"micromark-util-character" : "^2.0.0" ,
"micromark-util-decode-numeric-character-reference" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0"
}
} ,
"node_modules/micromark-util-encode" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz" ,
"integrity" : "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT"
} ,
"node_modules/micromark-util-html-tag-name" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz" ,
"integrity" : "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT"
} ,
"node_modules/micromark-util-normalize-identifier" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz" ,
"integrity" : "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-symbol" : "^2.0.0"
}
} ,
"node_modules/micromark-util-resolve-all" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz" ,
"integrity" : "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-util-sanitize-uri" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz" ,
"integrity" : "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"micromark-util-character" : "^2.0.0" ,
"micromark-util-encode" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0"
}
} ,
"node_modules/micromark-util-subtokenize" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz" ,
"integrity" : "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"devlop" : "^1.0.0" ,
"micromark-util-chunked" : "^2.0.0" ,
"micromark-util-symbol" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0"
}
} ,
"node_modules/micromark-util-symbol" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz" ,
"integrity" : "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT"
} ,
"node_modules/micromark-util-types" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz" ,
"integrity" : "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==" ,
"funding" : [
{
"type" : "GitHub Sponsors" ,
"url" : "https://github.com/sponsors/unifiedjs"
} ,
{
"type" : "OpenCollective" ,
"url" : "https://opencollective.com/unified"
}
] ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/micromatch" : {
"version" : "4.0.8" ,
"resolved" : "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz" ,
"integrity" : "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==" ,
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "MIT" ,
"dependencies" : {
"braces" : "^3.0.3" ,
"picomatch" : "^2.3.1"
} ,
"engines" : {
"node" : ">=8.6"
}
} ,
"node_modules/mime" : {
"version" : "2.6.0" ,
"resolved" : "https://registry.npmmirror.com/mime/-/mime-2.6.0.tgz" ,
"integrity" : "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"mime" : "cli.js"
} ,
"engines" : {
"node" : ">=4.0.0"
}
} ,
"node_modules/mime-db" : {
"version" : "1.52.0" ,
"resolved" : "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" ,
"integrity" : "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.6"
}
} ,
"node_modules/mime-types" : {
"version" : "2.1.35" ,
"resolved" : "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" ,
"integrity" : "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==" ,
"license" : "MIT" ,
"dependencies" : {
"mime-db" : "1.52.0"
} ,
"engines" : {
"node" : ">= 0.6"
}
} ,
"node_modules/mimic-fn" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmmirror.com/mimic-fn/-/mimic-fn-2.1.0.tgz" ,
"integrity" : "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/mimic-function" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz" ,
"integrity" : "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/mimic-response" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmmirror.com/mimic-response/-/mimic-response-1.0.1.tgz" ,
"integrity" : "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4"
}
} ,
"node_modules/minimatch" : {
"version" : "3.1.2" ,
"resolved" : "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz" ,
"integrity" : "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"brace-expansion" : "^1.1.7"
} ,
"engines" : {
"node" : "*"
}
} ,
"node_modules/minimist" : {
"version" : "1.2.8" ,
"resolved" : "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz" ,
"integrity" : "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/minipass" : {
"version" : "3.3.6" ,
"resolved" : "https://registry.npmmirror.com/minipass/-/minipass-3.3.6.tgz" ,
"integrity" : "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"yallist" : "^4.0.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/minipass-collect" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmmirror.com/minipass-collect/-/minipass-collect-1.0.2.tgz" ,
"integrity" : "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"minipass" : "^3.0.0"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/minipass-fetch" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmmirror.com/minipass-fetch/-/minipass-fetch-2.1.2.tgz" ,
"integrity" : "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"minipass" : "^3.1.6" ,
"minipass-sized" : "^1.0.3" ,
"minizlib" : "^2.1.2"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
} ,
"optionalDependencies" : {
"encoding" : "^0.1.13"
}
} ,
"node_modules/minipass-flush" : {
"version" : "1.0.5" ,
"resolved" : "https://registry.npmmirror.com/minipass-flush/-/minipass-flush-1.0.5.tgz" ,
"integrity" : "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" ,
"dev" : true ,
"license" : "ISC" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-22 09:18:21 +08:00
"minipass" : "^3.0.0"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">= 8"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/minipass-pipeline" : {
"version" : "1.2.4" ,
"resolved" : "https://registry.npmmirror.com/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" ,
"integrity" : "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"minipass" : "^3.0.0"
} ,
2025-08-19 01:17:17 +00:00
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">=8"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/minipass-sized" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmmirror.com/minipass-sized/-/minipass-sized-1.0.3.tgz" ,
"integrity" : "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==" ,
"dev" : true ,
"license" : "ISC" ,
2025-08-19 01:17:17 +00:00
"dependencies" : {
2025-12-22 09:18:21 +08:00
"minipass" : "^3.0.0"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">=8"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/minipass/node_modules/yallist" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz" ,
"integrity" : "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" ,
2025-12-06 12:46:40 +09:00
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "ISC"
2025-12-06 12:46:40 +09:00
} ,
2025-12-22 09:18:21 +08:00
"node_modules/minizlib" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmmirror.com/minizlib/-/minizlib-2.1.2.tgz" ,
"integrity" : "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "MIT" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-22 09:18:21 +08:00
"minipass" : "^3.0.0" ,
"yallist" : "^4.0.0"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">= 8"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/minizlib/node_modules/yallist" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz" ,
"integrity" : "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/mkdirp" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmmirror.com/mkdirp/-/mkdirp-1.0.4.tgz" ,
"integrity" : "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
"license" : "MIT" ,
2025-12-22 09:18:21 +08:00
"bin" : {
"mkdirp" : "bin/cmd.js"
} ,
"engines" : {
"node" : ">=10"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-10 20:54:43 +05:30
"node_modules/motion" : {
"version" : "12.23.25" ,
"resolved" : "https://registry.npmjs.org/motion/-/motion-12.23.25.tgz" ,
"integrity" : "sha512-Fk5Y1kcgxYiTYOUjmwfXQAP7tP+iGqw/on1UID9WEL/6KpzxPr9jY2169OsjgZvXJdpraKXy0orkjaCVIl5fgQ==" ,
"license" : "MIT" ,
"dependencies" : {
"framer-motion" : "^12.23.25" ,
"tslib" : "^2.4.0"
} ,
"peerDependencies" : {
"@emotion/is-prop-valid" : "*" ,
"react" : "^18.0.0 || ^19.0.0" ,
"react-dom" : "^18.0.0 || ^19.0.0"
} ,
"peerDependenciesMeta" : {
"@emotion/is-prop-valid" : {
"optional" : true
} ,
"react" : {
"optional" : true
} ,
"react-dom" : {
"optional" : true
}
}
} ,
"node_modules/motion-dom" : {
"version" : "12.23.23" ,
"resolved" : "https://registry.npmjs.org/motion-dom/-/motion-dom-12.23.23.tgz" ,
"integrity" : "sha512-n5yolOs0TQQBRUFImrRfs/+6X4p3Q4n1dUEqt/H58Vx7OW6RF+foWEgmTVDhIWJIMXOuNNL0apKH2S16en9eiA==" ,
"license" : "MIT" ,
"dependencies" : {
"motion-utils" : "^12.23.6"
}
} ,
"node_modules/motion-utils" : {
"version" : "12.23.6" ,
"resolved" : "https://registry.npmjs.org/motion-utils/-/motion-utils-12.23.6.tgz" ,
"integrity" : "sha512-eAWoPgr4eFEOFfg2WjIsMoqJTW6Z8MTUCgn/GZ3VRpClWBdnbjryiA3ZSNLyxCTmCQx4RmYX6jX1iWHbenUPNQ==" ,
"license" : "MIT"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/ms" : {
"version" : "2.1.3" ,
"resolved" : "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" ,
"integrity" : "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" ,
"license" : "MIT"
} ,
2025-12-05 21:15:02 +09:00
"node_modules/mustache" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz" ,
"integrity" : "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==" ,
"license" : "MIT" ,
"bin" : {
"mustache" : "bin/mustache"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/nano-spawn" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/nano-spawn/-/nano-spawn-2.0.0.tgz" ,
"integrity" : "sha512-tacvGzUY5o2D8CBh2rrwxyNojUsZNU2zjNTzKQrkgGJQTbGAfArVWXSKMBokBeeg6C7OLRGUEyoFlYbfeWQIqw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=20.17"
} ,
"funding" : {
"url" : "https://github.com/sindresorhus/nano-spawn?sponsor=1"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/nanoid" : {
"version" : "3.3.11" ,
"resolved" : "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz" ,
"integrity" : "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
"license" : "MIT" ,
"bin" : {
"nanoid" : "bin/nanoid.cjs"
} ,
"engines" : {
"node" : "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/napi-postinstall" : {
"version" : "0.3.4" ,
"resolved" : "https://registry.npmjs.org/napi-postinstall/-/napi-postinstall-0.3.4.tgz" ,
"integrity" : "sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"napi-postinstall" : "lib/cli.js"
} ,
"engines" : {
"node" : "^12.20.0 || ^14.18.0 || >=16.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/napi-postinstall"
}
} ,
"node_modules/natural-compare" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" ,
"integrity" : "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-20 20:18:54 +05:30
"node_modules/negotiator" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/negotiator/-/negotiator-1.0.0.tgz" ,
"integrity" : "sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.6"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/next" : {
2025-12-13 23:28:41 +09:00
"version" : "16.0.10" ,
"resolved" : "https://registry.npmjs.org/next/-/next-16.0.10.tgz" ,
"integrity" : "sha512-RtWh5PUgI+vxlV3HdR+IfWA1UUHu0+Ram/JBO4vWB54cVPentCD0e+lxyAYEsDTqGGMg7qpjhKh6dc6aW7W/sA==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
2025-12-13 23:28:41 +09:00
"@next/env" : "16.0.10" ,
2025-08-19 01:17:17 +00:00
"@swc/helpers" : "0.5.15" ,
"caniuse-lite" : "^1.0.30001579" ,
"postcss" : "8.4.31" ,
"styled-jsx" : "5.1.6"
} ,
"bin" : {
"next" : "dist/bin/next"
} ,
"engines" : {
2025-12-04 13:48:30 +09:00
"node" : ">=20.9.0"
2025-08-19 01:17:17 +00:00
} ,
"optionalDependencies" : {
2025-12-13 23:28:41 +09:00
"@next/swc-darwin-arm64" : "16.0.10" ,
"@next/swc-darwin-x64" : "16.0.10" ,
"@next/swc-linux-arm64-gnu" : "16.0.10" ,
"@next/swc-linux-arm64-musl" : "16.0.10" ,
"@next/swc-linux-x64-gnu" : "16.0.10" ,
"@next/swc-linux-x64-musl" : "16.0.10" ,
"@next/swc-win32-arm64-msvc" : "16.0.10" ,
"@next/swc-win32-x64-msvc" : "16.0.10" ,
2025-12-04 13:48:30 +09:00
"sharp" : "^0.34.4"
2025-08-19 01:17:17 +00:00
} ,
"peerDependencies" : {
"@opentelemetry/api" : "^1.1.0" ,
2025-12-04 13:48:30 +09:00
"@playwright/test" : "^1.51.1" ,
2025-08-19 01:17:17 +00:00
"babel-plugin-react-compiler" : "*" ,
"react" : "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0" ,
"react-dom" : "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0" ,
"sass" : "^1.3.0"
} ,
"peerDependenciesMeta" : {
"@opentelemetry/api" : {
"optional" : true
} ,
"@playwright/test" : {
"optional" : true
} ,
"babel-plugin-react-compiler" : {
"optional" : true
} ,
"sass" : {
"optional" : true
}
}
} ,
"node_modules/next/node_modules/postcss" : {
"version" : "8.4.31" ,
"resolved" : "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz" ,
"integrity" : "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==" ,
"funding" : [
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/postcss/"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/postcss"
} ,
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
"license" : "MIT" ,
"dependencies" : {
2025-11-29 12:39:35 +08:00
"nanoid" : "^3.3.6" ,
"picocolors" : "^1.0.0" ,
"source-map-js" : "^1.0.2"
} ,
"engines" : {
"node" : "^10 || ^12 || >=14"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/nice-try" : {
"version" : "1.0.5" ,
"resolved" : "https://registry.npmmirror.com/nice-try/-/nice-try-1.0.5.tgz" ,
"integrity" : "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/node-abi" : {
"version" : "3.85.0" ,
"resolved" : "https://registry.npmmirror.com/node-abi/-/node-abi-3.85.0.tgz" ,
"integrity" : "sha512-zsFhmbkAzwhTft6nd3VxcG0cvJsT70rL+BIGHWVq5fi6MwGrHwzqKaxXE+Hl2GmnGItnDKPPkO5/LQqjVkIdFg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"semver" : "^7.3.5"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/node-addon-api" : {
"version" : "1.7.2" ,
"resolved" : "https://registry.npmmirror.com/node-addon-api/-/node-addon-api-1.7.2.tgz" ,
"integrity" : "sha512-ibPK3iA+vaY1eEjESkQkM0BbCqFOaZMiXRTtdB0u7b4djtY6JnsjvPdUHVMg6xQt3B8fpTTWHI9A+ADjM9frzg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true
} ,
"node_modules/node-api-version" : {
"version" : "0.2.1" ,
"resolved" : "https://registry.npmmirror.com/node-api-version/-/node-api-version-0.2.1.tgz" ,
"integrity" : "sha512-2xP/IGGMmmSQpI1+O/k72jF/ykvZ89JeuKX3TLJAYPDVLUalrshrLHkeVcCCZqG/eEa635cr8IBYzgnDvM2O8Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"semver" : "^7.3.5"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/node-releases" : {
"version" : "2.0.27" ,
"resolved" : "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz" ,
"integrity" : "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/nopt" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmmirror.com/nopt/-/nopt-6.0.0.tgz" ,
"integrity" : "sha512-ZwLpbTgdhuZUnZzjd7nb1ZV+4DoiC6/sfiVKok72ym/4Tlf+DFdlHYmT2JPmcNNWV6Pi3SDf1kT+A4r9RTuT9g==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"abbrev" : "^1.0.0"
} ,
"bin" : {
"nopt" : "bin/nopt.js"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
"node_modules/normalize-url" : {
"version" : "6.1.0" ,
"resolved" : "https://registry.npmmirror.com/normalize-url/-/normalize-url-6.1.0.tgz" ,
"integrity" : "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/npm-run-path" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmmirror.com/npm-run-path/-/npm-run-path-2.0.2.tgz" ,
"integrity" : "sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"path-key" : "^2.0.0"
} ,
"engines" : {
"node" : ">=4"
}
} ,
"node_modules/npm-run-path/node_modules/path-key" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/path-key/-/path-key-2.0.1.tgz" ,
"integrity" : "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/nwsapi" : {
"version" : "2.2.20" ,
"resolved" : "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.20.tgz" ,
"integrity" : "sha512-/ieB+mDe4MrrKMT8z+mQL8klXydZWGR5Dowt4RAGKbJ3kIGEx3X4ljUo+6V73IXtUPWgfOlU5B9MlGxFO5T+cA==" ,
"license" : "MIT"
} ,
"node_modules/object-assign" : {
"version" : "4.1.1" ,
"resolved" : "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" ,
"integrity" : "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/object-inspect" : {
"version" : "1.13.4" ,
"resolved" : "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.4.tgz" ,
"integrity" : "sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/object-keys" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" ,
"integrity" : "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/object.assign" : {
"version" : "4.1.7" ,
"resolved" : "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz" ,
"integrity" : "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.3" ,
"define-properties" : "^1.2.1" ,
"es-object-atoms" : "^1.0.0" ,
"has-symbols" : "^1.1.0" ,
"object-keys" : "^1.1.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/object.entries" : {
"version" : "1.1.9" ,
"resolved" : "https://registry.npmjs.org/object.entries/-/object.entries-1.1.9.tgz" ,
"integrity" : "sha512-8u/hfXFRBD1O0hPUjioLhoWFHRmt6tKA4/vZPyckBr18l1KE9uHrFaFaUi8MDRTpi4uak2goyPTSNJLXX2k2Hw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.4" ,
"define-properties" : "^1.2.1" ,
"es-object-atoms" : "^1.1.1"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/object.fromentries" : {
"version" : "2.0.8" ,
"resolved" : "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz" ,
"integrity" : "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.7" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.2" ,
"es-object-atoms" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/object.groupby" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.3.tgz" ,
"integrity" : "sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.7" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.2"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">= 0.4"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/object.values" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz" ,
"integrity" : "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.3" ,
"define-properties" : "^1.2.1" ,
"es-object-atoms" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
2025-08-19 01:17:17 +00:00
} ,
2025-11-15 13:36:42 +09:00
"node_modules/ollama-ai-provider-v2" : {
"version" : "1.5.4" ,
"resolved" : "https://registry.npmjs.org/ollama-ai-provider-v2/-/ollama-ai-provider-v2-1.5.4.tgz" ,
"integrity" : "sha512-OTxzIvxW7GutgkyYe55Y4lJeUbnDjH1jDkAQhjGiynffkDn0wyWbv/dD92A8HX1ni5Ec+i+ksYMXXlVOYPQR4g==" ,
"license" : "Apache-2.0" ,
"dependencies" : {
"@ai-sdk/provider" : "^2.0.0" ,
"@ai-sdk/provider-utils" : "^3.0.17"
} ,
"engines" : {
"node" : ">=18"
} ,
"peerDependencies" : {
"zod" : "^4.0.16"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/once" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmmirror.com/once/-/once-1.4.0.tgz" ,
"integrity" : "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"wrappy" : "1"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/onetime" : {
"version" : "7.0.0" ,
"resolved" : "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz" ,
"integrity" : "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"mimic-function" : "^5.0.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/optionator" : {
"version" : "0.9.4" ,
"resolved" : "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz" ,
"integrity" : "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"deep-is" : "^0.1.3" ,
"fast-levenshtein" : "^2.0.6" ,
"levn" : "^0.4.1" ,
"prelude-ls" : "^1.2.1" ,
"type-check" : "^0.4.0" ,
"word-wrap" : "^1.2.5"
} ,
"engines" : {
"node" : ">= 0.8.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/ora" : {
"version" : "5.4.1" ,
"resolved" : "https://registry.npmmirror.com/ora/-/ora-5.4.1.tgz" ,
"integrity" : "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"bl" : "^4.1.0" ,
"chalk" : "^4.1.0" ,
"cli-cursor" : "^3.1.0" ,
"cli-spinners" : "^2.5.0" ,
"is-interactive" : "^1.0.0" ,
"is-unicode-supported" : "^0.1.0" ,
"log-symbols" : "^4.1.0" ,
"strip-ansi" : "^6.0.0" ,
"wcwidth" : "^1.0.1"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/ora/node_modules/ansi-regex" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" ,
"integrity" : "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/ora/node_modules/cli-cursor" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmmirror.com/cli-cursor/-/cli-cursor-3.1.0.tgz" ,
"integrity" : "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"restore-cursor" : "^3.1.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/ora/node_modules/onetime" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmmirror.com/onetime/-/onetime-5.1.2.tgz" ,
"integrity" : "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"mimic-fn" : "^2.1.0"
} ,
"engines" : {
"node" : ">=6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/ora/node_modules/restore-cursor" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmmirror.com/restore-cursor/-/restore-cursor-3.1.0.tgz" ,
"integrity" : "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"onetime" : "^5.1.0" ,
"signal-exit" : "^3.0.2"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/ora/node_modules/signal-exit" : {
"version" : "3.0.7" ,
"resolved" : "https://registry.npmmirror.com/signal-exit/-/signal-exit-3.0.7.tgz" ,
"integrity" : "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/ora/node_modules/strip-ansi" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/own-keys" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz" ,
"integrity" : "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"get-intrinsic" : "^1.2.6" ,
"object-keys" : "^1.1.1" ,
"safe-push-apply" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/p-cancelable" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmmirror.com/p-cancelable/-/p-cancelable-2.1.1.tgz" ,
"integrity" : "sha512-BZOr3nRQHOntUjTrH8+Lh54smKHoHyur8We1V8DSMVrl5A2malOOwuJRnKRDjSnkoeBh4at6BwEnb5I7Jl31wg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/p-finally" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/p-finally/-/p-finally-1.0.0.tgz" ,
"integrity" : "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/p-limit" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" ,
"integrity" : "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"yocto-queue" : "^0.1.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/p-locate" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz" ,
"integrity" : "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"p-limit" : "^3.0.2"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/p-map" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmmirror.com/p-map/-/p-map-4.0.0.tgz" ,
"integrity" : "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"aggregate-error" : "^3.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
"node_modules/package-json-from-dist" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmmirror.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz" ,
"integrity" : "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/pako" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/pako/-/pako-2.1.0.tgz" ,
"integrity" : "sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==" ,
"license" : "(MIT AND Zlib)"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/parent-module" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" ,
"integrity" : "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"callsites" : "^3.0.0"
} ,
"engines" : {
"node" : ">=6"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/parse-entities" : {
"version" : "4.0.2" ,
"resolved" : "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz" ,
"integrity" : "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^2.0.0" ,
"character-entities-legacy" : "^3.0.0" ,
"character-reference-invalid" : "^2.0.0" ,
"decode-named-character-reference" : "^1.0.0" ,
"is-alphanumerical" : "^2.0.0" ,
"is-decimal" : "^2.0.0" ,
"is-hexadecimal" : "^2.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
"node_modules/parse-entities/node_modules/@types/unist" : {
"version" : "2.0.11" ,
"resolved" : "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz" ,
"integrity" : "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==" ,
"license" : "MIT"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/parse5" : {
"version" : "7.2.1" ,
"resolved" : "https://registry.npmjs.org/parse5/-/parse5-7.2.1.tgz" ,
"integrity" : "sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==" ,
"license" : "MIT" ,
"dependencies" : {
"entities" : "^4.5.0"
} ,
"funding" : {
"url" : "https://github.com/inikulin/parse5?sponsor=1"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/path-exists" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" ,
"integrity" : "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/path-is-absolute" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmmirror.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz" ,
"integrity" : "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/path-key" : {
"version" : "3.1.1" ,
"resolved" : "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" ,
"integrity" : "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/path-parse" : {
"version" : "1.0.7" ,
"resolved" : "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz" ,
"integrity" : "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/path-scurry" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmmirror.com/path-scurry/-/path-scurry-1.11.1.tgz" ,
"integrity" : "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0" ,
"dependencies" : {
"lru-cache" : "^10.2.0" ,
"minipass" : "^5.0.0 || ^6.0.2 || ^7.0.0"
} ,
"engines" : {
"node" : ">=16 || 14 >=14.18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/path-scurry/node_modules/minipass" : {
"version" : "7.1.2" ,
"resolved" : "https://registry.npmmirror.com/minipass/-/minipass-7.1.2.tgz" ,
"integrity" : "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=16 || 14 >=14.17"
}
} ,
"node_modules/pe-library" : {
"version" : "0.4.1" ,
"resolved" : "https://registry.npmmirror.com/pe-library/-/pe-library-0.4.1.tgz" ,
"integrity" : "sha512-eRWB5LBz7PpDu4PUlwT0PhnQfTQJlDDdPa35urV4Osrm0t0AqQFGn+UIkU3klZvwJ8KPO3VbBFsXquA6p6kqZw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12" ,
"npm" : ">=6"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/jet2jet"
}
} ,
"node_modules/pend" : {
"version" : "1.2.0" ,
"resolved" : "https://registry.npmmirror.com/pend/-/pend-1.2.0.tgz" ,
"integrity" : "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
"license" : "MIT"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/picocolors" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz" ,
"integrity" : "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==" ,
"license" : "ISC"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/picomatch" : {
"version" : "2.3.1" ,
"resolved" : "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz" ,
"integrity" : "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8.6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/jonschlinkert"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/pidtree" : {
"version" : "0.6.0" ,
"resolved" : "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz" ,
"integrity" : "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"pidtree" : "bin/pidtree.js"
} ,
"engines" : {
"node" : ">=0.10"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/plist" : {
"version" : "3.1.0" ,
"resolved" : "https://registry.npmmirror.com/plist/-/plist-3.1.0.tgz" ,
"integrity" : "sha512-uysumyrvkUX0rX/dEVqt8gC3sTBzd4zoWfLeS29nb53imdaXVvLINYXTI2GNqzaMuvacNx4uJQ8+b3zXR0pkgQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@xmldom/xmldom" : "^0.8.8" ,
"base64-js" : "^1.5.1" ,
"xmlbuilder" : "^15.1.1"
} ,
"engines" : {
"node" : ">=10.4.0"
}
} ,
"node_modules/plist/node_modules/@xmldom/xmldom" : {
"version" : "0.8.11" ,
"resolved" : "https://registry.npmmirror.com/@xmldom/xmldom/-/xmldom-0.8.11.tgz" ,
"integrity" : "sha512-cQzWCtO6C8TQiYl1ruKNn2U6Ao4o4WBBcbL61yJl84x+j5sOWWFU9X7DpND8XZG3daDppSsigMdfAIl2upQBRw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10.0.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/possible-typed-array-names" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz" ,
"integrity" : "sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/postcss" : {
"version" : "8.5.3" ,
"resolved" : "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz" ,
"integrity" : "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==" ,
"dev" : true ,
"funding" : [
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/postcss/"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/postcss"
} ,
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"nanoid" : "^3.3.8" ,
"picocolors" : "^1.1.1" ,
"source-map-js" : "^1.2.1"
} ,
"engines" : {
"node" : "^10 || ^12 || >=14"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/postcss-selector-parser" : {
"version" : "6.0.10" ,
"resolved" : "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz" ,
"integrity" : "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"cssesc" : "^3.0.0" ,
"util-deprecate" : "^1.0.2"
} ,
"engines" : {
"node" : ">=4"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/postject" : {
"version" : "1.0.0-alpha.6" ,
"resolved" : "https://registry.npmmirror.com/postject/-/postject-1.0.0-alpha.6.tgz" ,
"integrity" : "sha512-b9Eb8h2eVqNE8edvKdwqkrY6O7kAwmI8kcnBv1NScolYJbo59XUF0noFq+lxbC1yN20bmC0WBEbDC5H/7ASb0A==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"peer" : true ,
"dependencies" : {
"commander" : "^9.4.0"
} ,
"bin" : {
"postject" : "dist/cli.js"
} ,
"engines" : {
"node" : ">=14.0.0"
}
} ,
"node_modules/postject/node_modules/commander" : {
"version" : "9.5.0" ,
"resolved" : "https://registry.npmmirror.com/commander/-/commander-9.5.0.tgz" ,
"integrity" : "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"peer" : true ,
"engines" : {
"node" : "^12.20.0 || >=14"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/prelude-ls" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" ,
"integrity" : "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.8.0"
}
} ,
2025-12-03 21:49:34 +09:00
"node_modules/prism-react-renderer" : {
"version" : "2.4.1" ,
"resolved" : "https://registry.npmjs.org/prism-react-renderer/-/prism-react-renderer-2.4.1.tgz" ,
"integrity" : "sha512-ey8Ls/+Di31eqzUxC46h8MksNuGx/n0AAC8uKpwFau4RPDYLuE3EXTp8N8G2vX2N7UC/+IXeNUnlWBGGcAG+Ig==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/prismjs" : "^1.26.0" ,
"clsx" : "^2.0.0"
} ,
"peerDependencies" : {
"react" : ">=16.0.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/proc-log" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/proc-log/-/proc-log-2.0.1.tgz" ,
"integrity" : "sha512-Kcmo2FhfDTXdcbfDH76N7uBYHINxc/8GW7UAVuVP9I+Va3uHSerrnKV6dLooga/gh7GlgzuCCr/eoldnL1muGw==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
"node_modules/progress" : {
"version" : "2.0.3" ,
"resolved" : "https://registry.npmmirror.com/progress/-/progress-2.0.3.tgz" ,
"integrity" : "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.4.0"
}
} ,
"node_modules/promise-inflight" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmmirror.com/promise-inflight/-/promise-inflight-1.0.1.tgz" ,
"integrity" : "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/promise-retry" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/promise-retry/-/promise-retry-2.0.1.tgz" ,
"integrity" : "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"err-code" : "^2.0.2" ,
"retry" : "^0.12.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/prop-types" : {
"version" : "15.8.1" ,
"resolved" : "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz" ,
"integrity" : "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"loose-envify" : "^1.4.0" ,
"object-assign" : "^4.1.1" ,
"react-is" : "^16.13.1"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/property-information" : {
"version" : "7.1.0" ,
"resolved" : "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz" ,
"integrity" : "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-05 21:15:02 +09:00
"node_modules/protobufjs" : {
"version" : "7.5.4" ,
"resolved" : "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz" ,
"integrity" : "sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==" ,
"hasInstallScript" : true ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"@protobufjs/aspromise" : "^1.1.2" ,
"@protobufjs/base64" : "^1.1.2" ,
"@protobufjs/codegen" : "^2.0.4" ,
"@protobufjs/eventemitter" : "^1.1.0" ,
"@protobufjs/fetch" : "^1.1.0" ,
"@protobufjs/float" : "^1.0.2" ,
"@protobufjs/inquire" : "^1.1.0" ,
"@protobufjs/path" : "^1.1.2" ,
"@protobufjs/pool" : "^1.1.0" ,
"@protobufjs/utf8" : "^1.1.0" ,
"@types/node" : ">=13.7.0" ,
"long" : "^5.0.0"
} ,
"engines" : {
"node" : ">=12.0.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/proxy-from-env" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmmirror.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz" ,
"integrity" : "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/pump" : {
"version" : "3.0.3" ,
"resolved" : "https://registry.npmmirror.com/pump/-/pump-3.0.3.tgz" ,
"integrity" : "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"end-of-stream" : "^1.1.0" ,
"once" : "^1.3.1"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/punycode" : {
"version" : "2.3.1" ,
"resolved" : "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz" ,
"integrity" : "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/queue-microtask" : {
"version" : "1.2.3" ,
"resolved" : "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz" ,
"integrity" : "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==" ,
"dev" : true ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/quick-lru" : {
"version" : "5.1.1" ,
"resolved" : "https://registry.npmmirror.com/quick-lru/-/quick-lru-5.1.1.tgz" ,
"integrity" : "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/react" : {
2025-12-08 23:31:17 +09:00
"version" : "19.1.2" ,
"resolved" : "https://registry.npmjs.org/react/-/react-19.1.2.tgz" ,
"integrity" : "sha512-MdWVitvLbQULD+4DP8GYjZUrepGW7d+GQkNVqJEzNxE+e9WIa4egVFE/RDfVb1u9u/Jw7dNMmPB4IqxzbFYJ0w==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/react-dom" : {
2025-12-08 23:31:17 +09:00
"version" : "19.1.2" ,
"resolved" : "https://registry.npmjs.org/react-dom/-/react-dom-19.1.2.tgz" ,
"integrity" : "sha512-dEoydsCp50i7kS1xHOmPXq4zQYoGWedUsvqv9H6zdif2r7yLHygyfP9qou71TulRN0d6ng9EbRVsQhSqfUc19g==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"dependencies" : {
"scheduler" : "^0.26.0"
} ,
"peerDependencies" : {
2025-12-08 23:31:17 +09:00
"react" : "^19.1.2"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/react-drawio" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmjs.org/react-drawio/-/react-drawio-1.0.3.tgz" ,
"integrity" : "sha512-Tp7CsVzo11EWssXSW1m0zK7+awjVjVlGXsmDABa7SBaOTiLrBO9ESU4TraNP4oBdIX8N7wz5Iw10Ek+itVDmEw==" ,
"license" : "MIT" ,
"peerDependencies" : {
"react" : "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
} ,
"node_modules/react-icons" : {
"version" : "5.5.0" ,
"resolved" : "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz" ,
"integrity" : "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==" ,
"license" : "MIT" ,
"peerDependencies" : {
"react" : "*"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/react-is" : {
"version" : "16.13.1" ,
"resolved" : "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" ,
"integrity" : "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-05 22:42:39 +09:00
"node_modules/react-markdown" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz" ,
"integrity" : "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/hast" : "^3.0.0" ,
"@types/mdast" : "^4.0.0" ,
"devlop" : "^1.0.0" ,
"hast-util-to-jsx-runtime" : "^2.0.0" ,
"html-url-attributes" : "^3.0.0" ,
"mdast-util-to-hast" : "^13.0.0" ,
"remark-parse" : "^11.0.0" ,
"remark-rehype" : "^11.0.0" ,
"unified" : "^11.0.0" ,
"unist-util-visit" : "^5.0.0" ,
"vfile" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
} ,
"peerDependencies" : {
"@types/react" : ">=18" ,
"react" : ">=18"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/react-remove-scroll" : {
"version" : "2.6.3" ,
"resolved" : "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.6.3.tgz" ,
"integrity" : "sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==" ,
"license" : "MIT" ,
"dependencies" : {
"react-remove-scroll-bar" : "^2.3.7" ,
"react-style-singleton" : "^2.2.3" ,
"tslib" : "^2.1.0" ,
"use-callback-ref" : "^1.3.3" ,
"use-sidecar" : "^1.1.3"
} ,
"engines" : {
"node" : ">=10"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/react-remove-scroll-bar" : {
"version" : "2.3.8" ,
"resolved" : "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.8.tgz" ,
"integrity" : "sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==" ,
"license" : "MIT" ,
"dependencies" : {
"react-style-singleton" : "^2.2.2" ,
"tslib" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/react-resizable-panels" : {
"version" : "3.0.6" ,
"resolved" : "https://registry.npmjs.org/react-resizable-panels/-/react-resizable-panels-3.0.6.tgz" ,
"integrity" : "sha512-b3qKHQ3MLqOgSS+FRYKapNkJZf5EQzuf6+RLiq1/IlTHw99YrZ2NJZLk4hQIzTnnIkRg2LUqyVinu6YWWpUYew==" ,
"license" : "MIT" ,
"peerDependencies" : {
"react" : "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" ,
"react-dom" : "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/react-style-singleton" : {
"version" : "2.2.3" ,
"resolved" : "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.3.tgz" ,
"integrity" : "sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==" ,
"license" : "MIT" ,
"dependencies" : {
"get-nonce" : "^1.0.0" ,
"tslib" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/read-binary-file-arch" : {
"version" : "1.0.6" ,
"resolved" : "https://registry.npmmirror.com/read-binary-file-arch/-/read-binary-file-arch-1.0.6.tgz" ,
"integrity" : "sha512-BNg9EN3DD3GsDXX7Aa8O4p92sryjkmzYYgmgTAc6CA4uGLEDzFfxOxugu21akOxpcXHiEgsYkC6nPsQvLLLmEg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "^4.3.4"
} ,
"bin" : {
"read-binary-file-arch" : "cli.js"
}
} ,
"node_modules/readable-stream" : {
"version" : "3.6.2" ,
"resolved" : "https://registry.npmmirror.com/readable-stream/-/readable-stream-3.6.2.tgz" ,
"integrity" : "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"inherits" : "^2.0.3" ,
"string_decoder" : "^1.1.1" ,
"util-deprecate" : "^1.0.1"
} ,
"engines" : {
"node" : ">= 6"
}
} ,
"node_modules/rechoir" : {
"version" : "0.6.2" ,
"resolved" : "https://registry.npmmirror.com/rechoir/-/rechoir-0.6.2.tgz" ,
"integrity" : "sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==" ,
"dev" : true ,
"dependencies" : {
"resolve" : "^1.1.6"
} ,
"engines" : {
"node" : ">= 0.10"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/reflect.getprototypeof" : {
"version" : "1.0.10" ,
"resolved" : "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz" ,
"integrity" : "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.9" ,
"es-errors" : "^1.3.0" ,
"es-object-atoms" : "^1.0.0" ,
"get-intrinsic" : "^1.2.7" ,
"get-proto" : "^1.0.1" ,
"which-builtin-type" : "^1.2.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/regexp.prototype.flags" : {
"version" : "1.5.4" ,
"resolved" : "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz" ,
"integrity" : "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"define-properties" : "^1.2.1" ,
"es-errors" : "^1.3.0" ,
"get-proto" : "^1.0.1" ,
"gopd" : "^1.2.0" ,
"set-function-name" : "^2.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/remark-gfm" : {
"version" : "4.0.1" ,
"resolved" : "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz" ,
"integrity" : "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"mdast-util-gfm" : "^3.0.0" ,
"micromark-extension-gfm" : "^3.0.0" ,
"remark-parse" : "^11.0.0" ,
"remark-stringify" : "^11.0.0" ,
"unified" : "^11.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/remark-parse" : {
"version" : "11.0.0" ,
"resolved" : "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz" ,
"integrity" : "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"mdast-util-from-markdown" : "^2.0.0" ,
"micromark-util-types" : "^2.0.0" ,
"unified" : "^11.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/remark-rehype" : {
"version" : "11.1.2" ,
"resolved" : "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz" ,
"integrity" : "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/hast" : "^3.0.0" ,
"@types/mdast" : "^4.0.0" ,
"mdast-util-to-hast" : "^13.0.0" ,
"unified" : "^11.0.0" ,
"vfile" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/remark-stringify" : {
"version" : "11.0.0" ,
"resolved" : "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz" ,
"integrity" : "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/mdast" : "^4.0.0" ,
"mdast-util-to-markdown" : "^2.0.0" ,
"unified" : "^11.0.0"
} ,
"funding" : {
2025-11-29 12:39:35 +08:00
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/require-directory" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmmirror.com/require-directory/-/require-directory-2.1.1.tgz" ,
"integrity" : "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
"node_modules/resedit" : {
"version" : "1.7.2" ,
"resolved" : "https://registry.npmmirror.com/resedit/-/resedit-1.7.2.tgz" ,
"integrity" : "sha512-vHjcY2MlAITJhC0eRD/Vv8Vlgmu9Sd3LX9zZvtGzU5ZImdTN3+d6e/4mnTyV8vEbyf1sgNIrWxhWlrys52OkEA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"pe-library" : "^0.4.1"
} ,
"engines" : {
"node" : ">=12" ,
"npm" : ">=6"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/jet2jet"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/resolve" : {
"version" : "1.22.11" ,
"resolved" : "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz" ,
"integrity" : "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-core-module" : "^2.16.1" ,
"path-parse" : "^1.0.7" ,
"supports-preserve-symlinks-flag" : "^1.0.0"
} ,
"bin" : {
"resolve" : "bin/resolve"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/resolve-alpn" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmmirror.com/resolve-alpn/-/resolve-alpn-1.2.1.tgz" ,
"integrity" : "sha512-0a1F4l73/ZFZOakJnQ3FvkJ2+gSTQWz/r2KE5OdDY0TxPm5h4GkqkWWfM47T7HsbnOtcJVEF4epCVy6u7Q3K+g==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/resolve-from" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" ,
"integrity" : "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4"
}
} ,
"node_modules/resolve-pkg-maps" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz" ,
"integrity" : "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==" ,
"dev" : true ,
"license" : "MIT" ,
"funding" : {
"url" : "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/responselike" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/responselike/-/responselike-2.0.1.tgz" ,
"integrity" : "sha512-4gl03wn3hj1HP3yzgdI7d3lCkF95F21Pz4BPGvKHinyQzALR5CapwC8yIi0Rh58DEMQ/SguC03wFj2k0M/mHhw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"lowercase-keys" : "^2.0.0"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/restore-cursor" : {
"version" : "5.1.0" ,
"resolved" : "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz" ,
"integrity" : "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"onetime" : "^7.0.0" ,
"signal-exit" : "^4.1.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/retry" : {
"version" : "0.12.0" ,
"resolved" : "https://registry.npmmirror.com/retry/-/retry-0.12.0.tgz" ,
"integrity" : "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 4"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/reusify" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz" ,
"integrity" : "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"iojs" : ">=1.0.0" ,
"node" : ">=0.10.0"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/rfdc" : {
"version" : "1.4.1" ,
"resolved" : "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz" ,
"integrity" : "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/rimraf" : {
"version" : "3.0.2" ,
"resolved" : "https://registry.npmmirror.com/rimraf/-/rimraf-3.0.2.tgz" ,
"integrity" : "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" ,
"deprecated" : "Rimraf versions prior to v4 are no longer supported" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"glob" : "^7.1.3"
} ,
"bin" : {
"rimraf" : "bin.js"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
"node_modules/roarr" : {
"version" : "2.15.4" ,
"resolved" : "https://registry.npmmirror.com/roarr/-/roarr-2.15.4.tgz" ,
"integrity" : "sha512-CHhPh+UNHD2GTXNYhPWLnU8ONHdI+5DI+4EYIAOaiD63rHeYlZvyh8P+in5999TTSFgUYuKUAjzRI4mdh/p+2A==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"optional" : true ,
"dependencies" : {
"boolean" : "^3.0.1" ,
"detect-node" : "^2.0.4" ,
"globalthis" : "^1.0.1" ,
"json-stringify-safe" : "^5.0.1" ,
"semver-compare" : "^1.0.0" ,
"sprintf-js" : "^1.1.2"
} ,
"engines" : {
"node" : ">=8.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/rrweb-cssom" : {
"version" : "0.8.0" ,
"resolved" : "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.8.0.tgz" ,
"integrity" : "sha512-guoltQEx+9aMf2gDZ0s62EcV8lsXR+0w8915TC3ITdn2YueuNjdAYh/levpU9nFaoChh9RUS5ZdQMrKfVEN9tw==" ,
"license" : "MIT"
} ,
"node_modules/run-parallel" : {
"version" : "1.2.0" ,
"resolved" : "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" ,
"integrity" : "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" ,
"dev" : true ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"queue-microtask" : "^1.2.2"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/rxjs" : {
"version" : "7.8.2" ,
"resolved" : "https://registry.npmmirror.com/rxjs/-/rxjs-7.8.2.tgz" ,
"integrity" : "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"tslib" : "^2.1.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/safe-array-concat" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz" ,
"integrity" : "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.2" ,
"get-intrinsic" : "^1.2.6" ,
"has-symbols" : "^1.1.0" ,
"isarray" : "^2.0.5"
} ,
"engines" : {
"node" : ">=0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/safe-buffer" : {
"version" : "5.2.1" ,
"resolved" : "https://registry.npmmirror.com/safe-buffer/-/safe-buffer-5.2.1.tgz" ,
"integrity" : "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" ,
"dev" : true ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/feross"
} ,
{
"type" : "patreon" ,
"url" : "https://www.patreon.com/feross"
} ,
{
"type" : "consulting" ,
"url" : "https://feross.org/support"
}
] ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/safe-push-apply" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz" ,
"integrity" : "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"es-errors" : "^1.3.0" ,
"isarray" : "^2.0.5"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/safe-regex-test" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz" ,
"integrity" : "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.2" ,
"es-errors" : "^1.3.0" ,
"is-regex" : "^1.2.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/safer-buffer" : {
"version" : "2.1.2" ,
"resolved" : "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" ,
"integrity" : "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/sanitize-filename" : {
"version" : "1.6.3" ,
"resolved" : "https://registry.npmmirror.com/sanitize-filename/-/sanitize-filename-1.6.3.tgz" ,
"integrity" : "sha512-y/52Mcy7aw3gRm7IrcGDFx/bCk4AhRh2eI9luHOQM86nZsqwiRkkq2GekHXBBD+SmPidc8i2PqtYZl+pWJ8Oeg==" ,
"dev" : true ,
"license" : "WTFPL OR ISC" ,
"dependencies" : {
"truncate-utf8-bytes" : "^1.0.0"
}
} ,
"node_modules/sax" : {
"version" : "1.4.3" ,
"resolved" : "https://registry.npmmirror.com/sax/-/sax-1.4.3.tgz" ,
"integrity" : "sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==" ,
"dev" : true ,
"license" : "BlueOak-1.0.0"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/saxes" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz" ,
"integrity" : "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==" ,
"license" : "ISC" ,
"dependencies" : {
"xmlchars" : "^2.2.0"
} ,
"engines" : {
"node" : ">=v12.22.7"
}
} ,
"node_modules/scheduler" : {
"version" : "0.26.0" ,
"resolved" : "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz" ,
"integrity" : "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==" ,
"license" : "MIT"
} ,
"node_modules/semver" : {
2025-12-04 13:48:30 +09:00
"version" : "7.7.3" ,
"resolved" : "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz" ,
"integrity" : "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==" ,
2025-11-29 12:39:35 +08:00
"devOptional" : true ,
2025-08-19 01:17:17 +00:00
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver.js"
} ,
"engines" : {
"node" : ">=10"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/semver-compare" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/semver-compare/-/semver-compare-1.0.0.tgz" ,
"integrity" : "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true
} ,
"node_modules/serialize-error" : {
"version" : "7.0.1" ,
"resolved" : "https://registry.npmmirror.com/serialize-error/-/serialize-error-7.0.1.tgz" ,
"integrity" : "sha512-8I8TjW5KMOKsZQTvoxjuSIa7foAwPWGOts+6o7sgjz41/qMD9VQHEDxi6PBvK2l0MXUmqZyNpUK+T2tQaaElvw==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"type-fest" : "^0.13.1"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-20 20:18:54 +05:30
"node_modules/server-only" : {
"version" : "0.0.1" ,
"resolved" : "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz" ,
"integrity" : "sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==" ,
"license" : "MIT"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/set-function-length" : {
"version" : "1.2.2" ,
"resolved" : "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" ,
"integrity" : "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"define-data-property" : "^1.1.4" ,
"es-errors" : "^1.3.0" ,
"function-bind" : "^1.1.2" ,
"get-intrinsic" : "^1.2.4" ,
"gopd" : "^1.0.1" ,
"has-property-descriptors" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/set-function-name" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz" ,
"integrity" : "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"define-data-property" : "^1.1.4" ,
"es-errors" : "^1.3.0" ,
"functions-have-names" : "^1.2.3" ,
"has-property-descriptors" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/set-proto" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz" ,
"integrity" : "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"dunder-proto" : "^1.0.1" ,
"es-errors" : "^1.3.0" ,
"es-object-atoms" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/sharp" : {
2025-12-04 13:48:30 +09:00
"version" : "0.34.5" ,
"resolved" : "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz" ,
"integrity" : "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==" ,
2025-08-19 01:17:17 +00:00
"hasInstallScript" : true ,
"license" : "Apache-2.0" ,
"optional" : true ,
"dependencies" : {
2025-12-04 13:48:30 +09:00
"@img/colour" : "^1.0.0" ,
"detect-libc" : "^2.1.2" ,
"semver" : "^7.7.3"
2025-08-19 01:17:17 +00:00
} ,
"engines" : {
"node" : "^18.17.0 || ^20.3.0 || >=21.0.0"
} ,
"funding" : {
"url" : "https://opencollective.com/libvips"
} ,
"optionalDependencies" : {
2025-12-04 13:48:30 +09:00
"@img/sharp-darwin-arm64" : "0.34.5" ,
"@img/sharp-darwin-x64" : "0.34.5" ,
"@img/sharp-libvips-darwin-arm64" : "1.2.4" ,
"@img/sharp-libvips-darwin-x64" : "1.2.4" ,
"@img/sharp-libvips-linux-arm" : "1.2.4" ,
"@img/sharp-libvips-linux-arm64" : "1.2.4" ,
"@img/sharp-libvips-linux-ppc64" : "1.2.4" ,
"@img/sharp-libvips-linux-riscv64" : "1.2.4" ,
"@img/sharp-libvips-linux-s390x" : "1.2.4" ,
"@img/sharp-libvips-linux-x64" : "1.2.4" ,
"@img/sharp-libvips-linuxmusl-arm64" : "1.2.4" ,
"@img/sharp-libvips-linuxmusl-x64" : "1.2.4" ,
"@img/sharp-linux-arm" : "0.34.5" ,
"@img/sharp-linux-arm64" : "0.34.5" ,
"@img/sharp-linux-ppc64" : "0.34.5" ,
"@img/sharp-linux-riscv64" : "0.34.5" ,
"@img/sharp-linux-s390x" : "0.34.5" ,
"@img/sharp-linux-x64" : "0.34.5" ,
"@img/sharp-linuxmusl-arm64" : "0.34.5" ,
"@img/sharp-linuxmusl-x64" : "0.34.5" ,
"@img/sharp-wasm32" : "0.34.5" ,
"@img/sharp-win32-arm64" : "0.34.5" ,
"@img/sharp-win32-ia32" : "0.34.5" ,
"@img/sharp-win32-x64" : "0.34.5"
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/shebang-command" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" ,
"integrity" : "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" ,
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "MIT" ,
"dependencies" : {
"shebang-regex" : "^3.0.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/shebang-regex" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" ,
"integrity" : "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/shell-quote" : {
"version" : "1.8.3" ,
"resolved" : "https://registry.npmmirror.com/shell-quote/-/shell-quote-1.8.3.tgz" ,
"integrity" : "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/shelljs" : {
"version" : "0.9.2" ,
"resolved" : "https://registry.npmmirror.com/shelljs/-/shelljs-0.9.2.tgz" ,
"integrity" : "sha512-S3I64fEiKgTZzKCC46zT/Ib9meqofLrQVbpSswtjFfAVDW+AZ54WTnAM/3/yENoxz/V1Cy6u3kiiEbQ4DNphvw==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"execa" : "^1.0.0" ,
"fast-glob" : "^3.3.2" ,
"interpret" : "^1.0.0" ,
"rechoir" : "^0.6.2"
} ,
"bin" : {
"shjs" : "bin/shjs"
} ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/shelljs/node_modules/fast-glob" : {
"version" : "3.3.3" ,
"resolved" : "https://registry.npmmirror.com/fast-glob/-/fast-glob-3.3.3.tgz" ,
"integrity" : "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@nodelib/fs.stat" : "^2.0.2" ,
"@nodelib/fs.walk" : "^1.2.3" ,
"glob-parent" : "^5.1.2" ,
"merge2" : "^1.3.0" ,
"micromatch" : "^4.0.8"
} ,
"engines" : {
"node" : ">=8.6.0"
}
} ,
"node_modules/shelljs/node_modules/glob-parent" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmmirror.com/glob-parent/-/glob-parent-5.1.2.tgz" ,
"integrity" : "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==" ,
"dev" : true ,
"license" : "ISC" ,
2025-11-29 12:39:35 +08:00
"dependencies" : {
2025-12-22 09:18:21 +08:00
"is-glob" : "^4.0.1"
2025-11-29 12:39:35 +08:00
} ,
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">= 6"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/shx" : {
"version" : "0.4.0" ,
"resolved" : "https://registry.npmmirror.com/shx/-/shx-0.4.0.tgz" ,
"integrity" : "sha512-Z0KixSIlGPpijKgcH6oCMCbltPImvaKy0sGH8AkLRXw1KyzpKtaCTizP2xen+hNDqVF4xxgvA0KXSb9o4Q6hnA==" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
"license" : "MIT" ,
2025-12-22 09:18:21 +08:00
"dependencies" : {
"minimist" : "^1.2.8" ,
"shelljs" : "^0.9.2"
} ,
"bin" : {
"shx" : "lib/cli.js"
} ,
2025-11-29 12:39:35 +08:00
"engines" : {
2025-12-22 09:18:21 +08:00
"node" : ">=18"
2025-11-29 12:39:35 +08:00
}
} ,
"node_modules/side-channel" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz" ,
"integrity" : "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"es-errors" : "^1.3.0" ,
"object-inspect" : "^1.13.3" ,
"side-channel-list" : "^1.0.0" ,
"side-channel-map" : "^1.0.1" ,
"side-channel-weakmap" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/side-channel-list" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz" ,
"integrity" : "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"es-errors" : "^1.3.0" ,
"object-inspect" : "^1.13.3"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/side-channel-map" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz" ,
"integrity" : "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.2" ,
"es-errors" : "^1.3.0" ,
"get-intrinsic" : "^1.2.5" ,
"object-inspect" : "^1.13.3"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/side-channel-weakmap" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz" ,
"integrity" : "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.2" ,
"es-errors" : "^1.3.0" ,
"get-intrinsic" : "^1.2.5" ,
"object-inspect" : "^1.13.3" ,
"side-channel-map" : "^1.0.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/signal-exit" : {
"version" : "4.1.0" ,
"resolved" : "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz" ,
"integrity" : "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=14"
} ,
"funding" : {
"url" : "https://github.com/sponsors/isaacs"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/simple-update-notifier" : {
"version" : "2.0.0" ,
"resolved" : "https://registry.npmmirror.com/simple-update-notifier/-/simple-update-notifier-2.0.0.tgz" ,
"integrity" : "sha512-a2B9Y0KlNXl9u/vsW6sTIu9vGEpfKu2wRV6l1H3XEas/0gUIzGzBoP/IouTcUQbm9JWZLH3COxyn03TYlFax6w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"semver" : "^7.5.3"
} ,
"engines" : {
"node" : ">=10"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/slice-ansi" : {
"version" : "7.1.2" ,
"resolved" : "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.2.tgz" ,
"integrity" : "sha512-iOBWFgUX7caIZiuutICxVgX1SdxwAVFFKwt1EvMYYec/NWO5meOJ6K5uQxhrYBdQJne4KxiqZc+KptFOWFSI9w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^6.2.1" ,
"is-fullwidth-code-point" : "^5.0.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/chalk/slice-ansi?sponsor=1"
}
} ,
"node_modules/slice-ansi/node_modules/ansi-styles" : {
"version" : "6.2.3" ,
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz" ,
"integrity" : "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/smart-buffer" : {
"version" : "4.2.0" ,
"resolved" : "https://registry.npmmirror.com/smart-buffer/-/smart-buffer-4.2.0.tgz" ,
"integrity" : "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 6.0.0" ,
"npm" : ">= 3.0.0"
}
} ,
"node_modules/socks" : {
"version" : "2.8.7" ,
"resolved" : "https://registry.npmmirror.com/socks/-/socks-2.8.7.tgz" ,
"integrity" : "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ip-address" : "^10.0.1" ,
"smart-buffer" : "^4.2.0"
} ,
"engines" : {
"node" : ">= 10.0.0" ,
"npm" : ">= 3.0.0"
}
} ,
"node_modules/socks-proxy-agent" : {
"version" : "7.0.0" ,
"resolved" : "https://registry.npmmirror.com/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz" ,
"integrity" : "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"agent-base" : "^6.0.2" ,
"debug" : "^4.3.3" ,
"socks" : "^2.6.2"
} ,
"engines" : {
"node" : ">= 10"
}
} ,
"node_modules/socks-proxy-agent/node_modules/agent-base" : {
"version" : "6.0.2" ,
"resolved" : "https://registry.npmmirror.com/agent-base/-/agent-base-6.0.2.tgz" ,
"integrity" : "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"debug" : "4"
} ,
"engines" : {
"node" : ">= 6.0.0"
}
} ,
2025-12-05 19:30:50 +09:00
"node_modules/sonner" : {
"version" : "2.0.7" ,
"resolved" : "https://registry.npmjs.org/sonner/-/sonner-2.0.7.tgz" ,
"integrity" : "sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==" ,
"license" : "MIT" ,
"peerDependencies" : {
"react" : "^18.0.0 || ^19.0.0 || ^19.0.0-rc" ,
"react-dom" : "^18.0.0 || ^19.0.0 || ^19.0.0-rc"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/source-map" : {
"version" : "0.6.1" ,
"resolved" : "https://registry.npmmirror.com/source-map/-/source-map-0.6.1.tgz" ,
"integrity" : "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/source-map-js" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz" ,
"integrity" : "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==" ,
"license" : "BSD-3-Clause" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/source-map-support" : {
"version" : "0.5.21" ,
"resolved" : "https://registry.npmmirror.com/source-map-support/-/source-map-support-0.5.21.tgz" ,
"integrity" : "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"buffer-from" : "^1.0.0" ,
"source-map" : "^0.6.0"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/space-separated-tokens" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz" ,
"integrity" : "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/sprintf-js" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmmirror.com/sprintf-js/-/sprintf-js-1.1.3.tgz" ,
"integrity" : "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==" ,
"dev" : true ,
"license" : "BSD-3-Clause" ,
"optional" : true
} ,
"node_modules/ssri" : {
"version" : "9.0.1" ,
"resolved" : "https://registry.npmmirror.com/ssri/-/ssri-9.0.1.tgz" ,
"integrity" : "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"minipass" : "^3.1.1"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/stable-hash" : {
"version" : "0.0.5" ,
"resolved" : "https://registry.npmjs.org/stable-hash/-/stable-hash-0.0.5.tgz" ,
"integrity" : "sha512-+L3ccpzibovGXFK+Ap/f8LOS0ahMrHTf3xu7mMLSpEGU0EO9ucaysSylKo9eRDFNhWve/y275iPmIZ4z39a9iA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/stat-mode" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/stat-mode/-/stat-mode-1.0.0.tgz" ,
"integrity" : "sha512-jH9EhtKIjuXZ2cWxmXS8ZP80XyC3iasQxMDV8jzhNJpfDb7VbQLVW4Wvsxz9QZvzV+G4YoSfBUVKDOyxLzi/sg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 6"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/stop-iteration-iterator" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz" ,
"integrity" : "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"es-errors" : "^1.3.0" ,
"internal-slot" : "^1.1.0"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/string_decoder" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmmirror.com/string_decoder/-/string_decoder-1.3.0.tgz" ,
"integrity" : "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"safe-buffer" : "~5.2.0"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/string-argv" : {
"version" : "0.3.2" ,
"resolved" : "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz" ,
"integrity" : "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.6.19"
}
} ,
"node_modules/string-width" : {
"version" : "8.1.0" ,
"resolved" : "https://registry.npmjs.org/string-width/-/string-width-8.1.0.tgz" ,
"integrity" : "sha512-Kxl3KJGb/gxkaUMOjRsQ8IrXiGW75O4E3RPjFIINOVH8AMl2SQ/yWdTzWwF3FevIX9LcMAjJW+GRwAlAbTSXdg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"get-east-asian-width" : "^1.3.0" ,
"strip-ansi" : "^7.1.0"
} ,
"engines" : {
"node" : ">=20"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/string-width-cjs" : {
"name" : "string-width" ,
"version" : "4.2.3" ,
"resolved" : "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz" ,
"integrity" : "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"emoji-regex" : "^8.0.0" ,
"is-fullwidth-code-point" : "^3.0.0" ,
"strip-ansi" : "^6.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/string-width-cjs/node_modules/ansi-regex" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" ,
"integrity" : "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/string-width-cjs/node_modules/emoji-regex" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz" ,
"integrity" : "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/string-width-cjs/node_modules/is-fullwidth-code-point" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" ,
"integrity" : "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/string-width-cjs/node_modules/strip-ansi" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/string.prototype.includes" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmjs.org/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz" ,
"integrity" : "sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.7" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.3"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/string.prototype.matchall" : {
"version" : "4.0.12" ,
"resolved" : "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz" ,
"integrity" : "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.3" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.6" ,
"es-errors" : "^1.3.0" ,
"es-object-atoms" : "^1.0.0" ,
"get-intrinsic" : "^1.2.6" ,
"gopd" : "^1.2.0" ,
"has-symbols" : "^1.1.0" ,
"internal-slot" : "^1.1.0" ,
"regexp.prototype.flags" : "^1.5.3" ,
"set-function-name" : "^2.0.2" ,
"side-channel" : "^1.1.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/string.prototype.repeat" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz" ,
"integrity" : "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"define-properties" : "^1.1.3" ,
"es-abstract" : "^1.17.5"
}
} ,
"node_modules/string.prototype.trim" : {
"version" : "1.2.10" ,
"resolved" : "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz" ,
"integrity" : "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.2" ,
"define-data-property" : "^1.1.4" ,
"define-properties" : "^1.2.1" ,
"es-abstract" : "^1.23.5" ,
"es-object-atoms" : "^1.0.0" ,
"has-property-descriptors" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/string.prototype.trimend" : {
"version" : "1.0.9" ,
"resolved" : "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz" ,
"integrity" : "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.2" ,
"define-properties" : "^1.2.1" ,
"es-object-atoms" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/string.prototype.trimstart" : {
"version" : "1.0.8" ,
"resolved" : "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz" ,
"integrity" : "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.7" ,
"define-properties" : "^1.2.1" ,
"es-object-atoms" : "^1.0.0"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/stringify-entities" : {
"version" : "4.0.4" ,
"resolved" : "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz" ,
"integrity" : "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==" ,
"license" : "MIT" ,
"dependencies" : {
"character-entities-html4" : "^2.0.0" ,
"character-entities-legacy" : "^3.0.0"
} ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/strip-ansi" : {
"version" : "7.1.2" ,
"resolved" : "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz" ,
"integrity" : "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^6.0.1"
} ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/strip-ansi?sponsor=1"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/strip-ansi-cjs" : {
"name" : "strip-ansi" ,
"version" : "6.0.1" ,
"resolved" : "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/strip-ansi-cjs/node_modules/ansi-regex" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" ,
"integrity" : "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/strip-bom" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" ,
"integrity" : "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=4"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/strip-eof" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmmirror.com/strip-eof/-/strip-eof-1.0.0.tgz" ,
"integrity" : "sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/strip-json-comments" : {
"version" : "3.1.1" ,
"resolved" : "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" ,
"integrity" : "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-05 09:19:26 +09:00
"node_modules/strnum" : {
"version" : "2.1.1" ,
"resolved" : "https://registry.npmjs.org/strnum/-/strnum-2.1.1.tgz" ,
"integrity" : "sha512-7ZvoFTiCnGxBtDqJ//Cu6fWtZtc7Y3x+QOirG15wztbdngGSkht27o2pyGWrVy0b4WAy3jbKmnoK6g5VlVNUUw==" ,
"funding" : [
{
"type" : "github" ,
"url" : "https://github.com/sponsors/NaturalIntelligence"
}
] ,
"license" : "MIT"
} ,
2025-12-05 22:42:39 +09:00
"node_modules/style-to-js" : {
"version" : "1.1.21" ,
"resolved" : "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz" ,
"integrity" : "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==" ,
"license" : "MIT" ,
"dependencies" : {
"style-to-object" : "1.0.14"
}
} ,
"node_modules/style-to-object" : {
"version" : "1.0.14" ,
"resolved" : "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz" ,
"integrity" : "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==" ,
"license" : "MIT" ,
"dependencies" : {
"inline-style-parser" : "0.2.7"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/styled-jsx" : {
"version" : "5.1.6" ,
"resolved" : "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz" ,
"integrity" : "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==" ,
"license" : "MIT" ,
"dependencies" : {
"client-only" : "0.0.1"
} ,
"engines" : {
"node" : ">= 12.0.0"
} ,
"peerDependencies" : {
"react" : ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
} ,
"peerDependenciesMeta" : {
"@babel/core" : {
"optional" : true
} ,
"babel-plugin-macros" : {
"optional" : true
}
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/sumchecker" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmmirror.com/sumchecker/-/sumchecker-3.0.1.tgz" ,
"integrity" : "sha512-MvjXzkz/BOfyVDkG0oFOtBxHX2u3gKbMHIF/dXblZsgD3BWOFLmHovIpZY7BykJdAjcqRCBi1WYBNdEC9yI7vg==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"dependencies" : {
"debug" : "^4.1.0"
} ,
"engines" : {
"node" : ">= 8.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/supports-color" : {
"version" : "7.2.0" ,
"resolved" : "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" ,
"integrity" : "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"has-flag" : "^4.0.0"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/supports-preserve-symlinks-flag" : {
"version" : "1.0.0" ,
"resolved" : "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz" ,
"integrity" : "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/swr" : {
"version" : "2.3.3" ,
"resolved" : "https://registry.npmjs.org/swr/-/swr-2.3.3.tgz" ,
"integrity" : "sha512-dshNvs3ExOqtZ6kJBaAsabhPdHyeY4P2cKwRCniDVifBMoG/SVI7tfLWqPXriVspf2Rg4tPzXJTnwaihIeFw2A==" ,
"license" : "MIT" ,
"dependencies" : {
2025-12-22 09:18:21 +08:00
"dequal" : "^2.0.3" ,
"use-sync-external-store" : "^1.4.0"
} ,
"peerDependencies" : {
"react" : "^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
} ,
"node_modules/symbol-tree" : {
"version" : "3.2.4" ,
"resolved" : "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" ,
"integrity" : "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" ,
"license" : "MIT"
} ,
"node_modules/tailwind-merge" : {
"version" : "3.4.0" ,
"resolved" : "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-3.4.0.tgz" ,
"integrity" : "sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/dcastil"
}
} ,
"node_modules/tailwindcss" : {
"version" : "4.1.2" ,
"resolved" : "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.2.tgz" ,
"integrity" : "sha512-VCsK+fitIbQF7JlxXaibFhxrPq4E2hDcG8apzHUdWFMCQWD8uLdlHg4iSkZ53cgLCCcZ+FZK7vG8VjvLcnBgKw==" ,
"license" : "MIT"
} ,
"node_modules/tailwindcss-animate" : {
"version" : "1.0.7" ,
"resolved" : "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz" ,
"integrity" : "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"tailwindcss" : ">=3.0.0 || insiders"
}
} ,
"node_modules/tapable" : {
"version" : "2.2.1" ,
"resolved" : "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz" ,
"integrity" : "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=6"
}
} ,
"node_modules/tar" : {
"version" : "6.2.1" ,
"resolved" : "https://registry.npmmirror.com/tar/-/tar-6.2.1.tgz" ,
"integrity" : "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"chownr" : "^2.0.0" ,
"fs-minipass" : "^2.0.0" ,
"minipass" : "^5.0.0" ,
"minizlib" : "^2.1.1" ,
"mkdirp" : "^1.0.3" ,
"yallist" : "^4.0.0"
} ,
"engines" : {
"node" : ">=10"
}
} ,
"node_modules/tar/node_modules/minipass" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmmirror.com/minipass/-/minipass-5.0.0.tgz" ,
"integrity" : "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/tar/node_modules/yallist" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmmirror.com/yallist/-/yallist-4.0.0.tgz" ,
"integrity" : "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" ,
"dev" : true ,
"license" : "ISC"
} ,
"node_modules/temp" : {
"version" : "0.9.4" ,
"resolved" : "https://registry.npmmirror.com/temp/-/temp-0.9.4.tgz" ,
"integrity" : "sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==" ,
"dev" : true ,
"license" : "MIT" ,
"peer" : true ,
"dependencies" : {
"mkdirp" : "^0.5.1" ,
"rimraf" : "~2.6.2"
} ,
"engines" : {
"node" : ">=6.0.0"
}
} ,
"node_modules/temp-file" : {
"version" : "3.4.0" ,
"resolved" : "https://registry.npmmirror.com/temp-file/-/temp-file-3.4.0.tgz" ,
"integrity" : "sha512-C5tjlC/HCtVUOi3KWVokd4vHVViOmGjtLwIh4MuzPo/nMYTV/p1urt3RnMz2IWXDdKEGJH3k5+KPxtqRsUYGtg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"async-exit-hook" : "^2.0.1" ,
"fs-extra" : "^10.0.0"
}
} ,
"node_modules/temp-file/node_modules/fs-extra" : {
"version" : "10.1.0" ,
"resolved" : "https://registry.npmmirror.com/fs-extra/-/fs-extra-10.1.0.tgz" ,
"integrity" : "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"graceful-fs" : "^4.2.0" ,
"jsonfile" : "^6.0.1" ,
"universalify" : "^2.0.0"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/temp-file/node_modules/jsonfile" : {
"version" : "6.2.0" ,
"resolved" : "https://registry.npmmirror.com/jsonfile/-/jsonfile-6.2.0.tgz" ,
"integrity" : "sha512-FGuPw30AdOIUTRMC2OMRtQV+jkVj2cfPqSeWXv1NEAJ1qZ5zb1X6z1mFhbfOB/iy3ssJCD+3KuZ8r8C3uVFlAg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"universalify" : "^2.0.0"
2025-08-19 01:17:17 +00:00
} ,
2025-12-22 09:18:21 +08:00
"optionalDependencies" : {
"graceful-fs" : "^4.1.6"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/temp-file/node_modules/universalify" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-2.0.1.tgz" ,
"integrity" : "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-12-22 09:18:21 +08:00
"engines" : {
"node" : ">= 10.0.0"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/temp/node_modules/mkdirp" : {
"version" : "0.5.6" ,
"resolved" : "https://registry.npmmirror.com/mkdirp/-/mkdirp-0.5.6.tgz" ,
"integrity" : "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
2025-12-22 09:18:21 +08:00
"peer" : true ,
"dependencies" : {
"minimist" : "^1.2.6"
} ,
"bin" : {
"mkdirp" : "bin/cmd.js"
2025-08-19 01:17:17 +00:00
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/temp/node_modules/rimraf" : {
"version" : "2.6.3" ,
"resolved" : "https://registry.npmmirror.com/rimraf/-/rimraf-2.6.3.tgz" ,
"integrity" : "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==" ,
"deprecated" : "Rimraf versions prior to v4 are no longer supported" ,
2025-11-29 12:39:35 +08:00
"dev" : true ,
2025-12-22 09:18:21 +08:00
"license" : "ISC" ,
"peer" : true ,
"dependencies" : {
"glob" : "^7.1.3"
} ,
"bin" : {
"rimraf" : "bin.js"
2025-11-29 12:39:35 +08:00
}
} ,
2025-12-03 20:35:31 +09:00
"node_modules/third-party-capital" : {
"version" : "1.0.20" ,
"resolved" : "https://registry.npmjs.org/third-party-capital/-/third-party-capital-1.0.20.tgz" ,
"integrity" : "sha512-oB7yIimd8SuGptespDAZnNkzIz+NWaJCu2RMsbs4Wmp9zSDUM8Nhi3s2OOcqYuv3mN4hitXc8DVx+LyUmbUDiA==" ,
"license" : "ISC"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/throttleit" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/throttleit/-/throttleit-2.1.0.tgz" ,
"integrity" : "sha512-nt6AMGKW1p/70DF/hGBdJB57B8Tspmbp5gfJ8ilhLnt7kkr2ye7hzD6NVG8GGErk2HWF34igrL2CXmNIkzKqKw==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-07 20:33:43 +09:00
"node_modules/tiktoken" : {
"version" : "1.0.22" ,
"resolved" : "https://registry.npmjs.org/tiktoken/-/tiktoken-1.0.22.tgz" ,
"integrity" : "sha512-PKvy1rVF1RibfF3JlXBSP0Jrcw2uq3yXdgcEXtKTYn3QJ/cBRBHDnrJ5jHky+MENZ6DIPwNUGWpkVx+7joCpNA==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/tiny-async-pool" : {
"version" : "1.3.0" ,
"resolved" : "https://registry.npmmirror.com/tiny-async-pool/-/tiny-async-pool-1.3.0.tgz" ,
"integrity" : "sha512-01EAw5EDrcVrdgyCLgoSPvqznC0sVxDSVeiOz09FUpjh71G79VCqneOr+xvt7T1r76CF6ZZfPjHorN2+d+3mqA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"semver" : "^5.5.0"
}
} ,
"node_modules/tiny-async-pool/node_modules/semver" : {
"version" : "5.7.2" ,
"resolved" : "https://registry.npmmirror.com/semver/-/semver-5.7.2.tgz" ,
"integrity" : "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"semver" : "bin/semver"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/tinyglobby" : {
"version" : "0.2.15" ,
"resolved" : "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz" ,
"integrity" : "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"fdir" : "^6.5.0" ,
"picomatch" : "^4.0.3"
} ,
"engines" : {
"node" : ">=12.0.0"
} ,
"funding" : {
"url" : "https://github.com/sponsors/SuperchupuDev"
}
} ,
"node_modules/tinyglobby/node_modules/fdir" : {
"version" : "6.5.0" ,
"resolved" : "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz" ,
"integrity" : "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==" ,
2025-08-19 01:17:17 +00:00
"dev" : true ,
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=12.0.0"
} ,
"peerDependencies" : {
"picomatch" : "^3 || ^4"
} ,
"peerDependenciesMeta" : {
"picomatch" : {
"optional" : true
}
2025-08-19 01:17:17 +00:00
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/tinyglobby/node_modules/picomatch" : {
"version" : "4.0.3" ,
"resolved" : "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz" ,
"integrity" : "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==" ,
"dev" : true ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"engines" : {
2025-11-29 12:39:35 +08:00
"node" : ">=12"
2025-08-19 01:17:17 +00:00
} ,
"funding" : {
2025-11-29 12:39:35 +08:00
"url" : "https://github.com/sponsors/jonschlinkert"
2025-08-19 01:17:17 +00:00
}
} ,
"node_modules/tldts" : {
"version" : "6.1.85" ,
"resolved" : "https://registry.npmjs.org/tldts/-/tldts-6.1.85.tgz" ,
"integrity" : "sha512-gBdZ1RjCSevRPFix/hpaUWeak2/RNUZB4/8frF1r5uYMHjFptkiT0JXIebWvgI/0ZHXvxaUDDJshiA0j6GdL3w==" ,
"license" : "MIT" ,
"dependencies" : {
"tldts-core" : "^6.1.85"
} ,
"bin" : {
"tldts" : "bin/cli.js"
}
} ,
"node_modules/tldts-core" : {
"version" : "6.1.85" ,
"resolved" : "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.85.tgz" ,
"integrity" : "sha512-DTjUVvxckL1fIoPSb3KE7ISNtkWSawZdpfxGxwiIrZoO6EbHVDXXUIlIuWympPaeS+BLGyggozX/HTMsRAdsoA==" ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/tmp" : {
"version" : "0.2.5" ,
"resolved" : "https://registry.npmmirror.com/tmp/-/tmp-0.2.5.tgz" ,
"integrity" : "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=14.14"
}
} ,
"node_modules/tmp-promise" : {
"version" : "3.0.3" ,
"resolved" : "https://registry.npmmirror.com/tmp-promise/-/tmp-promise-3.0.3.tgz" ,
"integrity" : "sha512-RwM7MoPojPxsOBYnyd2hy0bxtIlVrihNs9pj5SUvY8Zz1sQcQG2tG1hSr8PDxfgEB8RNKDhqbIlroIarSNDNsQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"tmp" : "^0.2.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/to-regex-range" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" ,
"integrity" : "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-number" : "^7.0.0"
} ,
"engines" : {
"node" : ">=8.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/tough-cookie" : {
"version" : "5.1.2" ,
"resolved" : "https://registry.npmjs.org/tough-cookie/-/tough-cookie-5.1.2.tgz" ,
"integrity" : "sha512-FVDYdxtnj0G6Qm/DhNPSb8Ju59ULcup3tuJxkFb5K8Bv2pUXILbf0xZWU8PX8Ov19OXljbUyveOFwRMwkXzO+A==" ,
"license" : "BSD-3-Clause" ,
"dependencies" : {
"tldts" : "^6.1.32"
} ,
"engines" : {
"node" : ">=16"
}
} ,
"node_modules/tr46" : {
"version" : "5.1.0" ,
"resolved" : "https://registry.npmjs.org/tr46/-/tr46-5.1.0.tgz" ,
"integrity" : "sha512-IUWnUK7ADYR5Sl1fZlO1INDUhVhatWl7BtJWsIhwJ0UAK7ilzzIa8uIqOO/aYVWHZPJkKbEL+362wrzoeRF7bw==" ,
"license" : "MIT" ,
"dependencies" : {
"punycode" : "^2.3.1"
} ,
"engines" : {
"node" : ">=18"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/tree-kill" : {
"version" : "1.2.2" ,
"resolved" : "https://registry.npmmirror.com/tree-kill/-/tree-kill-1.2.2.tgz" ,
"integrity" : "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==" ,
"dev" : true ,
"license" : "MIT" ,
"bin" : {
"tree-kill" : "cli.js"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/trim-lines" : {
"version" : "3.0.1" ,
"resolved" : "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz" ,
"integrity" : "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/trough" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz" ,
"integrity" : "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/truncate-utf8-bytes" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmmirror.com/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz" ,
"integrity" : "sha512-95Pu1QXQvruGEhv62XCMO3Mm90GscOCClvrIUwCM0PYOXK3kaF3l3sIHxx71ThJfcbM2O5Au6SO3AWCSEfW4mQ==" ,
"dev" : true ,
"license" : "WTFPL" ,
"dependencies" : {
"utf8-byte-length" : "^1.0.1"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/ts-api-utils" : {
"version" : "2.1.0" ,
"resolved" : "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz" ,
"integrity" : "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18.12"
} ,
"peerDependencies" : {
"typescript" : ">=4.8.4"
}
} ,
"node_modules/tsconfig-paths" : {
"version" : "3.15.0" ,
"resolved" : "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz" ,
"integrity" : "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@types/json5" : "^0.0.29" ,
"json5" : "^1.0.2" ,
"minimist" : "^1.2.6" ,
"strip-bom" : "^3.0.0"
}
} ,
"node_modules/tsconfig-paths/node_modules/json5" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz" ,
"integrity" : "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"minimist" : "^1.2.0"
} ,
"bin" : {
"json5" : "lib/cli.js"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/tslib" : {
"version" : "2.8.1" ,
"resolved" : "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz" ,
"integrity" : "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==" ,
"license" : "0BSD"
} ,
2025-11-29 12:39:35 +08:00
"node_modules/type-check" : {
"version" : "0.4.0" ,
"resolved" : "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" ,
"integrity" : "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"prelude-ls" : "^1.2.1"
} ,
"engines" : {
"node" : ">= 0.8.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/type-fest" : {
"version" : "0.13.1" ,
"resolved" : "https://registry.npmmirror.com/type-fest/-/type-fest-0.13.1.tgz" ,
"integrity" : "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==" ,
"dev" : true ,
"license" : "(MIT OR CC0-1.0)" ,
"optional" : true ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/typed-array-buffer" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz" ,
"integrity" : "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.3" ,
"es-errors" : "^1.3.0" ,
"is-typed-array" : "^1.1.14"
} ,
"engines" : {
"node" : ">= 0.4"
}
} ,
"node_modules/typed-array-byte-length" : {
"version" : "1.0.3" ,
"resolved" : "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz" ,
"integrity" : "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.8" ,
"for-each" : "^0.3.3" ,
"gopd" : "^1.2.0" ,
"has-proto" : "^1.2.0" ,
"is-typed-array" : "^1.1.14"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/typed-array-byte-offset" : {
"version" : "1.0.4" ,
"resolved" : "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz" ,
"integrity" : "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"available-typed-arrays" : "^1.0.7" ,
"call-bind" : "^1.0.8" ,
"for-each" : "^0.3.3" ,
"gopd" : "^1.2.0" ,
"has-proto" : "^1.2.0" ,
"is-typed-array" : "^1.1.15" ,
"reflect.getprototypeof" : "^1.0.9"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/typed-array-length" : {
"version" : "1.0.7" ,
"resolved" : "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz" ,
"integrity" : "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bind" : "^1.0.7" ,
"for-each" : "^0.3.3" ,
"gopd" : "^1.0.1" ,
"is-typed-array" : "^1.1.13" ,
"possible-typed-array-names" : "^1.0.0" ,
"reflect.getprototypeof" : "^1.0.6"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/typescript" : {
"version" : "5.8.2" ,
"resolved" : "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz" ,
"integrity" : "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==" ,
"dev" : true ,
"license" : "Apache-2.0" ,
"bin" : {
"tsc" : "bin/tsc" ,
"tsserver" : "bin/tsserver"
} ,
"engines" : {
"node" : ">=14.17"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/typescript-eslint" : {
"version" : "8.48.0" ,
"resolved" : "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.48.0.tgz" ,
"integrity" : "sha512-fcKOvQD9GUn3Xw63EgiDqhvWJ5jsyZUaekl3KVpGsDJnN46WJTe3jWxtQP9lMZm1LJNkFLlTaWAxK2vUQR+cqw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"@typescript-eslint/eslint-plugin" : "8.48.0" ,
"@typescript-eslint/parser" : "8.48.0" ,
"@typescript-eslint/typescript-estree" : "8.48.0" ,
"@typescript-eslint/utils" : "8.48.0"
} ,
"engines" : {
"node" : "^18.18.0 || ^20.9.0 || >=21.1.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/typescript-eslint"
} ,
"peerDependencies" : {
"eslint" : "^8.57.0 || ^9.0.0" ,
"typescript" : ">=4.8.4 <6.0.0"
}
} ,
"node_modules/unbox-primitive" : {
"version" : "1.1.0" ,
"resolved" : "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz" ,
"integrity" : "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.3" ,
"has-bigints" : "^1.0.2" ,
"has-symbols" : "^1.1.0" ,
"which-boxed-primitive" : "^1.1.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/undici-types" : {
"version" : "6.19.8" ,
"resolved" : "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz" ,
"integrity" : "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==" ,
"license" : "MIT"
} ,
"node_modules/unified" : {
"version" : "11.0.5" ,
"resolved" : "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz" ,
"integrity" : "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"bail" : "^2.0.0" ,
"devlop" : "^1.0.0" ,
"extend" : "^3.0.0" ,
"is-plain-obj" : "^4.0.0" ,
"trough" : "^2.0.0" ,
"vfile" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/unique-filename" : {
"version" : "2.0.1" ,
"resolved" : "https://registry.npmmirror.com/unique-filename/-/unique-filename-2.0.1.tgz" ,
"integrity" : "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"unique-slug" : "^3.0.0"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
"node_modules/unique-slug" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/unique-slug/-/unique-slug-3.0.0.tgz" ,
"integrity" : "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"imurmurhash" : "^0.1.4"
} ,
"engines" : {
"node" : "^12.13.0 || ^14.15.0 || >=16.0.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/unist-util-is" : {
"version" : "6.0.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.0.tgz" ,
"integrity" : "sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-05 22:42:39 +09:00
"node_modules/unist-util-position" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz" ,
"integrity" : "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/unist-util-stringify-position" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz" ,
"integrity" : "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/unist-util-visit" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz" ,
"integrity" : "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"unist-util-is" : "^6.0.0" ,
"unist-util-visit-parents" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/unist-util-visit-parents" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.1.tgz" ,
"integrity" : "sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"unist-util-is" : "^6.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/universalify" : {
"version" : "0.1.2" ,
"resolved" : "https://registry.npmmirror.com/universalify/-/universalify-0.1.2.tgz" ,
"integrity" : "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">= 4.0.0"
}
} ,
2025-12-10 21:32:35 +09:00
"node_modules/unpdf" : {
"version" : "1.4.0" ,
"resolved" : "https://registry.npmjs.org/unpdf/-/unpdf-1.4.0.tgz" ,
"integrity" : "sha512-TahIk0xdH/4jh/MxfclzU79g40OyxtP00VnEUZdEkJoYtXAHWLiir6t3FC6z3vDqQTzc2ZHcla6uEiVTNjejuA==" ,
"license" : "MIT" ,
"peerDependencies" : {
"@napi-rs/canvas" : "^0.1.69"
} ,
"peerDependenciesMeta" : {
"@napi-rs/canvas" : {
"optional" : true
}
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/unrs-resolver" : {
"version" : "1.11.1" ,
"resolved" : "https://registry.npmjs.org/unrs-resolver/-/unrs-resolver-1.11.1.tgz" ,
"integrity" : "sha512-bSjt9pjaEBnNiGgc9rUiHGKv5l4/TGzDmYw3RhnkJGtLhbnnA/5qJj7x3dNDCRx/PJxu774LlH8lCOlB4hEfKg==" ,
"dev" : true ,
"hasInstallScript" : true ,
"license" : "MIT" ,
"dependencies" : {
"napi-postinstall" : "^0.3.0"
} ,
"funding" : {
"url" : "https://opencollective.com/unrs-resolver"
} ,
"optionalDependencies" : {
"@unrs/resolver-binding-android-arm-eabi" : "1.11.1" ,
"@unrs/resolver-binding-android-arm64" : "1.11.1" ,
"@unrs/resolver-binding-darwin-arm64" : "1.11.1" ,
"@unrs/resolver-binding-darwin-x64" : "1.11.1" ,
"@unrs/resolver-binding-freebsd-x64" : "1.11.1" ,
"@unrs/resolver-binding-linux-arm-gnueabihf" : "1.11.1" ,
"@unrs/resolver-binding-linux-arm-musleabihf" : "1.11.1" ,
"@unrs/resolver-binding-linux-arm64-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-arm64-musl" : "1.11.1" ,
"@unrs/resolver-binding-linux-ppc64-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-riscv64-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-riscv64-musl" : "1.11.1" ,
"@unrs/resolver-binding-linux-s390x-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-x64-gnu" : "1.11.1" ,
"@unrs/resolver-binding-linux-x64-musl" : "1.11.1" ,
"@unrs/resolver-binding-wasm32-wasi" : "1.11.1" ,
"@unrs/resolver-binding-win32-arm64-msvc" : "1.11.1" ,
"@unrs/resolver-binding-win32-ia32-msvc" : "1.11.1" ,
"@unrs/resolver-binding-win32-x64-msvc" : "1.11.1"
}
} ,
"node_modules/update-browserslist-db" : {
"version" : "1.1.4" ,
"resolved" : "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.4.tgz" ,
"integrity" : "sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==" ,
"dev" : true ,
"funding" : [
{
"type" : "opencollective" ,
"url" : "https://opencollective.com/browserslist"
} ,
{
"type" : "tidelift" ,
"url" : "https://tidelift.com/funding/github/npm/browserslist"
} ,
{
"type" : "github" ,
"url" : "https://github.com/sponsors/ai"
}
] ,
"license" : "MIT" ,
"dependencies" : {
"escalade" : "^3.2.0" ,
"picocolors" : "^1.1.1"
} ,
"bin" : {
"update-browserslist-db" : "cli.js"
} ,
"peerDependencies" : {
"browserslist" : ">= 4.21.0"
}
} ,
"node_modules/uri-js" : {
"version" : "4.4.1" ,
"resolved" : "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" ,
"integrity" : "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" ,
"dev" : true ,
"license" : "BSD-2-Clause" ,
"dependencies" : {
"punycode" : "^2.1.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/use-callback-ref" : {
"version" : "1.3.3" ,
"resolved" : "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.3.tgz" ,
"integrity" : "sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==" ,
"license" : "MIT" ,
"dependencies" : {
"tslib" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/use-sidecar" : {
"version" : "1.1.3" ,
"resolved" : "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.3.tgz" ,
"integrity" : "sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==" ,
"license" : "MIT" ,
"dependencies" : {
"detect-node-es" : "^1.1.0" ,
"tslib" : "^2.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"peerDependencies" : {
"@types/react" : "*" ,
"react" : "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc"
} ,
"peerDependenciesMeta" : {
"@types/react" : {
"optional" : true
}
}
} ,
"node_modules/use-sync-external-store" : {
"version" : "1.5.0" ,
"resolved" : "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz" ,
"integrity" : "sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==" ,
"license" : "MIT" ,
"peerDependencies" : {
"react" : "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/utf8-byte-length" : {
"version" : "1.0.5" ,
"resolved" : "https://registry.npmmirror.com/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz" ,
"integrity" : "sha512-Xn0w3MtiQ6zoz2vFyUVruaCL53O/DwUvkEeOvj+uulMm0BkUGYWmBYVyElqZaSLhY6ZD0ulfU3aBra2aVT4xfA==" ,
"dev" : true ,
"license" : "(WTFPL OR MIT)"
} ,
2025-12-05 22:42:39 +09:00
"node_modules/util-deprecate" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" ,
"integrity" : "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" ,
"dev" : true ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/verror" : {
"version" : "1.10.1" ,
"resolved" : "https://registry.npmmirror.com/verror/-/verror-1.10.1.tgz" ,
"integrity" : "sha512-veufcmxri4e3XSrT0xwfUR7kguIkaxBeosDg00yDWhk49wdwkSUrvvsm7nc75e1PUyvIeZj6nS8VQRYz2/S4Xg==" ,
"dev" : true ,
"license" : "MIT" ,
"optional" : true ,
"dependencies" : {
"assert-plus" : "^1.0.0" ,
"core-util-is" : "1.0.2" ,
"extsprintf" : "^1.2.0"
} ,
"engines" : {
"node" : ">=0.6.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/vfile" : {
"version" : "6.0.3" ,
"resolved" : "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz" ,
"integrity" : "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"vfile-message" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/vfile-message" : {
"version" : "4.0.2" ,
"resolved" : "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.2.tgz" ,
"integrity" : "sha512-jRDZ1IMLttGj41KcZvlrYAaI3CfqpLpfpf+Mfig13viT6NKvRzWZ+lXz0Y5D60w6uJIBAOGq9mSHf0gktF0duw==" ,
"license" : "MIT" ,
"dependencies" : {
"@types/unist" : "^3.0.0" ,
"unist-util-stringify-position" : "^4.0.0"
} ,
"funding" : {
"type" : "opencollective" ,
"url" : "https://opencollective.com/unified"
}
} ,
"node_modules/w3c-xmlserializer" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz" ,
"integrity" : "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==" ,
"license" : "MIT" ,
"dependencies" : {
"xml-name-validator" : "^5.0.0"
} ,
"engines" : {
"node" : ">=18"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/wait-on" : {
"version" : "9.0.3" ,
"resolved" : "https://registry.npmmirror.com/wait-on/-/wait-on-9.0.3.tgz" ,
"integrity" : "sha512-13zBnyYvFDW1rBvWiJ6Av3ymAaq8EDQuvxZnPIw3g04UqGi4TyoIJABmfJ6zrvKo9yeFQExNkOk7idQbDJcuKA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"axios" : "^1.13.2" ,
"joi" : "^18.0.1" ,
"lodash" : "^4.17.21" ,
"minimist" : "^1.2.8" ,
"rxjs" : "^7.8.2"
} ,
"bin" : {
"wait-on" : "bin/wait-on"
} ,
"engines" : {
"node" : ">=20.0.0"
}
} ,
"node_modules/wcwidth" : {
"version" : "1.0.1" ,
"resolved" : "https://registry.npmmirror.com/wcwidth/-/wcwidth-1.0.1.tgz" ,
"integrity" : "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"defaults" : "^1.0.3"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/webidl-conversions" : {
"version" : "7.0.0" ,
"resolved" : "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz" ,
"integrity" : "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==" ,
"license" : "BSD-2-Clause" ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/whatwg-encoding" : {
"version" : "3.1.1" ,
"resolved" : "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz" ,
"integrity" : "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==" ,
"license" : "MIT" ,
"dependencies" : {
"iconv-lite" : "0.6.3"
} ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/whatwg-mimetype" : {
"version" : "4.0.0" ,
"resolved" : "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz" ,
"integrity" : "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18"
}
} ,
"node_modules/whatwg-url" : {
"version" : "14.2.0" ,
"resolved" : "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.2.0.tgz" ,
"integrity" : "sha512-De72GdQZzNTUBBChsXueQUnPKDkg/5A5zp7pFDuQAj5UFoENpiACU0wlCvzpAGnTkj++ihpKwKyYewn/XNUbKw==" ,
"license" : "MIT" ,
"dependencies" : {
"tr46" : "^5.1.0" ,
"webidl-conversions" : "^7.0.0"
} ,
"engines" : {
"node" : ">=18"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/which" : {
"version" : "2.0.2" ,
"resolved" : "https://registry.npmjs.org/which/-/which-2.0.2.tgz" ,
"integrity" : "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" ,
"dev" : true ,
"license" : "ISC" ,
"dependencies" : {
"isexe" : "^2.0.0"
} ,
"bin" : {
"node-which" : "bin/node-which"
} ,
"engines" : {
"node" : ">= 8"
}
} ,
"node_modules/which-boxed-primitive" : {
"version" : "1.1.1" ,
"resolved" : "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz" ,
"integrity" : "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-bigint" : "^1.1.0" ,
"is-boolean-object" : "^1.2.1" ,
"is-number-object" : "^1.1.1" ,
"is-string" : "^1.1.1" ,
"is-symbol" : "^1.1.1"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/which-builtin-type" : {
"version" : "1.2.1" ,
"resolved" : "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz" ,
"integrity" : "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"call-bound" : "^1.0.2" ,
"function.prototype.name" : "^1.1.6" ,
"has-tostringtag" : "^1.0.2" ,
"is-async-function" : "^2.0.0" ,
"is-date-object" : "^1.1.0" ,
"is-finalizationregistry" : "^1.1.0" ,
"is-generator-function" : "^1.0.10" ,
"is-regex" : "^1.2.1" ,
"is-weakref" : "^1.0.2" ,
"isarray" : "^2.0.5" ,
"which-boxed-primitive" : "^1.1.0" ,
"which-collection" : "^1.0.2" ,
"which-typed-array" : "^1.1.16"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/which-collection" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz" ,
"integrity" : "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"is-map" : "^2.0.3" ,
"is-set" : "^2.0.3" ,
"is-weakmap" : "^2.0.2" ,
"is-weakset" : "^2.0.3"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/which-typed-array" : {
"version" : "1.1.19" ,
"resolved" : "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.19.tgz" ,
"integrity" : "sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"available-typed-arrays" : "^1.0.7" ,
"call-bind" : "^1.0.8" ,
"call-bound" : "^1.0.4" ,
"for-each" : "^0.3.5" ,
"get-proto" : "^1.0.1" ,
"gopd" : "^1.2.0" ,
"has-tostringtag" : "^1.0.2"
} ,
"engines" : {
"node" : ">= 0.4"
} ,
"funding" : {
"url" : "https://github.com/sponsors/ljharb"
}
} ,
"node_modules/word-wrap" : {
"version" : "1.2.5" ,
"resolved" : "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz" ,
"integrity" : "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=0.10.0"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/wrap-ansi" : {
"version" : "9.0.2" ,
"resolved" : "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.2.tgz" ,
"integrity" : "sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^6.2.1" ,
"string-width" : "^7.0.0" ,
"strip-ansi" : "^7.1.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/wrap-ansi-cjs" : {
"name" : "wrap-ansi" ,
"version" : "7.0.0" ,
"resolved" : "https://registry.npmmirror.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz" ,
"integrity" : "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-styles" : "^4.0.0" ,
"string-width" : "^4.1.0" ,
"strip-ansi" : "^6.0.0"
} ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/chalk/wrap-ansi?sponsor=1"
}
} ,
"node_modules/wrap-ansi-cjs/node_modules/ansi-regex" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" ,
"integrity" : "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/wrap-ansi-cjs/node_modules/emoji-regex" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz" ,
"integrity" : "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/wrap-ansi-cjs/node_modules/is-fullwidth-code-point" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" ,
"integrity" : "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/wrap-ansi-cjs/node_modules/string-width" : {
"version" : "4.2.3" ,
"resolved" : "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz" ,
"integrity" : "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"emoji-regex" : "^8.0.0" ,
"is-fullwidth-code-point" : "^3.0.0" ,
"strip-ansi" : "^6.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/wrap-ansi-cjs/node_modules/strip-ansi" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
2025-12-06 12:46:40 +09:00
"node_modules/wrap-ansi/node_modules/ansi-styles" : {
"version" : "6.2.3" ,
"resolved" : "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.3.tgz" ,
"integrity" : "sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=12"
} ,
"funding" : {
"url" : "https://github.com/chalk/ansi-styles?sponsor=1"
}
} ,
"node_modules/wrap-ansi/node_modules/emoji-regex" : {
"version" : "10.6.0" ,
"resolved" : "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.6.0.tgz" ,
"integrity" : "sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/wrap-ansi/node_modules/string-width" : {
"version" : "7.2.0" ,
"resolved" : "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz" ,
"integrity" : "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"emoji-regex" : "^10.3.0" ,
"get-east-asian-width" : "^1.0.0" ,
"strip-ansi" : "^7.1.0"
} ,
"engines" : {
"node" : ">=18"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/wrappy" : {
"version" : "1.0.2" ,
"resolved" : "https://registry.npmmirror.com/wrappy/-/wrappy-1.0.2.tgz" ,
"integrity" : "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" ,
"dev" : true ,
"license" : "ISC"
} ,
2025-08-19 01:17:17 +00:00
"node_modules/ws" : {
"version" : "8.18.1" ,
"resolved" : "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz" ,
"integrity" : "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==" ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10.0.0"
} ,
"peerDependencies" : {
"bufferutil" : "^4.0.1" ,
"utf-8-validate" : ">=5.0.2"
} ,
"peerDependenciesMeta" : {
"bufferutil" : {
"optional" : true
} ,
"utf-8-validate" : {
"optional" : true
}
}
} ,
"node_modules/xml-name-validator" : {
"version" : "5.0.0" ,
"resolved" : "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz" ,
"integrity" : "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==" ,
"license" : "Apache-2.0" ,
"engines" : {
"node" : ">=18"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/xmlbuilder" : {
"version" : "15.1.1" ,
"resolved" : "https://registry.npmmirror.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz" ,
"integrity" : "sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/xmlchars" : {
"version" : "2.2.0" ,
"resolved" : "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" ,
"integrity" : "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" ,
"license" : "MIT"
} ,
2025-12-22 09:18:21 +08:00
"node_modules/y18n" : {
"version" : "5.0.8" ,
"resolved" : "https://registry.npmmirror.com/y18n/-/y18n-5.0.8.tgz" ,
"integrity" : "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=10"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/yallist" : {
"version" : "3.1.1" ,
"resolved" : "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" ,
"integrity" : "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" ,
"dev" : true ,
"license" : "ISC"
} ,
2025-12-06 12:46:40 +09:00
"node_modules/yaml" : {
"version" : "2.8.2" ,
"resolved" : "https://registry.npmjs.org/yaml/-/yaml-2.8.2.tgz" ,
"integrity" : "sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==" ,
"dev" : true ,
"license" : "ISC" ,
"bin" : {
"yaml" : "bin.mjs"
} ,
"engines" : {
"node" : ">= 14.6"
} ,
"funding" : {
"url" : "https://github.com/sponsors/eemeli"
}
} ,
2025-12-22 09:18:21 +08:00
"node_modules/yargs" : {
"version" : "17.7.2" ,
"resolved" : "https://registry.npmmirror.com/yargs/-/yargs-17.7.2.tgz" ,
"integrity" : "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"cliui" : "^8.0.1" ,
"escalade" : "^3.1.1" ,
"get-caller-file" : "^2.0.5" ,
"require-directory" : "^2.1.1" ,
"string-width" : "^4.2.3" ,
"y18n" : "^5.0.5" ,
"yargs-parser" : "^21.1.1"
} ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/yargs-parser" : {
"version" : "21.1.1" ,
"resolved" : "https://registry.npmmirror.com/yargs-parser/-/yargs-parser-21.1.1.tgz" ,
"integrity" : "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==" ,
"dev" : true ,
"license" : "ISC" ,
"engines" : {
"node" : ">=12"
}
} ,
"node_modules/yargs/node_modules/ansi-regex" : {
"version" : "5.0.1" ,
"resolved" : "https://registry.npmmirror.com/ansi-regex/-/ansi-regex-5.0.1.tgz" ,
"integrity" : "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/yargs/node_modules/emoji-regex" : {
"version" : "8.0.0" ,
"resolved" : "https://registry.npmmirror.com/emoji-regex/-/emoji-regex-8.0.0.tgz" ,
"integrity" : "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" ,
"dev" : true ,
"license" : "MIT"
} ,
"node_modules/yargs/node_modules/is-fullwidth-code-point" : {
"version" : "3.0.0" ,
"resolved" : "https://registry.npmmirror.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" ,
"integrity" : "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/yargs/node_modules/string-width" : {
"version" : "4.2.3" ,
"resolved" : "https://registry.npmmirror.com/string-width/-/string-width-4.2.3.tgz" ,
"integrity" : "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"emoji-regex" : "^8.0.0" ,
"is-fullwidth-code-point" : "^3.0.0" ,
"strip-ansi" : "^6.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/yargs/node_modules/strip-ansi" : {
"version" : "6.0.1" ,
"resolved" : "https://registry.npmmirror.com/strip-ansi/-/strip-ansi-6.0.1.tgz" ,
"integrity" : "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"ansi-regex" : "^5.0.1"
} ,
"engines" : {
"node" : ">=8"
}
} ,
"node_modules/yauzl" : {
"version" : "2.10.0" ,
"resolved" : "https://registry.npmmirror.com/yauzl/-/yauzl-2.10.0.tgz" ,
"integrity" : "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==" ,
"dev" : true ,
"license" : "MIT" ,
"dependencies" : {
"buffer-crc32" : "~0.2.3" ,
"fd-slicer" : "~1.1.0"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/yocto-queue" : {
"version" : "0.1.0" ,
"resolved" : "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" ,
"integrity" : "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=10"
} ,
"funding" : {
"url" : "https://github.com/sponsors/sindresorhus"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/zod" : {
2025-11-15 13:36:42 +09:00
"version" : "4.1.12" ,
"resolved" : "https://registry.npmjs.org/zod/-/zod-4.1.12.tgz" ,
"integrity" : "sha512-JInaHOamG8pt5+Ey8kGmdcAcg3OL9reK8ltczgHTAwNhMys/6ThXHityHxVV2p3fkw/c+MAvBHFVYHFZDmjMCQ==" ,
2025-08-19 01:17:17 +00:00
"license" : "MIT" ,
"funding" : {
"url" : "https://github.com/sponsors/colinhacks"
}
} ,
2025-11-29 12:39:35 +08:00
"node_modules/zod-validation-error" : {
"version" : "4.0.2" ,
"resolved" : "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-4.0.2.tgz" ,
"integrity" : "sha512-Q6/nZLe6jxuU80qb/4uJ4t5v2VEZ44lzQjPDhYJNztRQ4wyWc6VF3D3Kb/fAuPetZQnhS3hnajCf9CsWesghLQ==" ,
"dev" : true ,
"license" : "MIT" ,
"engines" : {
"node" : ">=18.0.0"
} ,
"peerDependencies" : {
"zod" : "^3.25.0 || ^4.0.0"
}
} ,
2025-08-19 01:17:17 +00:00
"node_modules/zwitch" : {
"version" : "2.0.4" ,
"resolved" : "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz" ,
"integrity" : "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==" ,
"license" : "MIT" ,
"funding" : {
"type" : "github" ,
"url" : "https://github.com/sponsors/wooorm"
}
2025-03-19 06:04:06 +00:00
}
}
}