2025-03-19 06:04:06 +00:00
|
|
|
{
|
2025-08-19 01:17:17 +00:00
|
|
|
"name": "next-ai-draw-io",
|
2025-12-25 22:30:48 +09:00
|
|
|
"version": "0.4.7",
|
2025-12-04 00:33:32 +09:00
|
|
|
"license": "Apache-2.0",
|
2025-08-19 01:17:17 +00:00
|
|
|
"private": true,
|
2025-12-22 09:18:21 +08:00
|
|
|
"main": "dist-electron/main/index.js",
|
2025-08-19 01:17:17 +00:00
|
|
|
"scripts": {
|
|
|
|
|
"dev": "next dev --turbopack --port 6002",
|
|
|
|
|
"build": "next build",
|
|
|
|
|
"start": "next start --port 6001",
|
2025-12-06 12:46:40 +09:00
|
|
|
"lint": "biome lint .",
|
|
|
|
|
"format": "biome check --write .",
|
|
|
|
|
"check": "biome ci",
|
2025-12-22 09:18:21 +08:00
|
|
|
"prepare": "husky",
|
2025-12-27 17:43:23 +05:30
|
|
|
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
|
|
|
|
|
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
|
|
|
|
|
"upload": "opennextjs-cloudflare build && opennextjs-cloudflare upload",
|
|
|
|
|
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
|
2025-12-22 09:18:21 +08:00
|
|
|
"electron:dev": "node scripts/electron-dev.mjs",
|
|
|
|
|
"electron:build": "npm run build && npm run electron:compile",
|
|
|
|
|
"electron:compile": "npx esbuild electron/main/index.ts electron/preload/index.ts electron/preload/settings.ts --bundle --platform=node --outdir=dist-electron --external:electron --sourcemap --packages=external && npx shx cp -r electron/settings dist-electron/",
|
|
|
|
|
"electron:start": "npx cross-env NODE_ENV=development npx electron .",
|
|
|
|
|
"electron:prepare": "node scripts/prepare-electron-build.mjs",
|
2025-12-29 14:30:25 +09:00
|
|
|
"dist": "npm run electron:build && npm run electron:prepare && npx electron-builder --config electron/electron-builder.yml",
|
|
|
|
|
"dist:mac": "npm run electron:build && npm run electron:prepare && npx electron-builder --config electron/electron-builder.yml --mac",
|
|
|
|
|
"dist:win": "npm run electron:build && npm run electron:prepare && npx electron-builder --config electron/electron-builder.yml --win",
|
|
|
|
|
"dist:linux": "npm run electron:build && npm run electron:prepare && npx electron-builder --config electron/electron-builder.yml --linux",
|
|
|
|
|
"dist:all": "npm run electron:build && npm run electron:prepare && npx electron-builder --config electron/electron-builder.yml --mac --win --linux"
|
2025-08-19 01:17:17 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2025-12-23 13:31:42 +09:00
|
|
|
"@ai-sdk/amazon-bedrock": "^4.0.1",
|
|
|
|
|
"@ai-sdk/anthropic": "^3.0.0",
|
|
|
|
|
"@ai-sdk/azure": "^3.0.0",
|
|
|
|
|
"@ai-sdk/deepseek": "^2.0.0",
|
|
|
|
|
"@ai-sdk/gateway": "^3.0.0",
|
|
|
|
|
"@ai-sdk/google": "^3.0.0",
|
|
|
|
|
"@ai-sdk/openai": "^3.0.0",
|
|
|
|
|
"@ai-sdk/react": "^3.0.1",
|
2025-12-23 18:36:27 +09:00
|
|
|
"@aws-sdk/client-dynamodb": "^3.957.0",
|
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-12-27 17:43:23 +05:30
|
|
|
"@opennextjs/cloudflare": "1.14.7",
|
2025-12-23 13:31:42 +09:00
|
|
|
"@openrouter/ai-sdk-provider": "^1.5.4",
|
2025-12-07 09:49:01 +08: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-12-23 13:31:42 +09:00
|
|
|
"ai": "^6.0.1",
|
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-12-28 21:05:23 +09:00
|
|
|
"jsdom": "^27.0.0",
|
2025-12-14 12:34:34 +09:00
|
|
|
"jsonrepair": "^3.13.1",
|
2025-12-27 04:34:47 +00:00
|
|
|
"lucide-react": "^0.562.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
|
|
|
},
|
2025-12-30 21:13:22 +08:00
|
|
|
"optionalDependencies": {
|
|
|
|
|
"lightningcss": "^1.30.2",
|
|
|
|
|
"lightningcss-linux-x64-gnu": "^1.30.2",
|
|
|
|
|
"@tailwindcss/oxide-linux-x64-gnu": "^4.1.18"
|
|
|
|
|
},
|
2025-12-06 12:46:40 +09:00
|
|
|
"lint-staged": {
|
|
|
|
|
"*.{js,ts,jsx,tsx,json,css}": [
|
|
|
|
|
"biome check --write --no-errors-on-unmatched",
|
|
|
|
|
"biome check --no-errors-on-unmatched"
|
|
|
|
|
]
|
|
|
|
|
},
|
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-12-28 21:05:20 +09:00
|
|
|
"@types/node": "^24.0.0",
|
2025-08-19 01:17:17 +00:00
|
|
|
"@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-12-27 04:34:47 +00:00
|
|
|
"eslint": "9.39.2",
|
2025-12-27 01:25:44 +00:00
|
|
|
"eslint-config-next": "16.1.1",
|
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",
|
2025-12-27 17:43:23 +05:30
|
|
|
"wait-on": "^9.0.3",
|
|
|
|
|
"wrangler": "4.54.0"
|
2025-12-23 13:31:42 +09:00
|
|
|
},
|
|
|
|
|
"overrides": {
|
|
|
|
|
"@openrouter/ai-sdk-provider": {
|
|
|
|
|
"ai": "^6.0.1"
|
|
|
|
|
}
|
2025-08-19 01:17:17 +00:00
|
|
|
}
|
2025-03-19 06:04:06 +00:00
|
|
|
}
|