* feat: add provider usage query functionality
- Updated `Cargo.toml` to include `regex` and `rquickjs` dependencies for usage script execution.
- Implemented `query_provider_usage` command in `commands.rs` to handle usage queries.
- Created `UsageScript` and `UsageData` structs in `provider.rs` for managing usage script configurations and results.
- Added `execute_usage_script` function in `usage_script.rs` to run user-defined scripts for querying usage.
- Enhanced `ProviderList` component to include a button for configuring usage scripts and a modal for editing scripts.
- Introduced `UsageFooter` component to display usage information and status.
- Added `UsageScriptModal` for editing and testing usage scripts with preset templates.
- Updated Tauri API to support querying provider usage.
- Modified types in `types.ts` to include structures for usage scripts and results.
* feat(usage): support multi-plan usage display for providers
- 【Feature】
- Update `UsageResult` to support an array of `UsageData` for displaying multiple usage plans per provider.
- Refactor `query_provider_usage` command to parse both single `UsageData` objects (for backward compatibility) and arrays of `UsageData`.
- Enhance `usage_script` validation to accept either a single usage object or an array of usage objects.
- 【Frontend】
- Redesign `UsageFooter` to iterate and display details for all available usage plans, introducing `UsagePlanItem` for individual plan rendering.
- Improve usage display with color-coded remaining balance and clear plan information.
- Update `UsageScriptModal` test notification to summarize all returned plans.
- Remove redundant `isCurrent` prop from `UsageFooter` in `ProviderList`.
- 【Build】
- Change frontend development server port from `3000` to `3005` in `tauri.conf.json` and `vite.config.mts`.
* feat(usage): enhance query flexibility and display
- 【`src/types.ts`, `src-tauri/src/provider.rs`】Make `UsageData` fields optional and introduce `extra` and `invalidMessage` for more flexible reporting.
- `expiresAt` replaced by generic `extra` field.
- `isValid`, `remaining`, `unit` are now optional.
- Added `invalidMessage` to provide specific reasons for invalid status.
- 【`src-tauri/src/usage_script.rs`】Relax usage script result validation to accommodate optional fields in `UsageData`.
- 【`src/components/UsageFooter.tsx`】Update UI to display `extra` field and `invalidMessage`, and conditionally render `remaining` and `unit` based on availability.
- 【`src/components/UsageScriptModal.tsx`】
- Add a new `NewAPI` preset template demonstrating advanced extractor logic for complex API responses.
- Update script instructions to reflect optional fields and new variable syntax (`{{apiKey}}`).
- Remove old "DeepSeek" and "OpenAI" templates.
- Remove basic syntax check for `return` statement.
- 【`.vscode/settings.json`】Add `dish-ai-commit.base.language` setting.
- 【`src-tauri/src/commands.rs`】Adjust usage logging to handle optional `remaining` and `unit` fields.
* chore(config): remove VS Code settings from version control
- delete .vscode/settings.json to remove editor-specific configurations
- add /.vscode to .gitignore to prevent tracking of local VS Code settings
- ensure personalized editor preferences are not committed to the repository
* fix(provider): preserve usage script during provider update
- When updating a provider, the `usage_script` configuration within `ProviderMeta` was not explicitly merged.
- This could lead to the accidental loss of `usage_script` settings if the incoming `provider` object in the update request did not contain this field.
- Ensure `usage_script` is cloned from the existing provider's meta when merging `ProviderMeta` during an update.
* refactor(provider): enforce base_url for usage scripts and update dev ports
- 【Backend】
- `src-tauri/src/commands.rs`: Made `ANTHROPIC_BASE_URL` a required field for Claude providers and `base_url` a required field in `config.toml` for Codex providers when extracting credentials for usage script execution. This improves error handling by explicitly failing if these critical URLs are missing or malformed.
- 【Frontend】
- `src/App.tsx`, `src/components/ProviderList.tsx`: Passed `appType` prop to `ProviderList` component to ensure `updateProvider` calls within `handleSaveUsageScript` correctly identify the application type.
- 【Config】
- `src-tauri/tauri.conf.json`, `vite.config.mts`: Updated development server ports from `3005` to `3000` to standardize local development environment.
* refactor(usage): improve usage data fetching logic
- Prevent redundant API calls by tracking last fetched parameters in `useEffect`.
- Avoid concurrent API requests by adding a guard in `fetchUsage`.
- Clear usage data and last fetch parameters when usage query is disabled.
- Add `queryProviderUsage` API declaration to `window.api` interface.
* fix(usage-script): ensure usage script updates and improve reactivity
- correctly update `usage_script` from new provider meta during updates
- replace full page reload with targeted provider data refresh after saving usage script settings
- trigger usage data fetch or clear when `usageEnabled` status changes in `UsageFooter`
- reduce logging verbosity for usage script execution in backend commands and script execution
* style(usage-footer): adjust usage plan item layout
- Decrease width of extra field column from 35% to 30%
- Increase width of usage information column from 40% to 45%
- Improve visual balance and readability of usage plan items
1898 lines
60 KiB
YAML
1898 lines
60 KiB
YAML
lockfileVersion: '9.0'
|
|
|
|
settings:
|
|
autoInstallPeers: true
|
|
excludeLinksFromLockfile: false
|
|
|
|
importers:
|
|
|
|
.:
|
|
dependencies:
|
|
'@codemirror/lang-javascript':
|
|
specifier: ^6.2.4
|
|
version: 6.2.4
|
|
'@codemirror/lang-json':
|
|
specifier: ^6.0.2
|
|
version: 6.0.2
|
|
'@codemirror/lint':
|
|
specifier: ^6.8.5
|
|
version: 6.8.5
|
|
'@codemirror/state':
|
|
specifier: ^6.5.2
|
|
version: 6.5.2
|
|
'@codemirror/theme-one-dark':
|
|
specifier: ^6.1.3
|
|
version: 6.1.3
|
|
'@codemirror/view':
|
|
specifier: ^6.38.2
|
|
version: 6.38.2
|
|
'@tailwindcss/vite':
|
|
specifier: ^4.1.13
|
|
version: 4.1.13(vite@5.4.19(@types/node@20.19.9)(lightningcss@1.30.1))
|
|
'@tauri-apps/api':
|
|
specifier: ^2.8.0
|
|
version: 2.8.0
|
|
'@tauri-apps/plugin-dialog':
|
|
specifier: ^2.4.0
|
|
version: 2.4.0
|
|
'@tauri-apps/plugin-process':
|
|
specifier: ^2.0.0
|
|
version: 2.3.0
|
|
'@tauri-apps/plugin-updater':
|
|
specifier: ^2.0.0
|
|
version: 2.9.0
|
|
codemirror:
|
|
specifier: ^6.0.2
|
|
version: 6.0.2
|
|
i18next:
|
|
specifier: ^25.5.2
|
|
version: 25.5.2(typescript@5.9.2)
|
|
jsonc-parser:
|
|
specifier: ^3.2.1
|
|
version: 3.3.1
|
|
lucide-react:
|
|
specifier: ^0.542.0
|
|
version: 0.542.0(react@18.3.1)
|
|
react:
|
|
specifier: ^18.2.0
|
|
version: 18.3.1
|
|
react-dom:
|
|
specifier: ^18.2.0
|
|
version: 18.3.1(react@18.3.1)
|
|
react-i18next:
|
|
specifier: ^16.0.0
|
|
version: 16.0.0(i18next@25.5.2(typescript@5.9.2))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.9.2)
|
|
smol-toml:
|
|
specifier: ^1.4.2
|
|
version: 1.4.2
|
|
tailwindcss:
|
|
specifier: ^4.1.13
|
|
version: 4.1.13
|
|
devDependencies:
|
|
'@tauri-apps/cli':
|
|
specifier: ^2.8.0
|
|
version: 2.8.1
|
|
'@types/node':
|
|
specifier: ^20.0.0
|
|
version: 20.19.9
|
|
'@types/react':
|
|
specifier: ^18.2.0
|
|
version: 18.3.23
|
|
'@types/react-dom':
|
|
specifier: ^18.2.0
|
|
version: 18.3.7(@types/react@18.3.23)
|
|
'@vitejs/plugin-react':
|
|
specifier: ^4.2.0
|
|
version: 4.7.0(vite@5.4.19(@types/node@20.19.9)(lightningcss@1.30.1))
|
|
prettier:
|
|
specifier: ^3.6.2
|
|
version: 3.6.2
|
|
typescript:
|
|
specifier: ^5.3.0
|
|
version: 5.9.2
|
|
vite:
|
|
specifier: ^5.0.0
|
|
version: 5.4.19(@types/node@20.19.9)(lightningcss@1.30.1)
|
|
|
|
packages:
|
|
|
|
'@ampproject/remapping@2.3.0':
|
|
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
|
engines: {node: '>=6.0.0'}
|
|
|
|
'@babel/code-frame@7.27.1':
|
|
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/compat-data@7.28.0':
|
|
resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/core@7.28.0':
|
|
resolution: {integrity: sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/generator@7.28.0':
|
|
resolution: {integrity: sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/helper-compilation-targets@7.27.2':
|
|
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/helper-globals@7.28.0':
|
|
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/helper-module-imports@7.27.1':
|
|
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/helper-module-transforms@7.27.3':
|
|
resolution: {integrity: sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==}
|
|
engines: {node: '>=6.9.0'}
|
|
peerDependencies:
|
|
'@babel/core': ^7.0.0
|
|
|
|
'@babel/helper-plugin-utils@7.27.1':
|
|
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/helper-string-parser@7.27.1':
|
|
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/helper-validator-identifier@7.27.1':
|
|
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/helper-validator-option@7.27.1':
|
|
resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/helpers@7.28.2':
|
|
resolution: {integrity: sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/parser@7.28.0':
|
|
resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
|
|
engines: {node: '>=6.0.0'}
|
|
hasBin: true
|
|
|
|
'@babel/plugin-transform-react-jsx-self@7.27.1':
|
|
resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
|
|
engines: {node: '>=6.9.0'}
|
|
peerDependencies:
|
|
'@babel/core': ^7.0.0-0
|
|
|
|
'@babel/plugin-transform-react-jsx-source@7.27.1':
|
|
resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
|
|
engines: {node: '>=6.9.0'}
|
|
peerDependencies:
|
|
'@babel/core': ^7.0.0-0
|
|
|
|
'@babel/runtime@7.28.4':
|
|
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/template@7.27.2':
|
|
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/traverse@7.28.0':
|
|
resolution: {integrity: sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@babel/types@7.28.2':
|
|
resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
'@codemirror/autocomplete@6.18.7':
|
|
resolution: {integrity: sha512-8EzdeIoWPJDsMBwz3zdzwXnUpCzMiCyz5/A3FIPpriaclFCGDkAzK13sMcnsu5rowqiyeQN2Vs2TsOcoDPZirQ==}
|
|
|
|
'@codemirror/commands@6.8.1':
|
|
resolution: {integrity: sha512-KlGVYufHMQzxbdQONiLyGQDUW0itrLZwq3CcY7xpv9ZLRHqzkBSoteocBHtMCoY7/Ci4xhzSrToIeLg7FxHuaw==}
|
|
|
|
'@codemirror/lang-javascript@6.2.4':
|
|
resolution: {integrity: sha512-0WVmhp1QOqZ4Rt6GlVGwKJN3KW7Xh4H2q8ZZNGZaP6lRdxXJzmjm4FqvmOojVj6khWJHIb9sp7U/72W7xQgqAA==}
|
|
|
|
'@codemirror/lang-json@6.0.2':
|
|
resolution: {integrity: sha512-x2OtO+AvwEHrEwR0FyyPtfDUiloG3rnVTSZV1W8UteaLL8/MajQd8DpvUb2YVzC+/T18aSDv0H9mu+xw0EStoQ==}
|
|
|
|
'@codemirror/language@6.11.3':
|
|
resolution: {integrity: sha512-9HBM2XnwDj7fnu0551HkGdrUrrqmYq/WC5iv6nbY2WdicXdGbhR/gfbZOH73Aqj4351alY1+aoG9rCNfiwS1RA==}
|
|
|
|
'@codemirror/lint@6.8.5':
|
|
resolution: {integrity: sha512-s3n3KisH7dx3vsoeGMxsbRAgKe4O1vbrnKBClm99PU0fWxmxsx5rR2PfqQgIt+2MMJBHbiJ5rfIdLYfB9NNvsA==}
|
|
|
|
'@codemirror/search@6.5.11':
|
|
resolution: {integrity: sha512-KmWepDE6jUdL6n8cAAqIpRmLPBZ5ZKnicE8oGU/s3QrAVID+0VhLFrzUucVKHG5035/BSykhExDL/Xm7dHthiA==}
|
|
|
|
'@codemirror/state@6.5.2':
|
|
resolution: {integrity: sha512-FVqsPqtPWKVVL3dPSxy8wEF/ymIEuVzF1PK3VbUgrxXpJUSHQWWZz4JMToquRxnkw+36LTamCZG2iua2Ptq0fA==}
|
|
|
|
'@codemirror/theme-one-dark@6.1.3':
|
|
resolution: {integrity: sha512-NzBdIvEJmx6fjeremiGp3t/okrLPYT0d9orIc7AFun8oZcRk58aejkqhv6spnz4MLAevrKNPMQYXEWMg4s+sKA==}
|
|
|
|
'@codemirror/view@6.38.2':
|
|
resolution: {integrity: sha512-bTWAJxL6EOFLPzTx+O5P5xAO3gTqpatQ2b/ARQ8itfU/v2LlpS3pH2fkL0A3E/Fx8Y2St2KES7ZEV0sHTsSW/A==}
|
|
|
|
'@esbuild/aix-ppc64@0.21.5':
|
|
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
|
|
engines: {node: '>=12'}
|
|
cpu: [ppc64]
|
|
os: [aix]
|
|
|
|
'@esbuild/android-arm64@0.21.5':
|
|
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
|
|
engines: {node: '>=12'}
|
|
cpu: [arm64]
|
|
os: [android]
|
|
|
|
'@esbuild/android-arm@0.21.5':
|
|
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
|
|
engines: {node: '>=12'}
|
|
cpu: [arm]
|
|
os: [android]
|
|
|
|
'@esbuild/android-x64@0.21.5':
|
|
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
|
|
engines: {node: '>=12'}
|
|
cpu: [x64]
|
|
os: [android]
|
|
|
|
'@esbuild/darwin-arm64@0.21.5':
|
|
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
|
|
engines: {node: '>=12'}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@esbuild/darwin-x64@0.21.5':
|
|
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
|
|
engines: {node: '>=12'}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@esbuild/freebsd-arm64@0.21.5':
|
|
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
|
|
engines: {node: '>=12'}
|
|
cpu: [arm64]
|
|
os: [freebsd]
|
|
|
|
'@esbuild/freebsd-x64@0.21.5':
|
|
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
|
|
engines: {node: '>=12'}
|
|
cpu: [x64]
|
|
os: [freebsd]
|
|
|
|
'@esbuild/linux-arm64@0.21.5':
|
|
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
|
|
engines: {node: '>=12'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
|
|
'@esbuild/linux-arm@0.21.5':
|
|
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
|
|
engines: {node: '>=12'}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
|
|
'@esbuild/linux-ia32@0.21.5':
|
|
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
|
|
engines: {node: '>=12'}
|
|
cpu: [ia32]
|
|
os: [linux]
|
|
|
|
'@esbuild/linux-loong64@0.21.5':
|
|
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
|
|
engines: {node: '>=12'}
|
|
cpu: [loong64]
|
|
os: [linux]
|
|
|
|
'@esbuild/linux-mips64el@0.21.5':
|
|
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
|
|
engines: {node: '>=12'}
|
|
cpu: [mips64el]
|
|
os: [linux]
|
|
|
|
'@esbuild/linux-ppc64@0.21.5':
|
|
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
|
|
engines: {node: '>=12'}
|
|
cpu: [ppc64]
|
|
os: [linux]
|
|
|
|
'@esbuild/linux-riscv64@0.21.5':
|
|
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
|
|
engines: {node: '>=12'}
|
|
cpu: [riscv64]
|
|
os: [linux]
|
|
|
|
'@esbuild/linux-s390x@0.21.5':
|
|
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
|
|
engines: {node: '>=12'}
|
|
cpu: [s390x]
|
|
os: [linux]
|
|
|
|
'@esbuild/linux-x64@0.21.5':
|
|
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
|
|
engines: {node: '>=12'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
|
|
'@esbuild/netbsd-x64@0.21.5':
|
|
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
|
|
engines: {node: '>=12'}
|
|
cpu: [x64]
|
|
os: [netbsd]
|
|
|
|
'@esbuild/openbsd-x64@0.21.5':
|
|
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
|
|
engines: {node: '>=12'}
|
|
cpu: [x64]
|
|
os: [openbsd]
|
|
|
|
'@esbuild/sunos-x64@0.21.5':
|
|
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
|
|
engines: {node: '>=12'}
|
|
cpu: [x64]
|
|
os: [sunos]
|
|
|
|
'@esbuild/win32-arm64@0.21.5':
|
|
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
|
|
engines: {node: '>=12'}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
'@esbuild/win32-ia32@0.21.5':
|
|
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
|
|
engines: {node: '>=12'}
|
|
cpu: [ia32]
|
|
os: [win32]
|
|
|
|
'@esbuild/win32-x64@0.21.5':
|
|
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
|
|
engines: {node: '>=12'}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
'@isaacs/fs-minipass@4.0.1':
|
|
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
|
|
engines: {node: '>=18.0.0'}
|
|
|
|
'@jridgewell/gen-mapping@0.3.12':
|
|
resolution: {integrity: sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==}
|
|
|
|
'@jridgewell/remapping@2.3.5':
|
|
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
|
|
|
'@jridgewell/resolve-uri@3.1.2':
|
|
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
engines: {node: '>=6.0.0'}
|
|
|
|
'@jridgewell/sourcemap-codec@1.5.4':
|
|
resolution: {integrity: sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==}
|
|
|
|
'@jridgewell/sourcemap-codec@1.5.5':
|
|
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
|
|
'@jridgewell/trace-mapping@0.3.29':
|
|
resolution: {integrity: sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==}
|
|
|
|
'@lezer/common@1.2.3':
|
|
resolution: {integrity: sha512-w7ojc8ejBqr2REPsWxJjrMFsA/ysDCFICn8zEOR9mrqzOu2amhITYuLD8ag6XZf0CFXDrhKqw7+tW8cX66NaDA==}
|
|
|
|
'@lezer/highlight@1.2.1':
|
|
resolution: {integrity: sha512-Z5duk4RN/3zuVO7Jq0pGLJ3qynpxUVsh7IbUbGj88+uV2ApSAn6kWg2au3iJb+0Zi7kKtqffIESgNcRXWZWmSA==}
|
|
|
|
'@lezer/javascript@1.5.4':
|
|
resolution: {integrity: sha512-vvYx3MhWqeZtGPwDStM2dwgljd5smolYD2lR2UyFcHfxbBQebqx8yjmFmxtJ/E6nN6u1D9srOiVWm3Rb4tmcUA==}
|
|
|
|
'@lezer/json@1.0.3':
|
|
resolution: {integrity: sha512-BP9KzdF9Y35PDpv04r0VeSTKDeox5vVr3efE7eBbx3r4s3oNLfunchejZhjArmeieBH+nVOpgIiBJpEAv8ilqQ==}
|
|
|
|
'@lezer/lr@1.4.2':
|
|
resolution: {integrity: sha512-pu0K1jCIdnQ12aWNaAVU5bzi7Bd1w54J3ECgANPmYLtQKP0HBj2cE/5coBD66MT10xbtIuUr7tg0Shbsvk0mDA==}
|
|
|
|
'@marijn/find-cluster-break@1.0.2':
|
|
resolution: {integrity: sha512-l0h88YhZFyKdXIFNfSWpyjStDjGHwZ/U7iobcK1cQQD8sejsONdQtTVU+1wVN1PBw40PiiHB1vA5S7VTfQiP9g==}
|
|
|
|
'@rolldown/pluginutils@1.0.0-beta.27':
|
|
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
|
|
|
|
'@rollup/rollup-android-arm-eabi@4.46.2':
|
|
resolution: {integrity: sha512-Zj3Hl6sN34xJtMv7Anwb5Gu01yujyE/cLBDB2gnHTAHaWS1Z38L7kuSG+oAh0giZMqG060f/YBStXtMH6FvPMA==}
|
|
cpu: [arm]
|
|
os: [android]
|
|
|
|
'@rollup/rollup-android-arm64@4.46.2':
|
|
resolution: {integrity: sha512-nTeCWY83kN64oQ5MGz3CgtPx8NSOhC5lWtsjTs+8JAJNLcP3QbLCtDDgUKQc/Ro/frpMq4SHUaHN6AMltcEoLQ==}
|
|
cpu: [arm64]
|
|
os: [android]
|
|
|
|
'@rollup/rollup-darwin-arm64@4.46.2':
|
|
resolution: {integrity: sha512-HV7bW2Fb/F5KPdM/9bApunQh68YVDU8sO8BvcW9OngQVN3HHHkw99wFupuUJfGR9pYLLAjcAOA6iO+evsbBaPQ==}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@rollup/rollup-darwin-x64@4.46.2':
|
|
resolution: {integrity: sha512-SSj8TlYV5nJixSsm/y3QXfhspSiLYP11zpfwp6G/YDXctf3Xkdnk4woJIF5VQe0of2OjzTt8EsxnJDCdHd2xMA==}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@rollup/rollup-freebsd-arm64@4.46.2':
|
|
resolution: {integrity: sha512-ZyrsG4TIT9xnOlLsSSi9w/X29tCbK1yegE49RYm3tu3wF1L/B6LVMqnEWyDB26d9Ecx9zrmXCiPmIabVuLmNSg==}
|
|
cpu: [arm64]
|
|
os: [freebsd]
|
|
|
|
'@rollup/rollup-freebsd-x64@4.46.2':
|
|
resolution: {integrity: sha512-pCgHFoOECwVCJ5GFq8+gR8SBKnMO+xe5UEqbemxBpCKYQddRQMgomv1104RnLSg7nNvgKy05sLsY51+OVRyiVw==}
|
|
cpu: [x64]
|
|
os: [freebsd]
|
|
|
|
'@rollup/rollup-linux-arm-gnueabihf@4.46.2':
|
|
resolution: {integrity: sha512-EtP8aquZ0xQg0ETFcxUbU71MZlHaw9MChwrQzatiE8U/bvi5uv/oChExXC4mWhjiqK7azGJBqU0tt5H123SzVA==}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@rollup/rollup-linux-arm-musleabihf@4.46.2':
|
|
resolution: {integrity: sha512-qO7F7U3u1nfxYRPM8HqFtLd+raev2K137dsV08q/LRKRLEc7RsiDWihUnrINdsWQxPR9jqZ8DIIZ1zJJAm5PjQ==}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
'@rollup/rollup-linux-arm64-gnu@4.46.2':
|
|
resolution: {integrity: sha512-3dRaqLfcOXYsfvw5xMrxAk9Lb1f395gkoBYzSFcc/scgRFptRXL9DOaDpMiehf9CO8ZDRJW2z45b6fpU5nwjng==}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@rollup/rollup-linux-arm64-musl@4.46.2':
|
|
resolution: {integrity: sha512-fhHFTutA7SM+IrR6lIfiHskxmpmPTJUXpWIsBXpeEwNgZzZZSg/q4i6FU4J8qOGyJ0TR+wXBwx/L7Ho9z0+uDg==}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
'@rollup/rollup-linux-loongarch64-gnu@4.46.2':
|
|
resolution: {integrity: sha512-i7wfGFXu8x4+FRqPymzjD+Hyav8l95UIZ773j7J7zRYc3Xsxy2wIn4x+llpunexXe6laaO72iEjeeGyUFmjKeA==}
|
|
cpu: [loong64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@rollup/rollup-linux-ppc64-gnu@4.46.2':
|
|
resolution: {integrity: sha512-B/l0dFcHVUnqcGZWKcWBSV2PF01YUt0Rvlurci5P+neqY/yMKchGU8ullZvIv5e8Y1C6wOn+U03mrDylP5q9Yw==}
|
|
cpu: [ppc64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@rollup/rollup-linux-riscv64-gnu@4.46.2':
|
|
resolution: {integrity: sha512-32k4ENb5ygtkMwPMucAb8MtV8olkPT03oiTxJbgkJa7lJ7dZMr0GCFJlyvy+K8iq7F/iuOr41ZdUHaOiqyR3iQ==}
|
|
cpu: [riscv64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@rollup/rollup-linux-riscv64-musl@4.46.2':
|
|
resolution: {integrity: sha512-t5B2loThlFEauloaQkZg9gxV05BYeITLvLkWOkRXogP4qHXLkWSbSHKM9S6H1schf/0YGP/qNKtiISlxvfmmZw==}
|
|
cpu: [riscv64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
'@rollup/rollup-linux-s390x-gnu@4.46.2':
|
|
resolution: {integrity: sha512-YKjekwTEKgbB7n17gmODSmJVUIvj8CX7q5442/CK80L8nqOUbMtf8b01QkG3jOqyr1rotrAnW6B/qiHwfcuWQA==}
|
|
cpu: [s390x]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@rollup/rollup-linux-x64-gnu@4.46.2':
|
|
resolution: {integrity: sha512-Jj5a9RUoe5ra+MEyERkDKLwTXVu6s3aACP51nkfnK9wJTraCC8IMe3snOfALkrjTYd2G1ViE1hICj0fZ7ALBPA==}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@rollup/rollup-linux-x64-musl@4.46.2':
|
|
resolution: {integrity: sha512-7kX69DIrBeD7yNp4A5b81izs8BqoZkCIaxQaOpumcJ1S/kmqNFjPhDu1LHeVXv0SexfHQv5cqHsxLOjETuqDuA==}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
'@rollup/rollup-win32-arm64-msvc@4.46.2':
|
|
resolution: {integrity: sha512-wiJWMIpeaak/jsbaq2HMh/rzZxHVW1rU6coyeNNpMwk5isiPjSTx0a4YLSlYDwBH/WBvLz+EtsNqQScZTLJy3g==}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
'@rollup/rollup-win32-ia32-msvc@4.46.2':
|
|
resolution: {integrity: sha512-gBgaUDESVzMgWZhcyjfs9QFK16D8K6QZpwAaVNJxYDLHWayOta4ZMjGm/vsAEy3hvlS2GosVFlBlP9/Wb85DqQ==}
|
|
cpu: [ia32]
|
|
os: [win32]
|
|
|
|
'@rollup/rollup-win32-x64-msvc@4.46.2':
|
|
resolution: {integrity: sha512-CvUo2ixeIQGtF6WvuB87XWqPQkoFAFqW+HUo/WzHwuHDvIwZCtjdWXoYCcr06iKGydiqTclC4jU/TNObC/xKZg==}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
'@tailwindcss/node@4.1.13':
|
|
resolution: {integrity: sha512-eq3ouolC1oEFOAvOMOBAmfCIqZBJuvWvvYWh5h5iOYfe1HFC6+GZ6EIL0JdM3/niGRJmnrOc+8gl9/HGUaaptw==}
|
|
|
|
'@tailwindcss/oxide-android-arm64@4.1.13':
|
|
resolution: {integrity: sha512-BrpTrVYyejbgGo57yc8ieE+D6VT9GOgnNdmh5Sac6+t0m+v+sKQevpFVpwX3pBrM2qKrQwJ0c5eDbtjouY/+ew==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [android]
|
|
|
|
'@tailwindcss/oxide-darwin-arm64@4.1.13':
|
|
resolution: {integrity: sha512-YP+Jksc4U0KHcu76UhRDHq9bx4qtBftp9ShK/7UGfq0wpaP96YVnnjFnj3ZFrUAjc5iECzODl/Ts0AN7ZPOANQ==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@tailwindcss/oxide-darwin-x64@4.1.13':
|
|
resolution: {integrity: sha512-aAJ3bbwrn/PQHDxCto9sxwQfT30PzyYJFG0u/BWZGeVXi5Hx6uuUOQEI2Fa43qvmUjTRQNZnGqe9t0Zntexeuw==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@tailwindcss/oxide-freebsd-x64@4.1.13':
|
|
resolution: {integrity: sha512-Wt8KvASHwSXhKE/dJLCCWcTSVmBj3xhVhp/aF3RpAhGeZ3sVo7+NTfgiN8Vey/Fi8prRClDs6/f0KXPDTZE6nQ==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [freebsd]
|
|
|
|
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.13':
|
|
resolution: {integrity: sha512-mbVbcAsW3Gkm2MGwA93eLtWrwajz91aXZCNSkGTx/R5eb6KpKD5q8Ueckkh9YNboU8RH7jiv+ol/I7ZyQ9H7Bw==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
|
|
'@tailwindcss/oxide-linux-arm64-gnu@4.1.13':
|
|
resolution: {integrity: sha512-wdtfkmpXiwej/yoAkrCP2DNzRXCALq9NVLgLELgLim1QpSfhQM5+ZxQQF8fkOiEpuNoKLp4nKZ6RC4kmeFH0HQ==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@tailwindcss/oxide-linux-arm64-musl@4.1.13':
|
|
resolution: {integrity: sha512-hZQrmtLdhyqzXHB7mkXfq0IYbxegaqTmfa1p9MBj72WPoDD3oNOh1Lnxf6xZLY9C3OV6qiCYkO1i/LrzEdW2mg==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
'@tailwindcss/oxide-linux-x64-gnu@4.1.13':
|
|
resolution: {integrity: sha512-uaZTYWxSXyMWDJZNY1Ul7XkJTCBRFZ5Fo6wtjrgBKzZLoJNrG+WderJwAjPzuNZOnmdrVg260DKwXCFtJ/hWRQ==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@tailwindcss/oxide-linux-x64-musl@4.1.13':
|
|
resolution: {integrity: sha512-oXiPj5mi4Hdn50v5RdnuuIms0PVPI/EG4fxAfFiIKQh5TgQgX7oSuDWntHW7WNIi/yVLAiS+CRGW4RkoGSSgVQ==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
'@tailwindcss/oxide-wasm32-wasi@4.1.13':
|
|
resolution: {integrity: sha512-+LC2nNtPovtrDwBc/nqnIKYh/W2+R69FA0hgoeOn64BdCX522u19ryLh3Vf3F8W49XBcMIxSe665kwy21FkhvA==}
|
|
engines: {node: '>=14.0.0'}
|
|
cpu: [wasm32]
|
|
bundledDependencies:
|
|
- '@napi-rs/wasm-runtime'
|
|
- '@emnapi/core'
|
|
- '@emnapi/runtime'
|
|
- '@tybys/wasm-util'
|
|
- '@emnapi/wasi-threads'
|
|
- tslib
|
|
|
|
'@tailwindcss/oxide-win32-arm64-msvc@4.1.13':
|
|
resolution: {integrity: sha512-dziTNeQXtoQ2KBXmrjCxsuPk3F3CQ/yb7ZNZNA+UkNTeiTGgfeh+gH5Pi7mRncVgcPD2xgHvkFCh/MhZWSgyQg==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
'@tailwindcss/oxide-win32-x64-msvc@4.1.13':
|
|
resolution: {integrity: sha512-3+LKesjXydTkHk5zXX01b5KMzLV1xl2mcktBJkje7rhFUpUlYJy7IMOLqjIRQncLTa1WZZiFY/foAeB5nmaiTw==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
'@tailwindcss/oxide@4.1.13':
|
|
resolution: {integrity: sha512-CPgsM1IpGRa880sMbYmG1s4xhAy3xEt1QULgTJGQmZUeNgXFR7s1YxYygmJyBGtou4SyEosGAGEeYqY7R53bIA==}
|
|
engines: {node: '>= 10'}
|
|
|
|
'@tailwindcss/vite@4.1.13':
|
|
resolution: {integrity: sha512-0PmqLQ010N58SbMTJ7BVJ4I2xopiQn/5i6nlb4JmxzQf8zcS5+m2Cv6tqh+sfDwtIdjoEnOvwsGQ1hkUi8QEHQ==}
|
|
peerDependencies:
|
|
vite: ^5.2.0 || ^6 || ^7
|
|
|
|
'@tauri-apps/api@2.8.0':
|
|
resolution: {integrity: sha512-ga7zdhbS2GXOMTIZRT0mYjKJtR9fivsXzsyq5U3vjDL0s6DTMwYRm0UHNjzTY5dh4+LSC68Sm/7WEiimbQNYlw==}
|
|
|
|
'@tauri-apps/cli-darwin-arm64@2.8.1':
|
|
resolution: {integrity: sha512-301XWcDozcvJ79uMRquSvgI4vvAxetFs+reMpBI1U5mSWixjUqxZjxs9UDJAtE+GFXdGYTjSLUxCKe5WBDKZ/A==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
'@tauri-apps/cli-darwin-x64@2.8.1':
|
|
resolution: {integrity: sha512-fJpOD/jWNy3sn27mjPGexBxGPTCgoCu29C+7qBV8kKJQGrRB4/zJk2zMqcKMjV/1Dma47n+saQWXLFwGpRUHgQ==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
'@tauri-apps/cli-linux-arm-gnueabihf@2.8.1':
|
|
resolution: {integrity: sha512-BcrZiInB3xjdV/Q2yv88aAz4Ajrxomd1+oePUO8ZWVpdhFwMZaAAOMbpPVgrlanGBeSzU7Aim9i1Opz/+JYiDA==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
|
|
'@tauri-apps/cli-linux-arm64-gnu@2.8.1':
|
|
resolution: {integrity: sha512-uZXaQrcdk55h4qWSe3pngg6LMUwVUIoluxXG/cmKHeq8LddlUdKpj3OaSPahLWip1Ol6hq14ysvywzsrdhM4kA==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@tauri-apps/cli-linux-arm64-musl@2.8.1':
|
|
resolution: {integrity: sha512-VK/zwBzQY9SfyK7RSrxlIRQLJyhyssoByYWPK/FJMre8SV/y8zZ071cTQNG9dPWM1f+onI1WPTleG+TBUq/0Gw==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
'@tauri-apps/cli-linux-riscv64-gnu@2.8.1':
|
|
resolution: {integrity: sha512-bFw3zK6xkyurDR5kw2QgiU6YFlFNrfgtli3wRdTRv8zSVLZMQ2iZ8keYnd57vpvsbZ9PusFPYAMS7Fkzkf9I4g==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [riscv64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@tauri-apps/cli-linux-x64-gnu@2.8.1':
|
|
resolution: {integrity: sha512-zOnFX+Rppuz0UVVSeCi67lMet8le+yT4UIiQ6t/QYGtpoWO/D4GpMoVYehJlR14klNXrC2CRxT9b3BUWTCEBwA==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
'@tauri-apps/cli-linux-x64-musl@2.8.1':
|
|
resolution: {integrity: sha512-gLy6eisaeOTC6NQirs3a0XZNCVT/i7JPYHkXx6ArH6+Kb9IU8ogthTY4MQoYbkWmdOp3ijKX+RT1dD3IZURrEg==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
'@tauri-apps/cli-win32-arm64-msvc@2.8.1':
|
|
resolution: {integrity: sha512-ciZ93Dm847zFDqRyc1e0YRiu/cdWne1bMhvifcZOibbyqSKB9o+b95Y5axMtXqR4Wsd2mHiC5TE+MVF3NDsdEw==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
'@tauri-apps/cli-win32-ia32-msvc@2.8.1':
|
|
resolution: {integrity: sha512-uWUa503Pw53XidUvcqWOvVsBY7vpQs+ZlTyQgXSnPuTiMF1l5bFEzqoHMvZfIL3MFG13xCAqVK1bR7lFB/6qMQ==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [ia32]
|
|
os: [win32]
|
|
|
|
'@tauri-apps/cli-win32-x64-msvc@2.8.1':
|
|
resolution: {integrity: sha512-KmiT0vI7FMBWfk5YDQg7+WcjzuMdeaHOQ7H0podZ7lyJg2qo2DpbGp8y+fMVCRsmvQx5bW6Cyh1ArfO1kkUInA==}
|
|
engines: {node: '>= 10'}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
'@tauri-apps/cli@2.8.1':
|
|
resolution: {integrity: sha512-ONVAfI7PFUO6MdSq9dh2YwlIb1cAezrzqrWw2+TChVskoqzDyyzncU7yXlcph/H/nR/kNDEY3E1pC8aV3TVCNQ==}
|
|
engines: {node: '>= 10'}
|
|
hasBin: true
|
|
|
|
'@tauri-apps/plugin-dialog@2.4.0':
|
|
resolution: {integrity: sha512-OvXkrEBfWwtd8tzVCEXIvRfNEX87qs2jv6SqmVPiHcJjBhSF/GUvjqUNIDmKByb5N8nvDqVUM7+g1sXwdC/S9w==}
|
|
|
|
'@tauri-apps/plugin-process@2.3.0':
|
|
resolution: {integrity: sha512-0DNj6u+9csODiV4seSxxRbnLpeGYdojlcctCuLOCgpH9X3+ckVZIEj6H7tRQ7zqWr7kSTEWnrxtAdBb0FbtrmQ==}
|
|
|
|
'@tauri-apps/plugin-updater@2.9.0':
|
|
resolution: {integrity: sha512-j++sgY8XpeDvzImTrzWA08OqqGqgkNyxczLD7FjNJJx/uXxMZFz5nDcfkyoI/rCjYuj2101Tci/r/HFmOmoxCg==}
|
|
|
|
'@types/babel__core@7.20.5':
|
|
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
|
|
|
'@types/babel__generator@7.27.0':
|
|
resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
|
|
|
|
'@types/babel__template@7.4.4':
|
|
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
|
|
|
|
'@types/babel__traverse@7.28.0':
|
|
resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
|
|
|
|
'@types/estree@1.0.8':
|
|
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
|
|
'@types/node@20.19.9':
|
|
resolution: {integrity: sha512-cuVNgarYWZqxRJDQHEB58GEONhOK79QVR/qYx4S7kcUObQvUwvFnYxJuuHUKm2aieN9X3yZB4LZsuYNU1Qphsw==}
|
|
|
|
'@types/prop-types@15.7.15':
|
|
resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
|
|
|
|
'@types/react-dom@18.3.7':
|
|
resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==}
|
|
peerDependencies:
|
|
'@types/react': ^18.0.0
|
|
|
|
'@types/react@18.3.23':
|
|
resolution: {integrity: sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==}
|
|
|
|
'@vitejs/plugin-react@4.7.0':
|
|
resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
|
|
engines: {node: ^14.18.0 || >=16.0.0}
|
|
peerDependencies:
|
|
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
|
|
|
browserslist@4.25.1:
|
|
resolution: {integrity: sha512-KGj0KoOMXLpSNkkEI6Z6mShmQy0bc1I+T7K9N81k4WWMrfz+6fQ6es80B/YLAeRoKvjYE1YSHHOW1qe9xIVzHw==}
|
|
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
hasBin: true
|
|
|
|
caniuse-lite@1.0.30001731:
|
|
resolution: {integrity: sha512-lDdp2/wrOmTRWuoB5DpfNkC0rJDU8DqRa6nYL6HK6sytw70QMopt/NIc/9SM7ylItlBWfACXk0tEn37UWM/+mg==}
|
|
|
|
chownr@3.0.0:
|
|
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
|
|
engines: {node: '>=18'}
|
|
|
|
codemirror@6.0.2:
|
|
resolution: {integrity: sha512-VhydHotNW5w1UGK0Qj96BwSk/Zqbp9WbnyK2W/eVMv4QyF41INRGpjUhFJY7/uDNuudSc33a/PKr4iDqRduvHw==}
|
|
|
|
convert-source-map@2.0.0:
|
|
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
|
|
|
crelt@1.0.6:
|
|
resolution: {integrity: sha512-VQ2MBenTq1fWZUH9DJNGti7kKv6EeAuYr3cLwxUWhIu1baTaXh4Ib5W2CqHVqib4/MqbYGJqiL3Zb8GJZr3l4g==}
|
|
|
|
csstype@3.1.3:
|
|
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
|
|
|
|
debug@4.4.1:
|
|
resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
|
|
engines: {node: '>=6.0'}
|
|
peerDependencies:
|
|
supports-color: '*'
|
|
peerDependenciesMeta:
|
|
supports-color:
|
|
optional: true
|
|
|
|
detect-libc@2.0.4:
|
|
resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
|
|
engines: {node: '>=8'}
|
|
|
|
electron-to-chromium@1.5.197:
|
|
resolution: {integrity: sha512-m1xWB3g7vJ6asIFz+2pBUbq3uGmfmln1M9SSvBe4QIFWYrRHylP73zL/3nMjDmwz8V+1xAXQDfBd6+HPW0WvDQ==}
|
|
|
|
enhanced-resolve@5.18.3:
|
|
resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
|
|
engines: {node: '>=10.13.0'}
|
|
|
|
esbuild@0.21.5:
|
|
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
|
engines: {node: '>=12'}
|
|
hasBin: true
|
|
|
|
escalade@3.2.0:
|
|
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
engines: {node: '>=6'}
|
|
|
|
fsevents@2.3.3:
|
|
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
os: [darwin]
|
|
|
|
gensync@1.0.0-beta.2:
|
|
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
|
engines: {node: '>=6.9.0'}
|
|
|
|
graceful-fs@4.2.11:
|
|
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
|
|
html-parse-stringify@3.0.1:
|
|
resolution: {integrity: sha512-KknJ50kTInJ7qIScF3jeaFRpMpE8/lfiTdzf/twXyPBLAGrLRTmkz3AdTnKeh40X8k9L2fdYwEp/42WGXIRGcg==}
|
|
|
|
i18next@25.5.2:
|
|
resolution: {integrity: sha512-lW8Zeh37i/o0zVr+NoCHfNnfvVw+M6FQbRp36ZZ/NyHDJ3NJVpp2HhAUyU9WafL5AssymNoOjMRB48mmx2P6Hw==}
|
|
peerDependencies:
|
|
typescript: ^5
|
|
peerDependenciesMeta:
|
|
typescript:
|
|
optional: true
|
|
|
|
jiti@2.5.1:
|
|
resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==}
|
|
hasBin: true
|
|
|
|
js-tokens@4.0.0:
|
|
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
|
|
|
jsesc@3.1.0:
|
|
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
|
engines: {node: '>=6'}
|
|
hasBin: true
|
|
|
|
json5@2.2.3:
|
|
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
|
engines: {node: '>=6'}
|
|
hasBin: true
|
|
|
|
jsonc-parser@3.3.1:
|
|
resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==}
|
|
|
|
lightningcss-darwin-arm64@1.30.1:
|
|
resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [arm64]
|
|
os: [darwin]
|
|
|
|
lightningcss-darwin-x64@1.30.1:
|
|
resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [x64]
|
|
os: [darwin]
|
|
|
|
lightningcss-freebsd-x64@1.30.1:
|
|
resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [x64]
|
|
os: [freebsd]
|
|
|
|
lightningcss-linux-arm-gnueabihf@1.30.1:
|
|
resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [arm]
|
|
os: [linux]
|
|
|
|
lightningcss-linux-arm64-gnu@1.30.1:
|
|
resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
lightningcss-linux-arm64-musl@1.30.1:
|
|
resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [arm64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
lightningcss-linux-x64-gnu@1.30.1:
|
|
resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
libc: [glibc]
|
|
|
|
lightningcss-linux-x64-musl@1.30.1:
|
|
resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [x64]
|
|
os: [linux]
|
|
libc: [musl]
|
|
|
|
lightningcss-win32-arm64-msvc@1.30.1:
|
|
resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [arm64]
|
|
os: [win32]
|
|
|
|
lightningcss-win32-x64-msvc@1.30.1:
|
|
resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
|
|
engines: {node: '>= 12.0.0'}
|
|
cpu: [x64]
|
|
os: [win32]
|
|
|
|
lightningcss@1.30.1:
|
|
resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
|
|
engines: {node: '>= 12.0.0'}
|
|
|
|
loose-envify@1.4.0:
|
|
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
|
hasBin: true
|
|
|
|
lru-cache@5.1.1:
|
|
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
|
|
|
lucide-react@0.542.0:
|
|
resolution: {integrity: sha512-w3hD8/SQB7+lzU2r4VdFyzzOzKnUjTZIF/MQJGSSvni7Llewni4vuViRppfRAa2guOsY5k4jZyxw/i9DQHv+dw==}
|
|
peerDependencies:
|
|
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
|
|
magic-string@0.30.18:
|
|
resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==}
|
|
|
|
minipass@7.1.2:
|
|
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
|
engines: {node: '>=16 || 14 >=14.17'}
|
|
|
|
minizlib@3.0.2:
|
|
resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==}
|
|
engines: {node: '>= 18'}
|
|
|
|
mkdirp@3.0.1:
|
|
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
|
|
engines: {node: '>=10'}
|
|
hasBin: true
|
|
|
|
ms@2.1.3:
|
|
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
|
|
nanoid@3.3.11:
|
|
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
hasBin: true
|
|
|
|
node-releases@2.0.19:
|
|
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
|
|
|
|
picocolors@1.1.1:
|
|
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
|
|
postcss@8.5.6:
|
|
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
engines: {node: ^10 || ^12 || >=14}
|
|
|
|
prettier@3.6.2:
|
|
resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
|
|
engines: {node: '>=14'}
|
|
hasBin: true
|
|
|
|
react-dom@18.3.1:
|
|
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
|
|
peerDependencies:
|
|
react: ^18.3.1
|
|
|
|
react-i18next@16.0.0:
|
|
resolution: {integrity: sha512-JQ+dFfLnFSKJQt7W01lJHWRC0SX7eDPobI+MSTJ3/gP39xH2g33AuTE7iddAfXYHamJdAeMGM0VFboPaD3G68Q==}
|
|
peerDependencies:
|
|
i18next: '>= 25.5.2'
|
|
react: '>= 16.8.0'
|
|
react-dom: '*'
|
|
react-native: '*'
|
|
typescript: ^5
|
|
peerDependenciesMeta:
|
|
react-dom:
|
|
optional: true
|
|
react-native:
|
|
optional: true
|
|
typescript:
|
|
optional: true
|
|
|
|
react-refresh@0.17.0:
|
|
resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
react@18.3.1:
|
|
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
rollup@4.46.2:
|
|
resolution: {integrity: sha512-WMmLFI+Boh6xbop+OAGo9cQ3OgX9MIg7xOQjn+pTCwOkk+FNDAeAemXkJ3HzDJrVXleLOFVa1ipuc1AmEx1Dwg==}
|
|
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
hasBin: true
|
|
|
|
scheduler@0.23.2:
|
|
resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
|
|
|
|
semver@6.3.1:
|
|
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
|
hasBin: true
|
|
|
|
smol-toml@1.4.2:
|
|
resolution: {integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==}
|
|
engines: {node: '>= 18'}
|
|
|
|
source-map-js@1.2.1:
|
|
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
style-mod@4.1.2:
|
|
resolution: {integrity: sha512-wnD1HyVqpJUI2+eKZ+eo1UwghftP6yuFheBqqe+bWCotBjC2K1YnteJILRMs3SM4V/0dLEW1SC27MWP5y+mwmw==}
|
|
|
|
tailwindcss@4.1.13:
|
|
resolution: {integrity: sha512-i+zidfmTqtwquj4hMEwdjshYYgMbOrPzb9a0M3ZgNa0JMoZeFC6bxZvO8yr8ozS6ix2SDz0+mvryPeBs2TFE+w==}
|
|
|
|
tapable@2.2.3:
|
|
resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==}
|
|
engines: {node: '>=6'}
|
|
|
|
tar@7.4.3:
|
|
resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
|
|
engines: {node: '>=18'}
|
|
|
|
typescript@5.9.2:
|
|
resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
|
|
engines: {node: '>=14.17'}
|
|
hasBin: true
|
|
|
|
undici-types@6.21.0:
|
|
resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
|
|
|
|
update-browserslist-db@1.1.3:
|
|
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
|
|
hasBin: true
|
|
peerDependencies:
|
|
browserslist: '>= 4.21.0'
|
|
|
|
vite@5.4.19:
|
|
resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==}
|
|
engines: {node: ^18.0.0 || >=20.0.0}
|
|
hasBin: true
|
|
peerDependencies:
|
|
'@types/node': ^18.0.0 || >=20.0.0
|
|
less: '*'
|
|
lightningcss: ^1.21.0
|
|
sass: '*'
|
|
sass-embedded: '*'
|
|
stylus: '*'
|
|
sugarss: '*'
|
|
terser: ^5.4.0
|
|
peerDependenciesMeta:
|
|
'@types/node':
|
|
optional: true
|
|
less:
|
|
optional: true
|
|
lightningcss:
|
|
optional: true
|
|
sass:
|
|
optional: true
|
|
sass-embedded:
|
|
optional: true
|
|
stylus:
|
|
optional: true
|
|
sugarss:
|
|
optional: true
|
|
terser:
|
|
optional: true
|
|
|
|
void-elements@3.1.0:
|
|
resolution: {integrity: sha512-Dhxzh5HZuiHQhbvTW9AMetFfBHDMYpo23Uo9btPXgdYP+3T5S+p+jgNy7spra+veYhBP2dCSgxR/i2Y02h5/6w==}
|
|
engines: {node: '>=0.10.0'}
|
|
|
|
w3c-keyname@2.2.8:
|
|
resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==}
|
|
|
|
yallist@3.1.1:
|
|
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
|
|
|
yallist@5.0.0:
|
|
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
|
|
engines: {node: '>=18'}
|
|
|
|
snapshots:
|
|
|
|
'@ampproject/remapping@2.3.0':
|
|
dependencies:
|
|
'@jridgewell/gen-mapping': 0.3.12
|
|
'@jridgewell/trace-mapping': 0.3.29
|
|
|
|
'@babel/code-frame@7.27.1':
|
|
dependencies:
|
|
'@babel/helper-validator-identifier': 7.27.1
|
|
js-tokens: 4.0.0
|
|
picocolors: 1.1.1
|
|
|
|
'@babel/compat-data@7.28.0': {}
|
|
|
|
'@babel/core@7.28.0':
|
|
dependencies:
|
|
'@ampproject/remapping': 2.3.0
|
|
'@babel/code-frame': 7.27.1
|
|
'@babel/generator': 7.28.0
|
|
'@babel/helper-compilation-targets': 7.27.2
|
|
'@babel/helper-module-transforms': 7.27.3(@babel/core@7.28.0)
|
|
'@babel/helpers': 7.28.2
|
|
'@babel/parser': 7.28.0
|
|
'@babel/template': 7.27.2
|
|
'@babel/traverse': 7.28.0
|
|
'@babel/types': 7.28.2
|
|
convert-source-map: 2.0.0
|
|
debug: 4.4.1
|
|
gensync: 1.0.0-beta.2
|
|
json5: 2.2.3
|
|
semver: 6.3.1
|
|
transitivePeerDependencies:
|
|
- supports-color
|
|
|
|
'@babel/generator@7.28.0':
|
|
dependencies:
|
|
'@babel/parser': 7.28.0
|
|
'@babel/types': 7.28.2
|
|
'@jridgewell/gen-mapping': 0.3.12
|
|
'@jridgewell/trace-mapping': 0.3.29
|
|
jsesc: 3.1.0
|
|
|
|
'@babel/helper-compilation-targets@7.27.2':
|
|
dependencies:
|
|
'@babel/compat-data': 7.28.0
|
|
'@babel/helper-validator-option': 7.27.1
|
|
browserslist: 4.25.1
|
|
lru-cache: 5.1.1
|
|
semver: 6.3.1
|
|
|
|
'@babel/helper-globals@7.28.0': {}
|
|
|
|
'@babel/helper-module-imports@7.27.1':
|
|
dependencies:
|
|
'@babel/traverse': 7.28.0
|
|
'@babel/types': 7.28.2
|
|
transitivePeerDependencies:
|
|
- supports-color
|
|
|
|
'@babel/helper-module-transforms@7.27.3(@babel/core@7.28.0)':
|
|
dependencies:
|
|
'@babel/core': 7.28.0
|
|
'@babel/helper-module-imports': 7.27.1
|
|
'@babel/helper-validator-identifier': 7.27.1
|
|
'@babel/traverse': 7.28.0
|
|
transitivePeerDependencies:
|
|
- supports-color
|
|
|
|
'@babel/helper-plugin-utils@7.27.1': {}
|
|
|
|
'@babel/helper-string-parser@7.27.1': {}
|
|
|
|
'@babel/helper-validator-identifier@7.27.1': {}
|
|
|
|
'@babel/helper-validator-option@7.27.1': {}
|
|
|
|
'@babel/helpers@7.28.2':
|
|
dependencies:
|
|
'@babel/template': 7.27.2
|
|
'@babel/types': 7.28.2
|
|
|
|
'@babel/parser@7.28.0':
|
|
dependencies:
|
|
'@babel/types': 7.28.2
|
|
|
|
'@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.0)':
|
|
dependencies:
|
|
'@babel/core': 7.28.0
|
|
'@babel/helper-plugin-utils': 7.27.1
|
|
|
|
'@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.0)':
|
|
dependencies:
|
|
'@babel/core': 7.28.0
|
|
'@babel/helper-plugin-utils': 7.27.1
|
|
|
|
'@babel/runtime@7.28.4': {}
|
|
|
|
'@babel/template@7.27.2':
|
|
dependencies:
|
|
'@babel/code-frame': 7.27.1
|
|
'@babel/parser': 7.28.0
|
|
'@babel/types': 7.28.2
|
|
|
|
'@babel/traverse@7.28.0':
|
|
dependencies:
|
|
'@babel/code-frame': 7.27.1
|
|
'@babel/generator': 7.28.0
|
|
'@babel/helper-globals': 7.28.0
|
|
'@babel/parser': 7.28.0
|
|
'@babel/template': 7.27.2
|
|
'@babel/types': 7.28.2
|
|
debug: 4.4.1
|
|
transitivePeerDependencies:
|
|
- supports-color
|
|
|
|
'@babel/types@7.28.2':
|
|
dependencies:
|
|
'@babel/helper-string-parser': 7.27.1
|
|
'@babel/helper-validator-identifier': 7.27.1
|
|
|
|
'@codemirror/autocomplete@6.18.7':
|
|
dependencies:
|
|
'@codemirror/language': 6.11.3
|
|
'@codemirror/state': 6.5.2
|
|
'@codemirror/view': 6.38.2
|
|
'@lezer/common': 1.2.3
|
|
|
|
'@codemirror/commands@6.8.1':
|
|
dependencies:
|
|
'@codemirror/language': 6.11.3
|
|
'@codemirror/state': 6.5.2
|
|
'@codemirror/view': 6.38.2
|
|
'@lezer/common': 1.2.3
|
|
|
|
'@codemirror/lang-javascript@6.2.4':
|
|
dependencies:
|
|
'@codemirror/autocomplete': 6.18.7
|
|
'@codemirror/language': 6.11.3
|
|
'@codemirror/lint': 6.8.5
|
|
'@codemirror/state': 6.5.2
|
|
'@codemirror/view': 6.38.2
|
|
'@lezer/common': 1.2.3
|
|
'@lezer/javascript': 1.5.4
|
|
|
|
'@codemirror/lang-json@6.0.2':
|
|
dependencies:
|
|
'@codemirror/language': 6.11.3
|
|
'@lezer/json': 1.0.3
|
|
|
|
'@codemirror/language@6.11.3':
|
|
dependencies:
|
|
'@codemirror/state': 6.5.2
|
|
'@codemirror/view': 6.38.2
|
|
'@lezer/common': 1.2.3
|
|
'@lezer/highlight': 1.2.1
|
|
'@lezer/lr': 1.4.2
|
|
style-mod: 4.1.2
|
|
|
|
'@codemirror/lint@6.8.5':
|
|
dependencies:
|
|
'@codemirror/state': 6.5.2
|
|
'@codemirror/view': 6.38.2
|
|
crelt: 1.0.6
|
|
|
|
'@codemirror/search@6.5.11':
|
|
dependencies:
|
|
'@codemirror/state': 6.5.2
|
|
'@codemirror/view': 6.38.2
|
|
crelt: 1.0.6
|
|
|
|
'@codemirror/state@6.5.2':
|
|
dependencies:
|
|
'@marijn/find-cluster-break': 1.0.2
|
|
|
|
'@codemirror/theme-one-dark@6.1.3':
|
|
dependencies:
|
|
'@codemirror/language': 6.11.3
|
|
'@codemirror/state': 6.5.2
|
|
'@codemirror/view': 6.38.2
|
|
'@lezer/highlight': 1.2.1
|
|
|
|
'@codemirror/view@6.38.2':
|
|
dependencies:
|
|
'@codemirror/state': 6.5.2
|
|
crelt: 1.0.6
|
|
style-mod: 4.1.2
|
|
w3c-keyname: 2.2.8
|
|
|
|
'@esbuild/aix-ppc64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/android-arm64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/android-arm@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/android-x64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/darwin-arm64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/darwin-x64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/freebsd-arm64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/freebsd-x64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-arm64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-arm@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-ia32@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-loong64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-mips64el@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-ppc64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-riscv64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-s390x@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/linux-x64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/netbsd-x64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/openbsd-x64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/sunos-x64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/win32-arm64@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/win32-ia32@0.21.5':
|
|
optional: true
|
|
|
|
'@esbuild/win32-x64@0.21.5':
|
|
optional: true
|
|
|
|
'@isaacs/fs-minipass@4.0.1':
|
|
dependencies:
|
|
minipass: 7.1.2
|
|
|
|
'@jridgewell/gen-mapping@0.3.12':
|
|
dependencies:
|
|
'@jridgewell/sourcemap-codec': 1.5.4
|
|
'@jridgewell/trace-mapping': 0.3.29
|
|
|
|
'@jridgewell/remapping@2.3.5':
|
|
dependencies:
|
|
'@jridgewell/gen-mapping': 0.3.12
|
|
'@jridgewell/trace-mapping': 0.3.29
|
|
|
|
'@jridgewell/resolve-uri@3.1.2': {}
|
|
|
|
'@jridgewell/sourcemap-codec@1.5.4': {}
|
|
|
|
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
|
|
'@jridgewell/trace-mapping@0.3.29':
|
|
dependencies:
|
|
'@jridgewell/resolve-uri': 3.1.2
|
|
'@jridgewell/sourcemap-codec': 1.5.4
|
|
|
|
'@lezer/common@1.2.3': {}
|
|
|
|
'@lezer/highlight@1.2.1':
|
|
dependencies:
|
|
'@lezer/common': 1.2.3
|
|
|
|
'@lezer/javascript@1.5.4':
|
|
dependencies:
|
|
'@lezer/common': 1.2.3
|
|
'@lezer/highlight': 1.2.1
|
|
'@lezer/lr': 1.4.2
|
|
|
|
'@lezer/json@1.0.3':
|
|
dependencies:
|
|
'@lezer/common': 1.2.3
|
|
'@lezer/highlight': 1.2.1
|
|
'@lezer/lr': 1.4.2
|
|
|
|
'@lezer/lr@1.4.2':
|
|
dependencies:
|
|
'@lezer/common': 1.2.3
|
|
|
|
'@marijn/find-cluster-break@1.0.2': {}
|
|
|
|
'@rolldown/pluginutils@1.0.0-beta.27': {}
|
|
|
|
'@rollup/rollup-android-arm-eabi@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-android-arm64@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-darwin-arm64@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-darwin-x64@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-freebsd-arm64@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-freebsd-x64@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-arm-gnueabihf@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-arm-musleabihf@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-arm64-gnu@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-arm64-musl@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-loongarch64-gnu@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-ppc64-gnu@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-riscv64-gnu@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-riscv64-musl@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-s390x-gnu@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-x64-gnu@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-linux-x64-musl@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-win32-arm64-msvc@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-win32-ia32-msvc@4.46.2':
|
|
optional: true
|
|
|
|
'@rollup/rollup-win32-x64-msvc@4.46.2':
|
|
optional: true
|
|
|
|
'@tailwindcss/node@4.1.13':
|
|
dependencies:
|
|
'@jridgewell/remapping': 2.3.5
|
|
enhanced-resolve: 5.18.3
|
|
jiti: 2.5.1
|
|
lightningcss: 1.30.1
|
|
magic-string: 0.30.18
|
|
source-map-js: 1.2.1
|
|
tailwindcss: 4.1.13
|
|
|
|
'@tailwindcss/oxide-android-arm64@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-darwin-arm64@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-darwin-x64@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-freebsd-x64@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-linux-arm64-gnu@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-linux-arm64-musl@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-linux-x64-gnu@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-linux-x64-musl@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-wasm32-wasi@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-win32-arm64-msvc@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide-win32-x64-msvc@4.1.13':
|
|
optional: true
|
|
|
|
'@tailwindcss/oxide@4.1.13':
|
|
dependencies:
|
|
detect-libc: 2.0.4
|
|
tar: 7.4.3
|
|
optionalDependencies:
|
|
'@tailwindcss/oxide-android-arm64': 4.1.13
|
|
'@tailwindcss/oxide-darwin-arm64': 4.1.13
|
|
'@tailwindcss/oxide-darwin-x64': 4.1.13
|
|
'@tailwindcss/oxide-freebsd-x64': 4.1.13
|
|
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.13
|
|
'@tailwindcss/oxide-linux-arm64-gnu': 4.1.13
|
|
'@tailwindcss/oxide-linux-arm64-musl': 4.1.13
|
|
'@tailwindcss/oxide-linux-x64-gnu': 4.1.13
|
|
'@tailwindcss/oxide-linux-x64-musl': 4.1.13
|
|
'@tailwindcss/oxide-wasm32-wasi': 4.1.13
|
|
'@tailwindcss/oxide-win32-arm64-msvc': 4.1.13
|
|
'@tailwindcss/oxide-win32-x64-msvc': 4.1.13
|
|
|
|
'@tailwindcss/vite@4.1.13(vite@5.4.19(@types/node@20.19.9)(lightningcss@1.30.1))':
|
|
dependencies:
|
|
'@tailwindcss/node': 4.1.13
|
|
'@tailwindcss/oxide': 4.1.13
|
|
tailwindcss: 4.1.13
|
|
vite: 5.4.19(@types/node@20.19.9)(lightningcss@1.30.1)
|
|
|
|
'@tauri-apps/api@2.8.0': {}
|
|
|
|
'@tauri-apps/cli-darwin-arm64@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-darwin-x64@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-linux-arm-gnueabihf@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-linux-arm64-gnu@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-linux-arm64-musl@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-linux-riscv64-gnu@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-linux-x64-gnu@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-linux-x64-musl@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-win32-arm64-msvc@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-win32-ia32-msvc@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli-win32-x64-msvc@2.8.1':
|
|
optional: true
|
|
|
|
'@tauri-apps/cli@2.8.1':
|
|
optionalDependencies:
|
|
'@tauri-apps/cli-darwin-arm64': 2.8.1
|
|
'@tauri-apps/cli-darwin-x64': 2.8.1
|
|
'@tauri-apps/cli-linux-arm-gnueabihf': 2.8.1
|
|
'@tauri-apps/cli-linux-arm64-gnu': 2.8.1
|
|
'@tauri-apps/cli-linux-arm64-musl': 2.8.1
|
|
'@tauri-apps/cli-linux-riscv64-gnu': 2.8.1
|
|
'@tauri-apps/cli-linux-x64-gnu': 2.8.1
|
|
'@tauri-apps/cli-linux-x64-musl': 2.8.1
|
|
'@tauri-apps/cli-win32-arm64-msvc': 2.8.1
|
|
'@tauri-apps/cli-win32-ia32-msvc': 2.8.1
|
|
'@tauri-apps/cli-win32-x64-msvc': 2.8.1
|
|
|
|
'@tauri-apps/plugin-dialog@2.4.0':
|
|
dependencies:
|
|
'@tauri-apps/api': 2.8.0
|
|
|
|
'@tauri-apps/plugin-process@2.3.0':
|
|
dependencies:
|
|
'@tauri-apps/api': 2.8.0
|
|
|
|
'@tauri-apps/plugin-updater@2.9.0':
|
|
dependencies:
|
|
'@tauri-apps/api': 2.8.0
|
|
|
|
'@types/babel__core@7.20.5':
|
|
dependencies:
|
|
'@babel/parser': 7.28.0
|
|
'@babel/types': 7.28.2
|
|
'@types/babel__generator': 7.27.0
|
|
'@types/babel__template': 7.4.4
|
|
'@types/babel__traverse': 7.28.0
|
|
|
|
'@types/babel__generator@7.27.0':
|
|
dependencies:
|
|
'@babel/types': 7.28.2
|
|
|
|
'@types/babel__template@7.4.4':
|
|
dependencies:
|
|
'@babel/parser': 7.28.0
|
|
'@babel/types': 7.28.2
|
|
|
|
'@types/babel__traverse@7.28.0':
|
|
dependencies:
|
|
'@babel/types': 7.28.2
|
|
|
|
'@types/estree@1.0.8': {}
|
|
|
|
'@types/node@20.19.9':
|
|
dependencies:
|
|
undici-types: 6.21.0
|
|
|
|
'@types/prop-types@15.7.15': {}
|
|
|
|
'@types/react-dom@18.3.7(@types/react@18.3.23)':
|
|
dependencies:
|
|
'@types/react': 18.3.23
|
|
|
|
'@types/react@18.3.23':
|
|
dependencies:
|
|
'@types/prop-types': 15.7.15
|
|
csstype: 3.1.3
|
|
|
|
'@vitejs/plugin-react@4.7.0(vite@5.4.19(@types/node@20.19.9)(lightningcss@1.30.1))':
|
|
dependencies:
|
|
'@babel/core': 7.28.0
|
|
'@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.0)
|
|
'@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.0)
|
|
'@rolldown/pluginutils': 1.0.0-beta.27
|
|
'@types/babel__core': 7.20.5
|
|
react-refresh: 0.17.0
|
|
vite: 5.4.19(@types/node@20.19.9)(lightningcss@1.30.1)
|
|
transitivePeerDependencies:
|
|
- supports-color
|
|
|
|
browserslist@4.25.1:
|
|
dependencies:
|
|
caniuse-lite: 1.0.30001731
|
|
electron-to-chromium: 1.5.197
|
|
node-releases: 2.0.19
|
|
update-browserslist-db: 1.1.3(browserslist@4.25.1)
|
|
|
|
caniuse-lite@1.0.30001731: {}
|
|
|
|
chownr@3.0.0: {}
|
|
|
|
codemirror@6.0.2:
|
|
dependencies:
|
|
'@codemirror/autocomplete': 6.18.7
|
|
'@codemirror/commands': 6.8.1
|
|
'@codemirror/language': 6.11.3
|
|
'@codemirror/lint': 6.8.5
|
|
'@codemirror/search': 6.5.11
|
|
'@codemirror/state': 6.5.2
|
|
'@codemirror/view': 6.38.2
|
|
|
|
convert-source-map@2.0.0: {}
|
|
|
|
crelt@1.0.6: {}
|
|
|
|
csstype@3.1.3: {}
|
|
|
|
debug@4.4.1:
|
|
dependencies:
|
|
ms: 2.1.3
|
|
|
|
detect-libc@2.0.4: {}
|
|
|
|
electron-to-chromium@1.5.197: {}
|
|
|
|
enhanced-resolve@5.18.3:
|
|
dependencies:
|
|
graceful-fs: 4.2.11
|
|
tapable: 2.2.3
|
|
|
|
esbuild@0.21.5:
|
|
optionalDependencies:
|
|
'@esbuild/aix-ppc64': 0.21.5
|
|
'@esbuild/android-arm': 0.21.5
|
|
'@esbuild/android-arm64': 0.21.5
|
|
'@esbuild/android-x64': 0.21.5
|
|
'@esbuild/darwin-arm64': 0.21.5
|
|
'@esbuild/darwin-x64': 0.21.5
|
|
'@esbuild/freebsd-arm64': 0.21.5
|
|
'@esbuild/freebsd-x64': 0.21.5
|
|
'@esbuild/linux-arm': 0.21.5
|
|
'@esbuild/linux-arm64': 0.21.5
|
|
'@esbuild/linux-ia32': 0.21.5
|
|
'@esbuild/linux-loong64': 0.21.5
|
|
'@esbuild/linux-mips64el': 0.21.5
|
|
'@esbuild/linux-ppc64': 0.21.5
|
|
'@esbuild/linux-riscv64': 0.21.5
|
|
'@esbuild/linux-s390x': 0.21.5
|
|
'@esbuild/linux-x64': 0.21.5
|
|
'@esbuild/netbsd-x64': 0.21.5
|
|
'@esbuild/openbsd-x64': 0.21.5
|
|
'@esbuild/sunos-x64': 0.21.5
|
|
'@esbuild/win32-arm64': 0.21.5
|
|
'@esbuild/win32-ia32': 0.21.5
|
|
'@esbuild/win32-x64': 0.21.5
|
|
|
|
escalade@3.2.0: {}
|
|
|
|
fsevents@2.3.3:
|
|
optional: true
|
|
|
|
gensync@1.0.0-beta.2: {}
|
|
|
|
graceful-fs@4.2.11: {}
|
|
|
|
html-parse-stringify@3.0.1:
|
|
dependencies:
|
|
void-elements: 3.1.0
|
|
|
|
i18next@25.5.2(typescript@5.9.2):
|
|
dependencies:
|
|
'@babel/runtime': 7.28.4
|
|
optionalDependencies:
|
|
typescript: 5.9.2
|
|
|
|
jiti@2.5.1: {}
|
|
|
|
js-tokens@4.0.0: {}
|
|
|
|
jsesc@3.1.0: {}
|
|
|
|
json5@2.2.3: {}
|
|
|
|
jsonc-parser@3.3.1: {}
|
|
|
|
lightningcss-darwin-arm64@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-darwin-x64@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-freebsd-x64@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-linux-arm-gnueabihf@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-linux-arm64-gnu@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-linux-arm64-musl@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-linux-x64-gnu@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-linux-x64-musl@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-win32-arm64-msvc@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss-win32-x64-msvc@1.30.1:
|
|
optional: true
|
|
|
|
lightningcss@1.30.1:
|
|
dependencies:
|
|
detect-libc: 2.0.4
|
|
optionalDependencies:
|
|
lightningcss-darwin-arm64: 1.30.1
|
|
lightningcss-darwin-x64: 1.30.1
|
|
lightningcss-freebsd-x64: 1.30.1
|
|
lightningcss-linux-arm-gnueabihf: 1.30.1
|
|
lightningcss-linux-arm64-gnu: 1.30.1
|
|
lightningcss-linux-arm64-musl: 1.30.1
|
|
lightningcss-linux-x64-gnu: 1.30.1
|
|
lightningcss-linux-x64-musl: 1.30.1
|
|
lightningcss-win32-arm64-msvc: 1.30.1
|
|
lightningcss-win32-x64-msvc: 1.30.1
|
|
|
|
loose-envify@1.4.0:
|
|
dependencies:
|
|
js-tokens: 4.0.0
|
|
|
|
lru-cache@5.1.1:
|
|
dependencies:
|
|
yallist: 3.1.1
|
|
|
|
lucide-react@0.542.0(react@18.3.1):
|
|
dependencies:
|
|
react: 18.3.1
|
|
|
|
magic-string@0.30.18:
|
|
dependencies:
|
|
'@jridgewell/sourcemap-codec': 1.5.5
|
|
|
|
minipass@7.1.2: {}
|
|
|
|
minizlib@3.0.2:
|
|
dependencies:
|
|
minipass: 7.1.2
|
|
|
|
mkdirp@3.0.1: {}
|
|
|
|
ms@2.1.3: {}
|
|
|
|
nanoid@3.3.11: {}
|
|
|
|
node-releases@2.0.19: {}
|
|
|
|
picocolors@1.1.1: {}
|
|
|
|
postcss@8.5.6:
|
|
dependencies:
|
|
nanoid: 3.3.11
|
|
picocolors: 1.1.1
|
|
source-map-js: 1.2.1
|
|
|
|
prettier@3.6.2: {}
|
|
|
|
react-dom@18.3.1(react@18.3.1):
|
|
dependencies:
|
|
loose-envify: 1.4.0
|
|
react: 18.3.1
|
|
scheduler: 0.23.2
|
|
|
|
react-i18next@16.0.0(i18next@25.5.2(typescript@5.9.2))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.9.2):
|
|
dependencies:
|
|
'@babel/runtime': 7.28.4
|
|
html-parse-stringify: 3.0.1
|
|
i18next: 25.5.2(typescript@5.9.2)
|
|
react: 18.3.1
|
|
optionalDependencies:
|
|
react-dom: 18.3.1(react@18.3.1)
|
|
typescript: 5.9.2
|
|
|
|
react-refresh@0.17.0: {}
|
|
|
|
react@18.3.1:
|
|
dependencies:
|
|
loose-envify: 1.4.0
|
|
|
|
rollup@4.46.2:
|
|
dependencies:
|
|
'@types/estree': 1.0.8
|
|
optionalDependencies:
|
|
'@rollup/rollup-android-arm-eabi': 4.46.2
|
|
'@rollup/rollup-android-arm64': 4.46.2
|
|
'@rollup/rollup-darwin-arm64': 4.46.2
|
|
'@rollup/rollup-darwin-x64': 4.46.2
|
|
'@rollup/rollup-freebsd-arm64': 4.46.2
|
|
'@rollup/rollup-freebsd-x64': 4.46.2
|
|
'@rollup/rollup-linux-arm-gnueabihf': 4.46.2
|
|
'@rollup/rollup-linux-arm-musleabihf': 4.46.2
|
|
'@rollup/rollup-linux-arm64-gnu': 4.46.2
|
|
'@rollup/rollup-linux-arm64-musl': 4.46.2
|
|
'@rollup/rollup-linux-loongarch64-gnu': 4.46.2
|
|
'@rollup/rollup-linux-ppc64-gnu': 4.46.2
|
|
'@rollup/rollup-linux-riscv64-gnu': 4.46.2
|
|
'@rollup/rollup-linux-riscv64-musl': 4.46.2
|
|
'@rollup/rollup-linux-s390x-gnu': 4.46.2
|
|
'@rollup/rollup-linux-x64-gnu': 4.46.2
|
|
'@rollup/rollup-linux-x64-musl': 4.46.2
|
|
'@rollup/rollup-win32-arm64-msvc': 4.46.2
|
|
'@rollup/rollup-win32-ia32-msvc': 4.46.2
|
|
'@rollup/rollup-win32-x64-msvc': 4.46.2
|
|
fsevents: 2.3.3
|
|
|
|
scheduler@0.23.2:
|
|
dependencies:
|
|
loose-envify: 1.4.0
|
|
|
|
semver@6.3.1: {}
|
|
|
|
smol-toml@1.4.2: {}
|
|
|
|
source-map-js@1.2.1: {}
|
|
|
|
style-mod@4.1.2: {}
|
|
|
|
tailwindcss@4.1.13: {}
|
|
|
|
tapable@2.2.3: {}
|
|
|
|
tar@7.4.3:
|
|
dependencies:
|
|
'@isaacs/fs-minipass': 4.0.1
|
|
chownr: 3.0.0
|
|
minipass: 7.1.2
|
|
minizlib: 3.0.2
|
|
mkdirp: 3.0.1
|
|
yallist: 5.0.0
|
|
|
|
typescript@5.9.2: {}
|
|
|
|
undici-types@6.21.0: {}
|
|
|
|
update-browserslist-db@1.1.3(browserslist@4.25.1):
|
|
dependencies:
|
|
browserslist: 4.25.1
|
|
escalade: 3.2.0
|
|
picocolors: 1.1.1
|
|
|
|
vite@5.4.19(@types/node@20.19.9)(lightningcss@1.30.1):
|
|
dependencies:
|
|
esbuild: 0.21.5
|
|
postcss: 8.5.6
|
|
rollup: 4.46.2
|
|
optionalDependencies:
|
|
'@types/node': 20.19.9
|
|
fsevents: 2.3.3
|
|
lightningcss: 1.30.1
|
|
|
|
void-elements@3.1.0: {}
|
|
|
|
w3c-keyname@2.2.8: {}
|
|
|
|
yallist@3.1.1: {}
|
|
|
|
yallist@5.0.0: {}
|