@totaland/create-starter-kit 1.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +130 -18
- package/bin/index.js +109 -21
- package/package.json +2 -2
- package/templates/backend/.github/agents/ /360/237/216/255 planner.agent.md" +92 -0
- package/templates/backend/.github/agents/api-architect.agent.md +41 -0
- package/templates/backend/.github/agents/code-reviewer.agent.md +26 -0
- package/templates/backend/.github/agents/code-simplifier.agent.md +41 -0
- package/templates/backend/.github/agents/code-skeptic.agent.md +74 -0
- package/templates/backend/.github/agents/docs-specialist.agent.md +25 -0
- package/templates/backend/.github/agents/implementation-plan.agent.md +160 -0
- package/templates/backend/.github/agents/janitor.agent.md +90 -0
- package/templates/backend/.github/agents/ms-sql-dba.agent.md +25 -0
- package/templates/backend/.github/agents/plan.agent.md +115 -0
- package/templates/backend/.github/agents/planner.agent.md +15 -0
- package/templates/backend/.github/agents/playwright-tester.agent.md +13 -0
- package/templates/backend/.github/agents/postgresql-dba.agent.md +18 -0
- package/templates/backend/.github/agents/prd.agent.md +202 -0
- package/templates/backend/.github/agents/research-technical-spike.agent.md +170 -0
- package/templates/backend/.github/agents/software-engineer-agent-v1.agent.md +165 -0
- package/templates/backend/.github/agents/task-planner.agent.md +375 -0
- package/templates/backend/.github/agents/task-researcher.agent.md +255 -0
- package/templates/backend/.github/agents/tdd-green.agent.md +60 -0
- package/templates/backend/.github/agents/tdd-red.agent.md +60 -0
- package/templates/backend/.github/agents/tdd-refactor.agent.md +85 -0
- package/templates/backend/.github/agents/tech-debt-remediation-plan.agent.md +50 -0
- package/templates/backend/.github/agents/typescript-mcp-expert.agent.md +91 -0
- package/templates/backend/.github/agents/ultimate-thinking-beastmode.agent.md +644 -0
- package/templates/backend/.github/agents//360/237/216/255 generator.agent.md" +264 -0
- package/templates/backend/.github/agents//360/237/216/255 healer.agent.md" +44 -0
- package/templates/backend/.github/agents//360/237/216/255 pom.agent.md" +308 -0
- package/templates/backend/.github/instructions/a11y.instructions.md +369 -0
- package/templates/backend/.github/instructions/ms-sql-dba.instructions.md +25 -0
- package/templates/backend/.github/instructions/object-calisthenics.instructions.md +302 -0
- package/templates/backend/.github/instructions/performance-optimization.instructions.md +420 -0
- package/templates/backend/.github/instructions/playwright-python.instructions.md +62 -0
- package/templates/backend/.github/instructions/playwright-typescript.instructions.md +86 -0
- package/templates/backend/.github/instructions/security-and-owasp.instructions.md +51 -0
- package/templates/backend/.github/instructions/self-explanatory-code-commenting.instructions.md +162 -0
- package/templates/backend/.github/instructions/spec-driven-workflow-v1.instructions.md +323 -0
- package/templates/backend/.github/instructions/sql-sp-generation.instructions.md +74 -0
- package/templates/backend/.github/instructions/task-implementation.instructions.md +190 -0
- package/templates/backend/.github/instructions/typescript-mcp-server.instructions.md +228 -0
- package/templates/backend/.github/prompts/ai-prompt-engineering-safety-review.prompt.md +229 -0
- package/templates/backend/.github/prompts/architecture-blueprint-generator.prompt.md +321 -0
- package/templates/backend/.github/prompts/breakdown-epic-arch.prompt.md +65 -0
- package/templates/backend/.github/prompts/breakdown-epic-pm.prompt.md +57 -0
- package/templates/backend/.github/prompts/breakdown-feature-implementation.prompt.md +127 -0
- package/templates/backend/.github/prompts/breakdown-feature-prd.prompt.md +60 -0
- package/templates/backend/.github/prompts/breakdown-plan.prompt.md +508 -0
- package/templates/backend/.github/prompts/copilot-instructions-blueprint-generator.prompt.md +293 -0
- package/templates/backend/.github/prompts/create-agentsmd.prompt.md +248 -0
- package/templates/backend/.github/prompts/create-github-issue-feature-from-specification.prompt.md +27 -0
- package/templates/backend/.github/prompts/create-github-issues-feature-from-implementation-plan.prompt.md +27 -0
- package/templates/backend/.github/prompts/create-github-issues-for-unmet-specification-requirements.prompt.md +35 -0
- package/templates/backend/.github/prompts/create-implementation-plan.prompt.md +156 -0
- package/templates/backend/.github/prompts/create-llms.prompt.md +209 -0
- package/templates/backend/.github/prompts/create-specification.prompt.md +126 -0
- package/templates/backend/.github/prompts/create-technical-spike.prompt.md +230 -0
- package/templates/backend/.github/prompts/csharp-nunit.prompt.md +71 -0
- package/templates/backend/.github/prompts/ef-core.prompt.md +76 -0
- package/templates/backend/.github/prompts/folder-structure-blueprint-generator.prompt.md +404 -0
- package/templates/backend/.github/prompts/gen-specs-as-issues.prompt.md +165 -0
- package/templates/backend/.github/prompts/generate-custom-instructions-from-codebase.prompt.md +239 -0
- package/templates/backend/.github/prompts/java-junit.prompt.md +64 -0
- package/templates/backend/.github/prompts/memory-merger.prompt.md +107 -0
- package/templates/backend/.github/prompts/multi-stage-dockerfile.prompt.md +46 -0
- package/templates/backend/.github/prompts/playwright-automation-fill-in-form.prompt.md +29 -0
- package/templates/backend/.github/prompts/playwright-explore-website.prompt.md +19 -0
- package/templates/backend/.github/prompts/playwright-generate-test.prompt.md +19 -0
- package/templates/backend/.github/prompts/postgresql-code-review.prompt.md +214 -0
- package/templates/backend/.github/prompts/postgresql-optimization.prompt.md +406 -0
- package/templates/backend/.github/prompts/project-workflow-analysis-blueprint-generator.prompt.md +294 -0
- package/templates/backend/.github/prompts/prompt-builder.prompt.md +142 -0
- package/templates/backend/.github/prompts/remember.prompt.md +125 -0
- package/templates/backend/.github/prompts/review-and-refactor.prompt.md +15 -0
- package/templates/backend/.github/prompts/sql-code-review.prompt.md +303 -0
- package/templates/backend/.github/prompts/sql-optimization.prompt.md +298 -0
- package/templates/backend/.github/prompts/suggest-awesome-github-copilot-agents.prompt.md +72 -0
- package/templates/backend/.github/prompts/suggest-awesome-github-copilot-chatmodes.prompt.md +71 -0
- package/templates/backend/.github/prompts/suggest-awesome-github-copilot-collections.prompt.md +149 -0
- package/templates/backend/.github/prompts/suggest-awesome-github-copilot-instructions.prompt.md +88 -0
- package/templates/backend/.github/prompts/suggest-awesome-github-copilot-prompts.prompt.md +71 -0
- package/templates/backend/.github/prompts/technology-stack-blueprint-generator.prompt.md +242 -0
- package/templates/backend/.github/prompts/typescript-mcp-server-generator.prompt.md +90 -0
- package/templates/backend/.github/prompts/update-implementation-plan.prompt.md +157 -0
- package/templates/backend/.github/prompts/update-markdown-file-index.prompt.md +76 -0
- package/templates/backend/Project_Folders_Structure_Blueprint.md +529 -0
- package/templates/backend/README.md +99 -0
- package/templates/backend/biome.json +45 -0
- package/{template → templates/backend}/drizzle.config.ts +1 -1
- package/{template → templates/backend}/package.json +9 -4
- package/templates/backend/pnpm-lock.yaml +4240 -0
- package/templates/backend/src/features/health/health.test.ts +23 -0
- package/{template → templates/backend}/src/features/health/index.ts +1 -0
- package/templates/backend/src/features/health/schemas.ts +29 -0
- package/templates/backend/src/features/orders/controller.ts +18 -0
- package/templates/backend/src/features/orders/index.ts +10 -0
- package/templates/backend/src/features/orders/schemas.ts +62 -0
- package/{template → templates/backend}/src/index.ts +3 -36
- package/templates/backend/src/lib/openapi.ts +25 -0
- package/templates/backend/src/lib/validateRequest.test.ts +84 -0
- package/templates/backend/src/lib/validateRequest.ts +72 -0
- package/{template → templates/backend}/tsconfig.json +2 -2
- package/{template → templates/backend}/vitest.config.ts +8 -1
- package/templates/frontend/.env.example +7 -0
- package/templates/frontend/.github/agents/ /360/237/216/255 planner.agent.md" +92 -0
- package/templates/frontend/.github/agents/api-architect.agent.md +41 -0
- package/templates/frontend/.github/agents/code-reviewer.agent.md +26 -0
- package/templates/frontend/.github/agents/code-simplifier.agent.md +41 -0
- package/templates/frontend/.github/agents/code-skeptic.agent.md +74 -0
- package/templates/frontend/.github/agents/docs-specialist.agent.md +25 -0
- package/templates/frontend/.github/agents/implementation-plan.agent.md +160 -0
- package/templates/frontend/.github/agents/janitor.agent.md +90 -0
- package/templates/frontend/.github/agents/ms-sql-dba.agent.md +25 -0
- package/templates/frontend/.github/agents/plan.agent.md +115 -0
- package/templates/frontend/.github/agents/planner.agent.md +15 -0
- package/templates/frontend/.github/agents/playwright-tester.agent.md +13 -0
- package/templates/frontend/.github/agents/postgresql-dba.agent.md +18 -0
- package/templates/frontend/.github/agents/prd.agent.md +202 -0
- package/templates/frontend/.github/agents/research-technical-spike.agent.md +170 -0
- package/templates/frontend/.github/agents/software-engineer-agent-v1.agent.md +165 -0
- package/templates/frontend/.github/agents/task-planner.agent.md +375 -0
- package/templates/frontend/.github/agents/task-researcher.agent.md +255 -0
- package/templates/frontend/.github/agents/tdd-green.agent.md +60 -0
- package/templates/frontend/.github/agents/tdd-red.agent.md +60 -0
- package/templates/frontend/.github/agents/tdd-refactor.agent.md +85 -0
- package/templates/frontend/.github/agents/tech-debt-remediation-plan.agent.md +50 -0
- package/templates/frontend/.github/agents/typescript-mcp-expert.agent.md +91 -0
- package/templates/frontend/.github/agents/ultimate-thinking-beastmode.agent.md +644 -0
- package/templates/frontend/.github/agents//360/237/216/255 generator.agent.md" +264 -0
- package/templates/frontend/.github/agents//360/237/216/255 healer.agent.md" +44 -0
- package/templates/frontend/.github/agents//360/237/216/255 pom.agent.md" +308 -0
- package/templates/frontend/.github/instructions/a11y.instructions.md +369 -0
- package/templates/frontend/.github/instructions/ms-sql-dba.instructions.md +25 -0
- package/templates/frontend/.github/instructions/object-calisthenics.instructions.md +302 -0
- package/templates/frontend/.github/instructions/performance-optimization.instructions.md +420 -0
- package/templates/frontend/.github/instructions/playwright-python.instructions.md +62 -0
- package/templates/frontend/.github/instructions/playwright-typescript.instructions.md +86 -0
- package/templates/frontend/.github/instructions/security-and-owasp.instructions.md +51 -0
- package/templates/frontend/.github/instructions/self-explanatory-code-commenting.instructions.md +162 -0
- package/templates/frontend/.github/instructions/spec-driven-workflow-v1.instructions.md +323 -0
- package/templates/frontend/.github/instructions/sql-sp-generation.instructions.md +74 -0
- package/templates/frontend/.github/instructions/task-implementation.instructions.md +190 -0
- package/templates/frontend/.github/instructions/typescript-mcp-server.instructions.md +228 -0
- package/templates/frontend/.github/prompts/ai-prompt-engineering-safety-review.prompt.md +229 -0
- package/templates/frontend/.github/prompts/architecture-blueprint-generator.prompt.md +321 -0
- package/templates/frontend/.github/prompts/breakdown-epic-arch.prompt.md +65 -0
- package/templates/frontend/.github/prompts/breakdown-epic-pm.prompt.md +57 -0
- package/templates/frontend/.github/prompts/breakdown-feature-implementation.prompt.md +127 -0
- package/templates/frontend/.github/prompts/breakdown-feature-prd.prompt.md +60 -0
- package/templates/frontend/.github/prompts/breakdown-plan.prompt.md +508 -0
- package/templates/frontend/.github/prompts/copilot-instructions-blueprint-generator.prompt.md +293 -0
- package/templates/frontend/.github/prompts/create-agentsmd.prompt.md +248 -0
- package/templates/frontend/.github/prompts/create-github-issue-feature-from-specification.prompt.md +27 -0
- package/templates/frontend/.github/prompts/create-github-issues-feature-from-implementation-plan.prompt.md +27 -0
- package/templates/frontend/.github/prompts/create-github-issues-for-unmet-specification-requirements.prompt.md +35 -0
- package/templates/frontend/.github/prompts/create-implementation-plan.prompt.md +156 -0
- package/templates/frontend/.github/prompts/create-llms.prompt.md +209 -0
- package/templates/frontend/.github/prompts/create-specification.prompt.md +126 -0
- package/templates/frontend/.github/prompts/create-technical-spike.prompt.md +230 -0
- package/templates/frontend/.github/prompts/csharp-nunit.prompt.md +71 -0
- package/templates/frontend/.github/prompts/ef-core.prompt.md +76 -0
- package/templates/frontend/.github/prompts/folder-structure-blueprint-generator.prompt.md +404 -0
- package/templates/frontend/.github/prompts/gen-specs-as-issues.prompt.md +165 -0
- package/templates/frontend/.github/prompts/generate-custom-instructions-from-codebase.prompt.md +239 -0
- package/templates/frontend/.github/prompts/java-junit.prompt.md +64 -0
- package/templates/frontend/.github/prompts/memory-merger.prompt.md +107 -0
- package/templates/frontend/.github/prompts/multi-stage-dockerfile.prompt.md +46 -0
- package/templates/frontend/.github/prompts/playwright-automation-fill-in-form.prompt.md +29 -0
- package/templates/frontend/.github/prompts/playwright-explore-website.prompt.md +19 -0
- package/templates/frontend/.github/prompts/playwright-generate-test.prompt.md +19 -0
- package/templates/frontend/.github/prompts/postgresql-code-review.prompt.md +214 -0
- package/templates/frontend/.github/prompts/postgresql-optimization.prompt.md +406 -0
- package/templates/frontend/.github/prompts/project-workflow-analysis-blueprint-generator.prompt.md +294 -0
- package/templates/frontend/.github/prompts/prompt-builder.prompt.md +142 -0
- package/templates/frontend/.github/prompts/remember.prompt.md +125 -0
- package/templates/frontend/.github/prompts/review-and-refactor.prompt.md +15 -0
- package/templates/frontend/.github/prompts/sql-code-review.prompt.md +303 -0
- package/templates/frontend/.github/prompts/sql-optimization.prompt.md +298 -0
- package/templates/frontend/.github/prompts/suggest-awesome-github-copilot-agents.prompt.md +72 -0
- package/templates/frontend/.github/prompts/suggest-awesome-github-copilot-chatmodes.prompt.md +71 -0
- package/templates/frontend/.github/prompts/suggest-awesome-github-copilot-collections.prompt.md +149 -0
- package/templates/frontend/.github/prompts/suggest-awesome-github-copilot-instructions.prompt.md +88 -0
- package/templates/frontend/.github/prompts/suggest-awesome-github-copilot-prompts.prompt.md +71 -0
- package/templates/frontend/.github/prompts/technology-stack-blueprint-generator.prompt.md +242 -0
- package/templates/frontend/.github/prompts/typescript-mcp-server-generator.prompt.md +90 -0
- package/templates/frontend/.github/prompts/update-implementation-plan.prompt.md +157 -0
- package/templates/frontend/.github/prompts/update-markdown-file-index.prompt.md +76 -0
- package/templates/frontend/README.md +199 -0
- package/templates/frontend/biome.json +45 -0
- package/templates/frontend/components.json +22 -0
- package/templates/frontend/index.html +13 -0
- package/templates/frontend/package.json +44 -0
- package/templates/frontend/pnpm-lock.yaml +2011 -0
- package/templates/frontend/postcss.config.js +6 -0
- package/templates/frontend/public/vite.svg +1 -0
- package/templates/frontend/src/App.css +42 -0
- package/templates/frontend/src/App.tsx +17 -0
- package/templates/frontend/src/assets/react.svg +1 -0
- package/templates/frontend/src/components/layout/layout.component.tsx +31 -0
- package/templates/frontend/src/components/menu-toggle-icon.tsx +53 -0
- package/templates/frontend/src/components/ui/button.tsx +57 -0
- package/templates/frontend/src/docs/RECOMMENDED_LIBRARIES.md +226 -0
- package/templates/frontend/src/docs/SETUP_SUMMARY.md +162 -0
- package/templates/frontend/src/hooks/use-scroll.ts +21 -0
- package/templates/frontend/src/index.css +121 -0
- package/templates/frontend/src/lib/api-client.ts +46 -0
- package/templates/frontend/src/lib/utils.ts +6 -0
- package/templates/frontend/src/main.tsx +30 -0
- package/templates/frontend/src/pages/about/about.page.tsx +50 -0
- package/templates/frontend/src/pages/home/home.page.tsx +43 -0
- package/templates/frontend/tailwind.config.js +59 -0
- package/templates/frontend/tsconfig.app.json +41 -0
- package/templates/frontend/tsconfig.json +13 -0
- package/templates/frontend/tsconfig.node.json +26 -0
- package/templates/frontend/vite.config.ts +14 -0
- package/template/.env.example +0 -8
- package/template/AGENTS.md +0 -23
- package/template/ARCHITECTURE.md +0 -53
- package/template/ORDER_SYSTEM.md +0 -93
- package/template/biome.json +0 -3
- package/template/src/features/orders/controller.ts +0 -13
- package/template/src/features/orders/index.ts +0 -7
- /package/{template → templates/backend}/knip.json +0 -0
- /package/{template → templates/backend}/playwright.config.ts +0 -0
- /package/{template → templates/backend}/pnpm-workspace.yaml +0 -0
- /package/{template → templates/backend}/src/features/health/controller.ts +0 -0
- /package/{template → templates/backend}/tsconfig.build.json +0 -0
|
@@ -0,0 +1,2011 @@
|
|
|
1
|
+
lockfileVersion: '9.0'
|
|
2
|
+
|
|
3
|
+
settings:
|
|
4
|
+
autoInstallPeers: true
|
|
5
|
+
excludeLinksFromLockfile: false
|
|
6
|
+
|
|
7
|
+
importers:
|
|
8
|
+
|
|
9
|
+
.:
|
|
10
|
+
dependencies:
|
|
11
|
+
'@radix-ui/react-slot':
|
|
12
|
+
specifier: ^1.2.4
|
|
13
|
+
version: 1.2.4(@types/react@19.2.6)(react@19.2.0)
|
|
14
|
+
'@tailwindcss/vite':
|
|
15
|
+
specifier: ^4.1.17
|
|
16
|
+
version: 4.1.17(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2))
|
|
17
|
+
'@tanstack/react-query':
|
|
18
|
+
specifier: ^5.90.10
|
|
19
|
+
version: 5.90.10(react@19.2.0)
|
|
20
|
+
'@tanstack/react-query-devtools':
|
|
21
|
+
specifier: ^5.90.2
|
|
22
|
+
version: 5.91.0(@tanstack/react-query@5.90.10(react@19.2.0))(react@19.2.0)
|
|
23
|
+
class-variance-authority:
|
|
24
|
+
specifier: ^0.7.1
|
|
25
|
+
version: 0.7.1
|
|
26
|
+
clsx:
|
|
27
|
+
specifier: ^2.1.1
|
|
28
|
+
version: 2.1.1
|
|
29
|
+
drizzle-orm:
|
|
30
|
+
specifier: ^0.44.7
|
|
31
|
+
version: 0.44.7
|
|
32
|
+
lucide-react:
|
|
33
|
+
specifier: ^0.554.0
|
|
34
|
+
version: 0.554.0(react@19.2.0)
|
|
35
|
+
react:
|
|
36
|
+
specifier: ^19.2.0
|
|
37
|
+
version: 19.2.0
|
|
38
|
+
react-dom:
|
|
39
|
+
specifier: ^19.2.0
|
|
40
|
+
version: 19.2.0(react@19.2.0)
|
|
41
|
+
react-router-dom:
|
|
42
|
+
specifier: ^7.9.6
|
|
43
|
+
version: 7.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
|
|
44
|
+
tailwind-merge:
|
|
45
|
+
specifier: ^3.4.0
|
|
46
|
+
version: 3.4.0
|
|
47
|
+
tailwindcss-animate:
|
|
48
|
+
specifier: ^1.0.7
|
|
49
|
+
version: 1.0.7(tailwindcss@4.1.17)
|
|
50
|
+
zod:
|
|
51
|
+
specifier: ^4.1.12
|
|
52
|
+
version: 4.1.13
|
|
53
|
+
devDependencies:
|
|
54
|
+
'@biomejs/biome':
|
|
55
|
+
specifier: 2.3.7
|
|
56
|
+
version: 2.3.7
|
|
57
|
+
'@tailwindcss/postcss':
|
|
58
|
+
specifier: ^4.1.17
|
|
59
|
+
version: 4.1.17
|
|
60
|
+
'@types/node':
|
|
61
|
+
specifier: ^24.10.1
|
|
62
|
+
version: 24.10.1
|
|
63
|
+
'@types/react':
|
|
64
|
+
specifier: ^19.2.6
|
|
65
|
+
version: 19.2.6
|
|
66
|
+
'@types/react-dom':
|
|
67
|
+
specifier: ^19.2.3
|
|
68
|
+
version: 19.2.3(@types/react@19.2.6)
|
|
69
|
+
'@vitejs/plugin-react-swc':
|
|
70
|
+
specifier: ^4.2.2
|
|
71
|
+
version: 4.2.2(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2))
|
|
72
|
+
autoprefixer:
|
|
73
|
+
specifier: ^10.4.22
|
|
74
|
+
version: 10.4.22(postcss@8.5.6)
|
|
75
|
+
drizzle-kit:
|
|
76
|
+
specifier: ^0.31.7
|
|
77
|
+
version: 0.31.7
|
|
78
|
+
postcss:
|
|
79
|
+
specifier: ^8.5.6
|
|
80
|
+
version: 8.5.6
|
|
81
|
+
tailwindcss:
|
|
82
|
+
specifier: ^4.1.17
|
|
83
|
+
version: 4.1.17
|
|
84
|
+
typescript:
|
|
85
|
+
specifier: ~5.9.3
|
|
86
|
+
version: 5.9.3
|
|
87
|
+
vite:
|
|
88
|
+
specifier: ^7.2.4
|
|
89
|
+
version: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)
|
|
90
|
+
|
|
91
|
+
packages:
|
|
92
|
+
|
|
93
|
+
'@alloc/quick-lru@5.2.0':
|
|
94
|
+
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
|
95
|
+
engines: {node: '>=10'}
|
|
96
|
+
|
|
97
|
+
'@biomejs/biome@2.3.7':
|
|
98
|
+
resolution: {integrity: sha512-CTbAS/jNAiUc6rcq94BrTB8z83O9+BsgWj2sBCQg9rD6Wkh2gjfR87usjx0Ncx0zGXP1NKgT7JNglay5Zfs9jw==}
|
|
99
|
+
engines: {node: '>=14.21.3'}
|
|
100
|
+
hasBin: true
|
|
101
|
+
|
|
102
|
+
'@biomejs/cli-darwin-arm64@2.3.7':
|
|
103
|
+
resolution: {integrity: sha512-LirkamEwzIUULhXcf2D5b+NatXKeqhOwilM+5eRkbrnr6daKz9rsBL0kNZ16Hcy4b8RFq22SG4tcLwM+yx/wFA==}
|
|
104
|
+
engines: {node: '>=14.21.3'}
|
|
105
|
+
cpu: [arm64]
|
|
106
|
+
os: [darwin]
|
|
107
|
+
|
|
108
|
+
'@biomejs/cli-darwin-x64@2.3.7':
|
|
109
|
+
resolution: {integrity: sha512-Q4TO633kvrMQkKIV7wmf8HXwF0dhdTD9S458LGE24TYgBjSRbuhvio4D5eOQzirEYg6eqxfs53ga/rbdd8nBKg==}
|
|
110
|
+
engines: {node: '>=14.21.3'}
|
|
111
|
+
cpu: [x64]
|
|
112
|
+
os: [darwin]
|
|
113
|
+
|
|
114
|
+
'@biomejs/cli-linux-arm64-musl@2.3.7':
|
|
115
|
+
resolution: {integrity: sha512-/afy8lto4CB8scWfMdt+NoCZtatBUF62Tk3ilWH2w8ENd5spLhM77zKlFZEvsKJv9AFNHknMl03zO67CiklL2Q==}
|
|
116
|
+
engines: {node: '>=14.21.3'}
|
|
117
|
+
cpu: [arm64]
|
|
118
|
+
os: [linux]
|
|
119
|
+
|
|
120
|
+
'@biomejs/cli-linux-arm64@2.3.7':
|
|
121
|
+
resolution: {integrity: sha512-inHOTdlstUBzgjDcx0ge71U4SVTbwAljmkfi3MC5WzsYCRhancqfeL+sa4Ke6v2ND53WIwCFD5hGsYExoI3EZQ==}
|
|
122
|
+
engines: {node: '>=14.21.3'}
|
|
123
|
+
cpu: [arm64]
|
|
124
|
+
os: [linux]
|
|
125
|
+
|
|
126
|
+
'@biomejs/cli-linux-x64-musl@2.3.7':
|
|
127
|
+
resolution: {integrity: sha512-CQUtgH1tIN6e5wiYSJqzSwJumHYolNtaj1dwZGCnZXm2PZU1jOJof9TsyiP3bXNDb+VOR7oo7ZvY01If0W3iFQ==}
|
|
128
|
+
engines: {node: '>=14.21.3'}
|
|
129
|
+
cpu: [x64]
|
|
130
|
+
os: [linux]
|
|
131
|
+
|
|
132
|
+
'@biomejs/cli-linux-x64@2.3.7':
|
|
133
|
+
resolution: {integrity: sha512-fJMc3ZEuo/NaMYo5rvoWjdSS5/uVSW+HPRQujucpZqm2ZCq71b8MKJ9U4th9yrv2L5+5NjPF0nqqILCl8HY/fg==}
|
|
134
|
+
engines: {node: '>=14.21.3'}
|
|
135
|
+
cpu: [x64]
|
|
136
|
+
os: [linux]
|
|
137
|
+
|
|
138
|
+
'@biomejs/cli-win32-arm64@2.3.7':
|
|
139
|
+
resolution: {integrity: sha512-aJAE8eCNyRpcfx2JJAtsPtISnELJ0H4xVVSwnxm13bzI8RwbXMyVtxy2r5DV1xT3WiSP+7LxORcApWw0LM8HiA==}
|
|
140
|
+
engines: {node: '>=14.21.3'}
|
|
141
|
+
cpu: [arm64]
|
|
142
|
+
os: [win32]
|
|
143
|
+
|
|
144
|
+
'@biomejs/cli-win32-x64@2.3.7':
|
|
145
|
+
resolution: {integrity: sha512-pulzUshqv9Ed//MiE8MOUeeEkbkSHVDVY5Cz5wVAnH1DUqliCQG3j6s1POaITTFqFfo7AVIx2sWdKpx/GS+Nqw==}
|
|
146
|
+
engines: {node: '>=14.21.3'}
|
|
147
|
+
cpu: [x64]
|
|
148
|
+
os: [win32]
|
|
149
|
+
|
|
150
|
+
'@drizzle-team/brocli@0.10.2':
|
|
151
|
+
resolution: {integrity: sha512-z33Il7l5dKjUgGULTqBsQBQwckHh5AbIuxhdsIxDDiZAzBOrZO6q9ogcWC65kU382AfynTfgNumVcNIjuIua6w==}
|
|
152
|
+
|
|
153
|
+
'@esbuild-kit/core-utils@3.3.2':
|
|
154
|
+
resolution: {integrity: sha512-sPRAnw9CdSsRmEtnsl2WXWdyquogVpB3yZ3dgwJfe8zrOzTsV7cJvmwrKVa+0ma5BoiGJ+BoqkMvawbayKUsqQ==}
|
|
155
|
+
deprecated: 'Merged into tsx: https://tsx.is'
|
|
156
|
+
|
|
157
|
+
'@esbuild-kit/esm-loader@2.6.5':
|
|
158
|
+
resolution: {integrity: sha512-FxEMIkJKnodyA1OaCUoEvbYRkoZlLZ4d/eXFu9Fh8CbBBgP5EmZxrfTRyN0qpXZ4vOvqnE5YdRdcrmUUXuU+dA==}
|
|
159
|
+
deprecated: 'Merged into tsx: https://tsx.is'
|
|
160
|
+
|
|
161
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
162
|
+
resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
|
|
163
|
+
engines: {node: '>=18'}
|
|
164
|
+
cpu: [ppc64]
|
|
165
|
+
os: [aix]
|
|
166
|
+
|
|
167
|
+
'@esbuild/android-arm64@0.18.20':
|
|
168
|
+
resolution: {integrity: sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==}
|
|
169
|
+
engines: {node: '>=12'}
|
|
170
|
+
cpu: [arm64]
|
|
171
|
+
os: [android]
|
|
172
|
+
|
|
173
|
+
'@esbuild/android-arm64@0.25.12':
|
|
174
|
+
resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
|
|
175
|
+
engines: {node: '>=18'}
|
|
176
|
+
cpu: [arm64]
|
|
177
|
+
os: [android]
|
|
178
|
+
|
|
179
|
+
'@esbuild/android-arm@0.18.20':
|
|
180
|
+
resolution: {integrity: sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==}
|
|
181
|
+
engines: {node: '>=12'}
|
|
182
|
+
cpu: [arm]
|
|
183
|
+
os: [android]
|
|
184
|
+
|
|
185
|
+
'@esbuild/android-arm@0.25.12':
|
|
186
|
+
resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
|
|
187
|
+
engines: {node: '>=18'}
|
|
188
|
+
cpu: [arm]
|
|
189
|
+
os: [android]
|
|
190
|
+
|
|
191
|
+
'@esbuild/android-x64@0.18.20':
|
|
192
|
+
resolution: {integrity: sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==}
|
|
193
|
+
engines: {node: '>=12'}
|
|
194
|
+
cpu: [x64]
|
|
195
|
+
os: [android]
|
|
196
|
+
|
|
197
|
+
'@esbuild/android-x64@0.25.12':
|
|
198
|
+
resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
|
|
199
|
+
engines: {node: '>=18'}
|
|
200
|
+
cpu: [x64]
|
|
201
|
+
os: [android]
|
|
202
|
+
|
|
203
|
+
'@esbuild/darwin-arm64@0.18.20':
|
|
204
|
+
resolution: {integrity: sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==}
|
|
205
|
+
engines: {node: '>=12'}
|
|
206
|
+
cpu: [arm64]
|
|
207
|
+
os: [darwin]
|
|
208
|
+
|
|
209
|
+
'@esbuild/darwin-arm64@0.25.12':
|
|
210
|
+
resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
|
|
211
|
+
engines: {node: '>=18'}
|
|
212
|
+
cpu: [arm64]
|
|
213
|
+
os: [darwin]
|
|
214
|
+
|
|
215
|
+
'@esbuild/darwin-x64@0.18.20':
|
|
216
|
+
resolution: {integrity: sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==}
|
|
217
|
+
engines: {node: '>=12'}
|
|
218
|
+
cpu: [x64]
|
|
219
|
+
os: [darwin]
|
|
220
|
+
|
|
221
|
+
'@esbuild/darwin-x64@0.25.12':
|
|
222
|
+
resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
|
|
223
|
+
engines: {node: '>=18'}
|
|
224
|
+
cpu: [x64]
|
|
225
|
+
os: [darwin]
|
|
226
|
+
|
|
227
|
+
'@esbuild/freebsd-arm64@0.18.20':
|
|
228
|
+
resolution: {integrity: sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==}
|
|
229
|
+
engines: {node: '>=12'}
|
|
230
|
+
cpu: [arm64]
|
|
231
|
+
os: [freebsd]
|
|
232
|
+
|
|
233
|
+
'@esbuild/freebsd-arm64@0.25.12':
|
|
234
|
+
resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
|
|
235
|
+
engines: {node: '>=18'}
|
|
236
|
+
cpu: [arm64]
|
|
237
|
+
os: [freebsd]
|
|
238
|
+
|
|
239
|
+
'@esbuild/freebsd-x64@0.18.20':
|
|
240
|
+
resolution: {integrity: sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==}
|
|
241
|
+
engines: {node: '>=12'}
|
|
242
|
+
cpu: [x64]
|
|
243
|
+
os: [freebsd]
|
|
244
|
+
|
|
245
|
+
'@esbuild/freebsd-x64@0.25.12':
|
|
246
|
+
resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
|
|
247
|
+
engines: {node: '>=18'}
|
|
248
|
+
cpu: [x64]
|
|
249
|
+
os: [freebsd]
|
|
250
|
+
|
|
251
|
+
'@esbuild/linux-arm64@0.18.20':
|
|
252
|
+
resolution: {integrity: sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==}
|
|
253
|
+
engines: {node: '>=12'}
|
|
254
|
+
cpu: [arm64]
|
|
255
|
+
os: [linux]
|
|
256
|
+
|
|
257
|
+
'@esbuild/linux-arm64@0.25.12':
|
|
258
|
+
resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
|
|
259
|
+
engines: {node: '>=18'}
|
|
260
|
+
cpu: [arm64]
|
|
261
|
+
os: [linux]
|
|
262
|
+
|
|
263
|
+
'@esbuild/linux-arm@0.18.20':
|
|
264
|
+
resolution: {integrity: sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==}
|
|
265
|
+
engines: {node: '>=12'}
|
|
266
|
+
cpu: [arm]
|
|
267
|
+
os: [linux]
|
|
268
|
+
|
|
269
|
+
'@esbuild/linux-arm@0.25.12':
|
|
270
|
+
resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
|
|
271
|
+
engines: {node: '>=18'}
|
|
272
|
+
cpu: [arm]
|
|
273
|
+
os: [linux]
|
|
274
|
+
|
|
275
|
+
'@esbuild/linux-ia32@0.18.20':
|
|
276
|
+
resolution: {integrity: sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==}
|
|
277
|
+
engines: {node: '>=12'}
|
|
278
|
+
cpu: [ia32]
|
|
279
|
+
os: [linux]
|
|
280
|
+
|
|
281
|
+
'@esbuild/linux-ia32@0.25.12':
|
|
282
|
+
resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
|
|
283
|
+
engines: {node: '>=18'}
|
|
284
|
+
cpu: [ia32]
|
|
285
|
+
os: [linux]
|
|
286
|
+
|
|
287
|
+
'@esbuild/linux-loong64@0.18.20':
|
|
288
|
+
resolution: {integrity: sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==}
|
|
289
|
+
engines: {node: '>=12'}
|
|
290
|
+
cpu: [loong64]
|
|
291
|
+
os: [linux]
|
|
292
|
+
|
|
293
|
+
'@esbuild/linux-loong64@0.25.12':
|
|
294
|
+
resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
|
|
295
|
+
engines: {node: '>=18'}
|
|
296
|
+
cpu: [loong64]
|
|
297
|
+
os: [linux]
|
|
298
|
+
|
|
299
|
+
'@esbuild/linux-mips64el@0.18.20':
|
|
300
|
+
resolution: {integrity: sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==}
|
|
301
|
+
engines: {node: '>=12'}
|
|
302
|
+
cpu: [mips64el]
|
|
303
|
+
os: [linux]
|
|
304
|
+
|
|
305
|
+
'@esbuild/linux-mips64el@0.25.12':
|
|
306
|
+
resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
|
|
307
|
+
engines: {node: '>=18'}
|
|
308
|
+
cpu: [mips64el]
|
|
309
|
+
os: [linux]
|
|
310
|
+
|
|
311
|
+
'@esbuild/linux-ppc64@0.18.20':
|
|
312
|
+
resolution: {integrity: sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==}
|
|
313
|
+
engines: {node: '>=12'}
|
|
314
|
+
cpu: [ppc64]
|
|
315
|
+
os: [linux]
|
|
316
|
+
|
|
317
|
+
'@esbuild/linux-ppc64@0.25.12':
|
|
318
|
+
resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
|
|
319
|
+
engines: {node: '>=18'}
|
|
320
|
+
cpu: [ppc64]
|
|
321
|
+
os: [linux]
|
|
322
|
+
|
|
323
|
+
'@esbuild/linux-riscv64@0.18.20':
|
|
324
|
+
resolution: {integrity: sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==}
|
|
325
|
+
engines: {node: '>=12'}
|
|
326
|
+
cpu: [riscv64]
|
|
327
|
+
os: [linux]
|
|
328
|
+
|
|
329
|
+
'@esbuild/linux-riscv64@0.25.12':
|
|
330
|
+
resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
|
|
331
|
+
engines: {node: '>=18'}
|
|
332
|
+
cpu: [riscv64]
|
|
333
|
+
os: [linux]
|
|
334
|
+
|
|
335
|
+
'@esbuild/linux-s390x@0.18.20':
|
|
336
|
+
resolution: {integrity: sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==}
|
|
337
|
+
engines: {node: '>=12'}
|
|
338
|
+
cpu: [s390x]
|
|
339
|
+
os: [linux]
|
|
340
|
+
|
|
341
|
+
'@esbuild/linux-s390x@0.25.12':
|
|
342
|
+
resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
|
|
343
|
+
engines: {node: '>=18'}
|
|
344
|
+
cpu: [s390x]
|
|
345
|
+
os: [linux]
|
|
346
|
+
|
|
347
|
+
'@esbuild/linux-x64@0.18.20':
|
|
348
|
+
resolution: {integrity: sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==}
|
|
349
|
+
engines: {node: '>=12'}
|
|
350
|
+
cpu: [x64]
|
|
351
|
+
os: [linux]
|
|
352
|
+
|
|
353
|
+
'@esbuild/linux-x64@0.25.12':
|
|
354
|
+
resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
|
|
355
|
+
engines: {node: '>=18'}
|
|
356
|
+
cpu: [x64]
|
|
357
|
+
os: [linux]
|
|
358
|
+
|
|
359
|
+
'@esbuild/netbsd-arm64@0.25.12':
|
|
360
|
+
resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
|
|
361
|
+
engines: {node: '>=18'}
|
|
362
|
+
cpu: [arm64]
|
|
363
|
+
os: [netbsd]
|
|
364
|
+
|
|
365
|
+
'@esbuild/netbsd-x64@0.18.20':
|
|
366
|
+
resolution: {integrity: sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==}
|
|
367
|
+
engines: {node: '>=12'}
|
|
368
|
+
cpu: [x64]
|
|
369
|
+
os: [netbsd]
|
|
370
|
+
|
|
371
|
+
'@esbuild/netbsd-x64@0.25.12':
|
|
372
|
+
resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
|
|
373
|
+
engines: {node: '>=18'}
|
|
374
|
+
cpu: [x64]
|
|
375
|
+
os: [netbsd]
|
|
376
|
+
|
|
377
|
+
'@esbuild/openbsd-arm64@0.25.12':
|
|
378
|
+
resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
|
|
379
|
+
engines: {node: '>=18'}
|
|
380
|
+
cpu: [arm64]
|
|
381
|
+
os: [openbsd]
|
|
382
|
+
|
|
383
|
+
'@esbuild/openbsd-x64@0.18.20':
|
|
384
|
+
resolution: {integrity: sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==}
|
|
385
|
+
engines: {node: '>=12'}
|
|
386
|
+
cpu: [x64]
|
|
387
|
+
os: [openbsd]
|
|
388
|
+
|
|
389
|
+
'@esbuild/openbsd-x64@0.25.12':
|
|
390
|
+
resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
|
|
391
|
+
engines: {node: '>=18'}
|
|
392
|
+
cpu: [x64]
|
|
393
|
+
os: [openbsd]
|
|
394
|
+
|
|
395
|
+
'@esbuild/openharmony-arm64@0.25.12':
|
|
396
|
+
resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
|
|
397
|
+
engines: {node: '>=18'}
|
|
398
|
+
cpu: [arm64]
|
|
399
|
+
os: [openharmony]
|
|
400
|
+
|
|
401
|
+
'@esbuild/sunos-x64@0.18.20':
|
|
402
|
+
resolution: {integrity: sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==}
|
|
403
|
+
engines: {node: '>=12'}
|
|
404
|
+
cpu: [x64]
|
|
405
|
+
os: [sunos]
|
|
406
|
+
|
|
407
|
+
'@esbuild/sunos-x64@0.25.12':
|
|
408
|
+
resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
|
|
409
|
+
engines: {node: '>=18'}
|
|
410
|
+
cpu: [x64]
|
|
411
|
+
os: [sunos]
|
|
412
|
+
|
|
413
|
+
'@esbuild/win32-arm64@0.18.20':
|
|
414
|
+
resolution: {integrity: sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==}
|
|
415
|
+
engines: {node: '>=12'}
|
|
416
|
+
cpu: [arm64]
|
|
417
|
+
os: [win32]
|
|
418
|
+
|
|
419
|
+
'@esbuild/win32-arm64@0.25.12':
|
|
420
|
+
resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
|
|
421
|
+
engines: {node: '>=18'}
|
|
422
|
+
cpu: [arm64]
|
|
423
|
+
os: [win32]
|
|
424
|
+
|
|
425
|
+
'@esbuild/win32-ia32@0.18.20':
|
|
426
|
+
resolution: {integrity: sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==}
|
|
427
|
+
engines: {node: '>=12'}
|
|
428
|
+
cpu: [ia32]
|
|
429
|
+
os: [win32]
|
|
430
|
+
|
|
431
|
+
'@esbuild/win32-ia32@0.25.12':
|
|
432
|
+
resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
|
|
433
|
+
engines: {node: '>=18'}
|
|
434
|
+
cpu: [ia32]
|
|
435
|
+
os: [win32]
|
|
436
|
+
|
|
437
|
+
'@esbuild/win32-x64@0.18.20':
|
|
438
|
+
resolution: {integrity: sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==}
|
|
439
|
+
engines: {node: '>=12'}
|
|
440
|
+
cpu: [x64]
|
|
441
|
+
os: [win32]
|
|
442
|
+
|
|
443
|
+
'@esbuild/win32-x64@0.25.12':
|
|
444
|
+
resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
|
|
445
|
+
engines: {node: '>=18'}
|
|
446
|
+
cpu: [x64]
|
|
447
|
+
os: [win32]
|
|
448
|
+
|
|
449
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
450
|
+
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
|
|
451
|
+
|
|
452
|
+
'@jridgewell/remapping@2.3.5':
|
|
453
|
+
resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
|
|
454
|
+
|
|
455
|
+
'@jridgewell/resolve-uri@3.1.2':
|
|
456
|
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
|
457
|
+
engines: {node: '>=6.0.0'}
|
|
458
|
+
|
|
459
|
+
'@jridgewell/sourcemap-codec@1.5.5':
|
|
460
|
+
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
|
|
461
|
+
|
|
462
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
463
|
+
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
|
|
464
|
+
|
|
465
|
+
'@radix-ui/react-compose-refs@1.1.2':
|
|
466
|
+
resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
|
|
467
|
+
peerDependencies:
|
|
468
|
+
'@types/react': '*'
|
|
469
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
470
|
+
peerDependenciesMeta:
|
|
471
|
+
'@types/react':
|
|
472
|
+
optional: true
|
|
473
|
+
|
|
474
|
+
'@radix-ui/react-slot@1.2.4':
|
|
475
|
+
resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
|
|
476
|
+
peerDependencies:
|
|
477
|
+
'@types/react': '*'
|
|
478
|
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
|
479
|
+
peerDependenciesMeta:
|
|
480
|
+
'@types/react':
|
|
481
|
+
optional: true
|
|
482
|
+
|
|
483
|
+
'@rolldown/pluginutils@1.0.0-beta.47':
|
|
484
|
+
resolution: {integrity: sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==}
|
|
485
|
+
|
|
486
|
+
'@rollup/rollup-android-arm-eabi@4.53.3':
|
|
487
|
+
resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==}
|
|
488
|
+
cpu: [arm]
|
|
489
|
+
os: [android]
|
|
490
|
+
|
|
491
|
+
'@rollup/rollup-android-arm64@4.53.3':
|
|
492
|
+
resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==}
|
|
493
|
+
cpu: [arm64]
|
|
494
|
+
os: [android]
|
|
495
|
+
|
|
496
|
+
'@rollup/rollup-darwin-arm64@4.53.3':
|
|
497
|
+
resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==}
|
|
498
|
+
cpu: [arm64]
|
|
499
|
+
os: [darwin]
|
|
500
|
+
|
|
501
|
+
'@rollup/rollup-darwin-x64@4.53.3':
|
|
502
|
+
resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==}
|
|
503
|
+
cpu: [x64]
|
|
504
|
+
os: [darwin]
|
|
505
|
+
|
|
506
|
+
'@rollup/rollup-freebsd-arm64@4.53.3':
|
|
507
|
+
resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==}
|
|
508
|
+
cpu: [arm64]
|
|
509
|
+
os: [freebsd]
|
|
510
|
+
|
|
511
|
+
'@rollup/rollup-freebsd-x64@4.53.3':
|
|
512
|
+
resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==}
|
|
513
|
+
cpu: [x64]
|
|
514
|
+
os: [freebsd]
|
|
515
|
+
|
|
516
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.53.3':
|
|
517
|
+
resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==}
|
|
518
|
+
cpu: [arm]
|
|
519
|
+
os: [linux]
|
|
520
|
+
|
|
521
|
+
'@rollup/rollup-linux-arm-musleabihf@4.53.3':
|
|
522
|
+
resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==}
|
|
523
|
+
cpu: [arm]
|
|
524
|
+
os: [linux]
|
|
525
|
+
|
|
526
|
+
'@rollup/rollup-linux-arm64-gnu@4.53.3':
|
|
527
|
+
resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==}
|
|
528
|
+
cpu: [arm64]
|
|
529
|
+
os: [linux]
|
|
530
|
+
|
|
531
|
+
'@rollup/rollup-linux-arm64-musl@4.53.3':
|
|
532
|
+
resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==}
|
|
533
|
+
cpu: [arm64]
|
|
534
|
+
os: [linux]
|
|
535
|
+
|
|
536
|
+
'@rollup/rollup-linux-loong64-gnu@4.53.3':
|
|
537
|
+
resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==}
|
|
538
|
+
cpu: [loong64]
|
|
539
|
+
os: [linux]
|
|
540
|
+
|
|
541
|
+
'@rollup/rollup-linux-ppc64-gnu@4.53.3':
|
|
542
|
+
resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==}
|
|
543
|
+
cpu: [ppc64]
|
|
544
|
+
os: [linux]
|
|
545
|
+
|
|
546
|
+
'@rollup/rollup-linux-riscv64-gnu@4.53.3':
|
|
547
|
+
resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==}
|
|
548
|
+
cpu: [riscv64]
|
|
549
|
+
os: [linux]
|
|
550
|
+
|
|
551
|
+
'@rollup/rollup-linux-riscv64-musl@4.53.3':
|
|
552
|
+
resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==}
|
|
553
|
+
cpu: [riscv64]
|
|
554
|
+
os: [linux]
|
|
555
|
+
|
|
556
|
+
'@rollup/rollup-linux-s390x-gnu@4.53.3':
|
|
557
|
+
resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==}
|
|
558
|
+
cpu: [s390x]
|
|
559
|
+
os: [linux]
|
|
560
|
+
|
|
561
|
+
'@rollup/rollup-linux-x64-gnu@4.53.3':
|
|
562
|
+
resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==}
|
|
563
|
+
cpu: [x64]
|
|
564
|
+
os: [linux]
|
|
565
|
+
|
|
566
|
+
'@rollup/rollup-linux-x64-musl@4.53.3':
|
|
567
|
+
resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==}
|
|
568
|
+
cpu: [x64]
|
|
569
|
+
os: [linux]
|
|
570
|
+
|
|
571
|
+
'@rollup/rollup-openharmony-arm64@4.53.3':
|
|
572
|
+
resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==}
|
|
573
|
+
cpu: [arm64]
|
|
574
|
+
os: [openharmony]
|
|
575
|
+
|
|
576
|
+
'@rollup/rollup-win32-arm64-msvc@4.53.3':
|
|
577
|
+
resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==}
|
|
578
|
+
cpu: [arm64]
|
|
579
|
+
os: [win32]
|
|
580
|
+
|
|
581
|
+
'@rollup/rollup-win32-ia32-msvc@4.53.3':
|
|
582
|
+
resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==}
|
|
583
|
+
cpu: [ia32]
|
|
584
|
+
os: [win32]
|
|
585
|
+
|
|
586
|
+
'@rollup/rollup-win32-x64-gnu@4.53.3':
|
|
587
|
+
resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==}
|
|
588
|
+
cpu: [x64]
|
|
589
|
+
os: [win32]
|
|
590
|
+
|
|
591
|
+
'@rollup/rollup-win32-x64-msvc@4.53.3':
|
|
592
|
+
resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==}
|
|
593
|
+
cpu: [x64]
|
|
594
|
+
os: [win32]
|
|
595
|
+
|
|
596
|
+
'@swc/core-darwin-arm64@1.15.3':
|
|
597
|
+
resolution: {integrity: sha512-AXfeQn0CvcQ4cndlIshETx6jrAM45oeUrK8YeEY6oUZU/qzz0Id0CyvlEywxkWVC81Ajpd8TQQ1fW5yx6zQWkQ==}
|
|
598
|
+
engines: {node: '>=10'}
|
|
599
|
+
cpu: [arm64]
|
|
600
|
+
os: [darwin]
|
|
601
|
+
|
|
602
|
+
'@swc/core-darwin-x64@1.15.3':
|
|
603
|
+
resolution: {integrity: sha512-p68OeCz1ui+MZYG4wmfJGvcsAcFYb6Sl25H9TxWl+GkBgmNimIiRdnypK9nBGlqMZAcxngNPtnG3kEMNnvoJ2A==}
|
|
604
|
+
engines: {node: '>=10'}
|
|
605
|
+
cpu: [x64]
|
|
606
|
+
os: [darwin]
|
|
607
|
+
|
|
608
|
+
'@swc/core-linux-arm-gnueabihf@1.15.3':
|
|
609
|
+
resolution: {integrity: sha512-Nuj5iF4JteFgwrai97mUX+xUOl+rQRHqTvnvHMATL/l9xE6/TJfPBpd3hk/PVpClMXG3Uvk1MxUFOEzM1JrMYg==}
|
|
610
|
+
engines: {node: '>=10'}
|
|
611
|
+
cpu: [arm]
|
|
612
|
+
os: [linux]
|
|
613
|
+
|
|
614
|
+
'@swc/core-linux-arm64-gnu@1.15.3':
|
|
615
|
+
resolution: {integrity: sha512-2Nc/s8jE6mW2EjXWxO/lyQuLKShcmTrym2LRf5Ayp3ICEMX6HwFqB1EzDhwoMa2DcUgmnZIalesq2lG3krrUNw==}
|
|
616
|
+
engines: {node: '>=10'}
|
|
617
|
+
cpu: [arm64]
|
|
618
|
+
os: [linux]
|
|
619
|
+
|
|
620
|
+
'@swc/core-linux-arm64-musl@1.15.3':
|
|
621
|
+
resolution: {integrity: sha512-j4SJniZ/qaZ5g8op+p1G9K1z22s/EYGg1UXIb3+Cg4nsxEpF5uSIGEE4mHUfA70L0BR9wKT2QF/zv3vkhfpX4g==}
|
|
622
|
+
engines: {node: '>=10'}
|
|
623
|
+
cpu: [arm64]
|
|
624
|
+
os: [linux]
|
|
625
|
+
|
|
626
|
+
'@swc/core-linux-x64-gnu@1.15.3':
|
|
627
|
+
resolution: {integrity: sha512-aKttAZnz8YB1VJwPQZtyU8Uk0BfMP63iDMkvjhJzRZVgySmqt/apWSdnoIcZlUoGheBrcqbMC17GGUmur7OT5A==}
|
|
628
|
+
engines: {node: '>=10'}
|
|
629
|
+
cpu: [x64]
|
|
630
|
+
os: [linux]
|
|
631
|
+
|
|
632
|
+
'@swc/core-linux-x64-musl@1.15.3':
|
|
633
|
+
resolution: {integrity: sha512-oe8FctPu1gnUsdtGJRO2rvOUIkkIIaHqsO9xxN0bTR7dFTlPTGi2Fhk1tnvXeyAvCPxLIcwD8phzKg6wLv9yug==}
|
|
634
|
+
engines: {node: '>=10'}
|
|
635
|
+
cpu: [x64]
|
|
636
|
+
os: [linux]
|
|
637
|
+
|
|
638
|
+
'@swc/core-win32-arm64-msvc@1.15.3':
|
|
639
|
+
resolution: {integrity: sha512-L9AjzP2ZQ/Xh58e0lTRMLvEDrcJpR7GwZqAtIeNLcTK7JVE+QineSyHp0kLkO1rttCHyCy0U74kDTj0dRz6raA==}
|
|
640
|
+
engines: {node: '>=10'}
|
|
641
|
+
cpu: [arm64]
|
|
642
|
+
os: [win32]
|
|
643
|
+
|
|
644
|
+
'@swc/core-win32-ia32-msvc@1.15.3':
|
|
645
|
+
resolution: {integrity: sha512-B8UtogMzErUPDWUoKONSVBdsgKYd58rRyv2sHJWKOIMCHfZ22FVXICR4O/VwIYtlnZ7ahERcjayBHDlBZpR0aw==}
|
|
646
|
+
engines: {node: '>=10'}
|
|
647
|
+
cpu: [ia32]
|
|
648
|
+
os: [win32]
|
|
649
|
+
|
|
650
|
+
'@swc/core-win32-x64-msvc@1.15.3':
|
|
651
|
+
resolution: {integrity: sha512-SpZKMR9QBTecHeqpzJdYEfgw30Oo8b/Xl6rjSzBt1g0ZsXyy60KLXrp6IagQyfTYqNYE/caDvwtF2FPn7pomog==}
|
|
652
|
+
engines: {node: '>=10'}
|
|
653
|
+
cpu: [x64]
|
|
654
|
+
os: [win32]
|
|
655
|
+
|
|
656
|
+
'@swc/core@1.15.3':
|
|
657
|
+
resolution: {integrity: sha512-Qd8eBPkUFL4eAONgGjycZXj1jFCBW8Fd+xF0PzdTlBCWQIV1xnUT7B93wUANtW3KGjl3TRcOyxwSx/u/jyKw/Q==}
|
|
658
|
+
engines: {node: '>=10'}
|
|
659
|
+
peerDependencies:
|
|
660
|
+
'@swc/helpers': '>=0.5.17'
|
|
661
|
+
peerDependenciesMeta:
|
|
662
|
+
'@swc/helpers':
|
|
663
|
+
optional: true
|
|
664
|
+
|
|
665
|
+
'@swc/counter@0.1.3':
|
|
666
|
+
resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
|
|
667
|
+
|
|
668
|
+
'@swc/types@0.1.25':
|
|
669
|
+
resolution: {integrity: sha512-iAoY/qRhNH8a/hBvm3zKj9qQ4oc2+3w1unPJa2XvTK3XjeLXtzcCingVPw/9e5mn1+0yPqxcBGp9Jf0pkfMb1g==}
|
|
670
|
+
|
|
671
|
+
'@tailwindcss/node@4.1.17':
|
|
672
|
+
resolution: {integrity: sha512-csIkHIgLb3JisEFQ0vxr2Y57GUNYh447C8xzwj89U/8fdW8LhProdxvnVH6U8M2Y73QKiTIH+LWbK3V2BBZsAg==}
|
|
673
|
+
|
|
674
|
+
'@tailwindcss/oxide-android-arm64@4.1.17':
|
|
675
|
+
resolution: {integrity: sha512-BMqpkJHgOZ5z78qqiGE6ZIRExyaHyuxjgrJ6eBO5+hfrfGkuya0lYfw8fRHG77gdTjWkNWEEm+qeG2cDMxArLQ==}
|
|
676
|
+
engines: {node: '>= 10'}
|
|
677
|
+
cpu: [arm64]
|
|
678
|
+
os: [android]
|
|
679
|
+
|
|
680
|
+
'@tailwindcss/oxide-darwin-arm64@4.1.17':
|
|
681
|
+
resolution: {integrity: sha512-EquyumkQweUBNk1zGEU/wfZo2qkp/nQKRZM8bUYO0J+Lums5+wl2CcG1f9BgAjn/u9pJzdYddHWBiFXJTcxmOg==}
|
|
682
|
+
engines: {node: '>= 10'}
|
|
683
|
+
cpu: [arm64]
|
|
684
|
+
os: [darwin]
|
|
685
|
+
|
|
686
|
+
'@tailwindcss/oxide-darwin-x64@4.1.17':
|
|
687
|
+
resolution: {integrity: sha512-gdhEPLzke2Pog8s12oADwYu0IAw04Y2tlmgVzIN0+046ytcgx8uZmCzEg4VcQh+AHKiS7xaL8kGo/QTiNEGRog==}
|
|
688
|
+
engines: {node: '>= 10'}
|
|
689
|
+
cpu: [x64]
|
|
690
|
+
os: [darwin]
|
|
691
|
+
|
|
692
|
+
'@tailwindcss/oxide-freebsd-x64@4.1.17':
|
|
693
|
+
resolution: {integrity: sha512-hxGS81KskMxML9DXsaXT1H0DyA+ZBIbyG/sSAjWNe2EDl7TkPOBI42GBV3u38itzGUOmFfCzk1iAjDXds8Oh0g==}
|
|
694
|
+
engines: {node: '>= 10'}
|
|
695
|
+
cpu: [x64]
|
|
696
|
+
os: [freebsd]
|
|
697
|
+
|
|
698
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17':
|
|
699
|
+
resolution: {integrity: sha512-k7jWk5E3ldAdw0cNglhjSgv501u7yrMf8oeZ0cElhxU6Y2o7f8yqelOp3fhf7evjIS6ujTI3U8pKUXV2I4iXHQ==}
|
|
700
|
+
engines: {node: '>= 10'}
|
|
701
|
+
cpu: [arm]
|
|
702
|
+
os: [linux]
|
|
703
|
+
|
|
704
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.1.17':
|
|
705
|
+
resolution: {integrity: sha512-HVDOm/mxK6+TbARwdW17WrgDYEGzmoYayrCgmLEw7FxTPLcp/glBisuyWkFz/jb7ZfiAXAXUACfyItn+nTgsdQ==}
|
|
706
|
+
engines: {node: '>= 10'}
|
|
707
|
+
cpu: [arm64]
|
|
708
|
+
os: [linux]
|
|
709
|
+
|
|
710
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.1.17':
|
|
711
|
+
resolution: {integrity: sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg==}
|
|
712
|
+
engines: {node: '>= 10'}
|
|
713
|
+
cpu: [arm64]
|
|
714
|
+
os: [linux]
|
|
715
|
+
|
|
716
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.1.17':
|
|
717
|
+
resolution: {integrity: sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ==}
|
|
718
|
+
engines: {node: '>= 10'}
|
|
719
|
+
cpu: [x64]
|
|
720
|
+
os: [linux]
|
|
721
|
+
|
|
722
|
+
'@tailwindcss/oxide-linux-x64-musl@4.1.17':
|
|
723
|
+
resolution: {integrity: sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ==}
|
|
724
|
+
engines: {node: '>= 10'}
|
|
725
|
+
cpu: [x64]
|
|
726
|
+
os: [linux]
|
|
727
|
+
|
|
728
|
+
'@tailwindcss/oxide-wasm32-wasi@4.1.17':
|
|
729
|
+
resolution: {integrity: sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg==}
|
|
730
|
+
engines: {node: '>=14.0.0'}
|
|
731
|
+
cpu: [wasm32]
|
|
732
|
+
bundledDependencies:
|
|
733
|
+
- '@napi-rs/wasm-runtime'
|
|
734
|
+
- '@emnapi/core'
|
|
735
|
+
- '@emnapi/runtime'
|
|
736
|
+
- '@tybys/wasm-util'
|
|
737
|
+
- '@emnapi/wasi-threads'
|
|
738
|
+
- tslib
|
|
739
|
+
|
|
740
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.1.17':
|
|
741
|
+
resolution: {integrity: sha512-JU5AHr7gKbZlOGvMdb4722/0aYbU+tN6lv1kONx0JK2cGsh7g148zVWLM0IKR3NeKLv+L90chBVYcJ8uJWbC9A==}
|
|
742
|
+
engines: {node: '>= 10'}
|
|
743
|
+
cpu: [arm64]
|
|
744
|
+
os: [win32]
|
|
745
|
+
|
|
746
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.1.17':
|
|
747
|
+
resolution: {integrity: sha512-SKWM4waLuqx0IH+FMDUw6R66Hu4OuTALFgnleKbqhgGU30DY20NORZMZUKgLRjQXNN2TLzKvh48QXTig4h4bGw==}
|
|
748
|
+
engines: {node: '>= 10'}
|
|
749
|
+
cpu: [x64]
|
|
750
|
+
os: [win32]
|
|
751
|
+
|
|
752
|
+
'@tailwindcss/oxide@4.1.17':
|
|
753
|
+
resolution: {integrity: sha512-F0F7d01fmkQhsTjXezGBLdrl1KresJTcI3DB8EkScCldyKp3Msz4hub4uyYaVnk88BAS1g5DQjjF6F5qczheLA==}
|
|
754
|
+
engines: {node: '>= 10'}
|
|
755
|
+
|
|
756
|
+
'@tailwindcss/postcss@4.1.17':
|
|
757
|
+
resolution: {integrity: sha512-+nKl9N9mN5uJ+M7dBOOCzINw94MPstNR/GtIhz1fpZysxL/4a+No64jCBD6CPN+bIHWFx3KWuu8XJRrj/572Dw==}
|
|
758
|
+
|
|
759
|
+
'@tailwindcss/vite@4.1.17':
|
|
760
|
+
resolution: {integrity: sha512-4+9w8ZHOiGnpcGI6z1TVVfWaX/koK7fKeSYF3qlYg2xpBtbteP2ddBxiarL+HVgfSJGeK5RIxRQmKm4rTJJAwA==}
|
|
761
|
+
peerDependencies:
|
|
762
|
+
vite: ^5.2.0 || ^6 || ^7
|
|
763
|
+
|
|
764
|
+
'@tanstack/query-core@5.90.10':
|
|
765
|
+
resolution: {integrity: sha512-EhZVFu9rl7GfRNuJLJ3Y7wtbTnENsvzp+YpcAV7kCYiXni1v8qZh++lpw4ch4rrwC0u/EZRnBHIehzCGzwXDSQ==}
|
|
766
|
+
|
|
767
|
+
'@tanstack/query-devtools@5.91.0':
|
|
768
|
+
resolution: {integrity: sha512-uNWkqWTiIKCv8Iaahb7bftmDaZVkBetB+l+OQhQeCEZAedyqxw2eyaRUc8sAQ2LzD843tVdYL6bzOtRWJHJSbQ==}
|
|
769
|
+
|
|
770
|
+
'@tanstack/react-query-devtools@5.91.0':
|
|
771
|
+
resolution: {integrity: sha512-s7g8Zn8HN05HNe22n/KdNm8wXaRbkcsVkqpkdYIQuCfjVmEUoTQqtJsN2iZtgd9CU36xNS38trWIofxzyW5vbQ==}
|
|
772
|
+
peerDependencies:
|
|
773
|
+
'@tanstack/react-query': ^5.90.10
|
|
774
|
+
react: ^18 || ^19
|
|
775
|
+
|
|
776
|
+
'@tanstack/react-query@5.90.10':
|
|
777
|
+
resolution: {integrity: sha512-BKLss9Y8PQ9IUjPYQiv3/Zmlx92uxffUOX8ZZNoQlCIZBJPT5M+GOMQj7xislvVQ6l1BstBjcX0XB/aHfFYVNw==}
|
|
778
|
+
peerDependencies:
|
|
779
|
+
react: ^18 || ^19
|
|
780
|
+
|
|
781
|
+
'@types/estree@1.0.8':
|
|
782
|
+
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
|
|
783
|
+
|
|
784
|
+
'@types/node@24.10.1':
|
|
785
|
+
resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==}
|
|
786
|
+
|
|
787
|
+
'@types/react-dom@19.2.3':
|
|
788
|
+
resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
|
|
789
|
+
peerDependencies:
|
|
790
|
+
'@types/react': ^19.2.0
|
|
791
|
+
|
|
792
|
+
'@types/react@19.2.6':
|
|
793
|
+
resolution: {integrity: sha512-p/jUvulfgU7oKtj6Xpk8cA2Y1xKTtICGpJYeJXz2YVO2UcvjQgeRMLDGfDeqeRW2Ta+0QNFwcc8X3GH8SxZz6w==}
|
|
794
|
+
|
|
795
|
+
'@vitejs/plugin-react-swc@4.2.2':
|
|
796
|
+
resolution: {integrity: sha512-x+rE6tsxq/gxrEJN3Nv3dIV60lFflPj94c90b+NNo6n1QV1QQUTLoL0MpaOVasUZ0zqVBn7ead1B5ecx1JAGfA==}
|
|
797
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
798
|
+
peerDependencies:
|
|
799
|
+
vite: ^4 || ^5 || ^6 || ^7
|
|
800
|
+
|
|
801
|
+
autoprefixer@10.4.22:
|
|
802
|
+
resolution: {integrity: sha512-ARe0v/t9gO28Bznv6GgqARmVqcWOV3mfgUPn9becPHMiD3o9BwlRgaeccZnwTpZ7Zwqrm+c1sUSsMxIzQzc8Xg==}
|
|
803
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
804
|
+
hasBin: true
|
|
805
|
+
peerDependencies:
|
|
806
|
+
postcss: ^8.1.0
|
|
807
|
+
|
|
808
|
+
baseline-browser-mapping@2.8.31:
|
|
809
|
+
resolution: {integrity: sha512-a28v2eWrrRWPpJSzxc+mKwm0ZtVx/G8SepdQZDArnXYU/XS+IF6mp8aB/4E+hH1tyGCoDo3KlUCdlSxGDsRkAw==}
|
|
810
|
+
hasBin: true
|
|
811
|
+
|
|
812
|
+
browserslist@4.28.0:
|
|
813
|
+
resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==}
|
|
814
|
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
|
815
|
+
hasBin: true
|
|
816
|
+
|
|
817
|
+
buffer-from@1.1.2:
|
|
818
|
+
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
|
|
819
|
+
|
|
820
|
+
caniuse-lite@1.0.30001756:
|
|
821
|
+
resolution: {integrity: sha512-4HnCNKbMLkLdhJz3TToeVWHSnfJvPaq6vu/eRP0Ahub/07n484XHhBF5AJoSGHdVrS8tKFauUQz8Bp9P7LVx7A==}
|
|
822
|
+
|
|
823
|
+
class-variance-authority@0.7.1:
|
|
824
|
+
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
|
|
825
|
+
|
|
826
|
+
clsx@2.1.1:
|
|
827
|
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
|
828
|
+
engines: {node: '>=6'}
|
|
829
|
+
|
|
830
|
+
cookie@1.0.2:
|
|
831
|
+
resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==}
|
|
832
|
+
engines: {node: '>=18'}
|
|
833
|
+
|
|
834
|
+
csstype@3.2.3:
|
|
835
|
+
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
|
|
836
|
+
|
|
837
|
+
debug@4.4.3:
|
|
838
|
+
resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
|
|
839
|
+
engines: {node: '>=6.0'}
|
|
840
|
+
peerDependencies:
|
|
841
|
+
supports-color: '*'
|
|
842
|
+
peerDependenciesMeta:
|
|
843
|
+
supports-color:
|
|
844
|
+
optional: true
|
|
845
|
+
|
|
846
|
+
detect-libc@2.1.2:
|
|
847
|
+
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
|
|
848
|
+
engines: {node: '>=8'}
|
|
849
|
+
|
|
850
|
+
drizzle-kit@0.31.7:
|
|
851
|
+
resolution: {integrity: sha512-hOzRGSdyKIU4FcTSFYGKdXEjFsncVwHZ43gY3WU5Bz9j5Iadp6Rh6hxLSQ1IWXpKLBKt/d5y1cpSPcV+FcoQ1A==}
|
|
852
|
+
hasBin: true
|
|
853
|
+
|
|
854
|
+
drizzle-orm@0.44.7:
|
|
855
|
+
resolution: {integrity: sha512-quIpnYznjU9lHshEOAYLoZ9s3jweleHlZIAWR/jX9gAWNg/JhQ1wj0KGRf7/Zm+obRrYd9GjPVJg790QY9N5AQ==}
|
|
856
|
+
peerDependencies:
|
|
857
|
+
'@aws-sdk/client-rds-data': '>=3'
|
|
858
|
+
'@cloudflare/workers-types': '>=4'
|
|
859
|
+
'@electric-sql/pglite': '>=0.2.0'
|
|
860
|
+
'@libsql/client': '>=0.10.0'
|
|
861
|
+
'@libsql/client-wasm': '>=0.10.0'
|
|
862
|
+
'@neondatabase/serverless': '>=0.10.0'
|
|
863
|
+
'@op-engineering/op-sqlite': '>=2'
|
|
864
|
+
'@opentelemetry/api': ^1.4.1
|
|
865
|
+
'@planetscale/database': '>=1.13'
|
|
866
|
+
'@prisma/client': '*'
|
|
867
|
+
'@tidbcloud/serverless': '*'
|
|
868
|
+
'@types/better-sqlite3': '*'
|
|
869
|
+
'@types/pg': '*'
|
|
870
|
+
'@types/sql.js': '*'
|
|
871
|
+
'@upstash/redis': '>=1.34.7'
|
|
872
|
+
'@vercel/postgres': '>=0.8.0'
|
|
873
|
+
'@xata.io/client': '*'
|
|
874
|
+
better-sqlite3: '>=7'
|
|
875
|
+
bun-types: '*'
|
|
876
|
+
expo-sqlite: '>=14.0.0'
|
|
877
|
+
gel: '>=2'
|
|
878
|
+
knex: '*'
|
|
879
|
+
kysely: '*'
|
|
880
|
+
mysql2: '>=2'
|
|
881
|
+
pg: '>=8'
|
|
882
|
+
postgres: '>=3'
|
|
883
|
+
prisma: '*'
|
|
884
|
+
sql.js: '>=1'
|
|
885
|
+
sqlite3: '>=5'
|
|
886
|
+
peerDependenciesMeta:
|
|
887
|
+
'@aws-sdk/client-rds-data':
|
|
888
|
+
optional: true
|
|
889
|
+
'@cloudflare/workers-types':
|
|
890
|
+
optional: true
|
|
891
|
+
'@electric-sql/pglite':
|
|
892
|
+
optional: true
|
|
893
|
+
'@libsql/client':
|
|
894
|
+
optional: true
|
|
895
|
+
'@libsql/client-wasm':
|
|
896
|
+
optional: true
|
|
897
|
+
'@neondatabase/serverless':
|
|
898
|
+
optional: true
|
|
899
|
+
'@op-engineering/op-sqlite':
|
|
900
|
+
optional: true
|
|
901
|
+
'@opentelemetry/api':
|
|
902
|
+
optional: true
|
|
903
|
+
'@planetscale/database':
|
|
904
|
+
optional: true
|
|
905
|
+
'@prisma/client':
|
|
906
|
+
optional: true
|
|
907
|
+
'@tidbcloud/serverless':
|
|
908
|
+
optional: true
|
|
909
|
+
'@types/better-sqlite3':
|
|
910
|
+
optional: true
|
|
911
|
+
'@types/pg':
|
|
912
|
+
optional: true
|
|
913
|
+
'@types/sql.js':
|
|
914
|
+
optional: true
|
|
915
|
+
'@upstash/redis':
|
|
916
|
+
optional: true
|
|
917
|
+
'@vercel/postgres':
|
|
918
|
+
optional: true
|
|
919
|
+
'@xata.io/client':
|
|
920
|
+
optional: true
|
|
921
|
+
better-sqlite3:
|
|
922
|
+
optional: true
|
|
923
|
+
bun-types:
|
|
924
|
+
optional: true
|
|
925
|
+
expo-sqlite:
|
|
926
|
+
optional: true
|
|
927
|
+
gel:
|
|
928
|
+
optional: true
|
|
929
|
+
knex:
|
|
930
|
+
optional: true
|
|
931
|
+
kysely:
|
|
932
|
+
optional: true
|
|
933
|
+
mysql2:
|
|
934
|
+
optional: true
|
|
935
|
+
pg:
|
|
936
|
+
optional: true
|
|
937
|
+
postgres:
|
|
938
|
+
optional: true
|
|
939
|
+
prisma:
|
|
940
|
+
optional: true
|
|
941
|
+
sql.js:
|
|
942
|
+
optional: true
|
|
943
|
+
sqlite3:
|
|
944
|
+
optional: true
|
|
945
|
+
|
|
946
|
+
electron-to-chromium@1.5.259:
|
|
947
|
+
resolution: {integrity: sha512-I+oLXgpEJzD6Cwuwt1gYjxsDmu/S/Kd41mmLA3O+/uH2pFRO/DvOjUyGozL8j3KeLV6WyZ7ssPwELMsXCcsJAQ==}
|
|
948
|
+
|
|
949
|
+
enhanced-resolve@5.18.3:
|
|
950
|
+
resolution: {integrity: sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==}
|
|
951
|
+
engines: {node: '>=10.13.0'}
|
|
952
|
+
|
|
953
|
+
esbuild-register@3.6.0:
|
|
954
|
+
resolution: {integrity: sha512-H2/S7Pm8a9CL1uhp9OvjwrBh5Pvx0H8qVOxNu8Wed9Y7qv56MPtq+GGM8RJpq6glYJn9Wspr8uw7l55uyinNeg==}
|
|
955
|
+
peerDependencies:
|
|
956
|
+
esbuild: '>=0.12 <1'
|
|
957
|
+
|
|
958
|
+
esbuild@0.18.20:
|
|
959
|
+
resolution: {integrity: sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==}
|
|
960
|
+
engines: {node: '>=12'}
|
|
961
|
+
hasBin: true
|
|
962
|
+
|
|
963
|
+
esbuild@0.25.12:
|
|
964
|
+
resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
|
|
965
|
+
engines: {node: '>=18'}
|
|
966
|
+
hasBin: true
|
|
967
|
+
|
|
968
|
+
escalade@3.2.0:
|
|
969
|
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
|
970
|
+
engines: {node: '>=6'}
|
|
971
|
+
|
|
972
|
+
fdir@6.5.0:
|
|
973
|
+
resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
|
|
974
|
+
engines: {node: '>=12.0.0'}
|
|
975
|
+
peerDependencies:
|
|
976
|
+
picomatch: ^3 || ^4
|
|
977
|
+
peerDependenciesMeta:
|
|
978
|
+
picomatch:
|
|
979
|
+
optional: true
|
|
980
|
+
|
|
981
|
+
fraction.js@5.3.4:
|
|
982
|
+
resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
|
|
983
|
+
|
|
984
|
+
fsevents@2.3.3:
|
|
985
|
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
|
986
|
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
|
987
|
+
os: [darwin]
|
|
988
|
+
|
|
989
|
+
get-tsconfig@4.13.0:
|
|
990
|
+
resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
|
|
991
|
+
|
|
992
|
+
graceful-fs@4.2.11:
|
|
993
|
+
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
|
|
994
|
+
|
|
995
|
+
jiti@2.6.1:
|
|
996
|
+
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
|
|
997
|
+
hasBin: true
|
|
998
|
+
|
|
999
|
+
lightningcss-android-arm64@1.30.2:
|
|
1000
|
+
resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
|
|
1001
|
+
engines: {node: '>= 12.0.0'}
|
|
1002
|
+
cpu: [arm64]
|
|
1003
|
+
os: [android]
|
|
1004
|
+
|
|
1005
|
+
lightningcss-darwin-arm64@1.30.2:
|
|
1006
|
+
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
|
|
1007
|
+
engines: {node: '>= 12.0.0'}
|
|
1008
|
+
cpu: [arm64]
|
|
1009
|
+
os: [darwin]
|
|
1010
|
+
|
|
1011
|
+
lightningcss-darwin-x64@1.30.2:
|
|
1012
|
+
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
|
|
1013
|
+
engines: {node: '>= 12.0.0'}
|
|
1014
|
+
cpu: [x64]
|
|
1015
|
+
os: [darwin]
|
|
1016
|
+
|
|
1017
|
+
lightningcss-freebsd-x64@1.30.2:
|
|
1018
|
+
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
|
|
1019
|
+
engines: {node: '>= 12.0.0'}
|
|
1020
|
+
cpu: [x64]
|
|
1021
|
+
os: [freebsd]
|
|
1022
|
+
|
|
1023
|
+
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
1024
|
+
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
|
|
1025
|
+
engines: {node: '>= 12.0.0'}
|
|
1026
|
+
cpu: [arm]
|
|
1027
|
+
os: [linux]
|
|
1028
|
+
|
|
1029
|
+
lightningcss-linux-arm64-gnu@1.30.2:
|
|
1030
|
+
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
|
|
1031
|
+
engines: {node: '>= 12.0.0'}
|
|
1032
|
+
cpu: [arm64]
|
|
1033
|
+
os: [linux]
|
|
1034
|
+
|
|
1035
|
+
lightningcss-linux-arm64-musl@1.30.2:
|
|
1036
|
+
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
|
|
1037
|
+
engines: {node: '>= 12.0.0'}
|
|
1038
|
+
cpu: [arm64]
|
|
1039
|
+
os: [linux]
|
|
1040
|
+
|
|
1041
|
+
lightningcss-linux-x64-gnu@1.30.2:
|
|
1042
|
+
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
|
|
1043
|
+
engines: {node: '>= 12.0.0'}
|
|
1044
|
+
cpu: [x64]
|
|
1045
|
+
os: [linux]
|
|
1046
|
+
|
|
1047
|
+
lightningcss-linux-x64-musl@1.30.2:
|
|
1048
|
+
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
|
|
1049
|
+
engines: {node: '>= 12.0.0'}
|
|
1050
|
+
cpu: [x64]
|
|
1051
|
+
os: [linux]
|
|
1052
|
+
|
|
1053
|
+
lightningcss-win32-arm64-msvc@1.30.2:
|
|
1054
|
+
resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
|
|
1055
|
+
engines: {node: '>= 12.0.0'}
|
|
1056
|
+
cpu: [arm64]
|
|
1057
|
+
os: [win32]
|
|
1058
|
+
|
|
1059
|
+
lightningcss-win32-x64-msvc@1.30.2:
|
|
1060
|
+
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
|
|
1061
|
+
engines: {node: '>= 12.0.0'}
|
|
1062
|
+
cpu: [x64]
|
|
1063
|
+
os: [win32]
|
|
1064
|
+
|
|
1065
|
+
lightningcss@1.30.2:
|
|
1066
|
+
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
|
|
1067
|
+
engines: {node: '>= 12.0.0'}
|
|
1068
|
+
|
|
1069
|
+
lucide-react@0.554.0:
|
|
1070
|
+
resolution: {integrity: sha512-St+z29uthEJVx0Is7ellNkgTEhaeSoA42I7JjOCBCrc5X6LYMGSv0P/2uS5HDLTExP5tpiqRD2PyUEOS6s9UXA==}
|
|
1071
|
+
peerDependencies:
|
|
1072
|
+
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
|
|
1073
|
+
|
|
1074
|
+
magic-string@0.30.21:
|
|
1075
|
+
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
|
|
1076
|
+
|
|
1077
|
+
ms@2.1.3:
|
|
1078
|
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
|
1079
|
+
|
|
1080
|
+
nanoid@3.3.11:
|
|
1081
|
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
|
1082
|
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
1083
|
+
hasBin: true
|
|
1084
|
+
|
|
1085
|
+
node-releases@2.0.27:
|
|
1086
|
+
resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
|
|
1087
|
+
|
|
1088
|
+
normalize-range@0.1.2:
|
|
1089
|
+
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
|
|
1090
|
+
engines: {node: '>=0.10.0'}
|
|
1091
|
+
|
|
1092
|
+
picocolors@1.1.1:
|
|
1093
|
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
|
1094
|
+
|
|
1095
|
+
picomatch@4.0.3:
|
|
1096
|
+
resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
|
|
1097
|
+
engines: {node: '>=12'}
|
|
1098
|
+
|
|
1099
|
+
postcss-value-parser@4.2.0:
|
|
1100
|
+
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
|
1101
|
+
|
|
1102
|
+
postcss@8.5.6:
|
|
1103
|
+
resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
|
|
1104
|
+
engines: {node: ^10 || ^12 || >=14}
|
|
1105
|
+
|
|
1106
|
+
react-dom@19.2.0:
|
|
1107
|
+
resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
|
|
1108
|
+
peerDependencies:
|
|
1109
|
+
react: ^19.2.0
|
|
1110
|
+
|
|
1111
|
+
react-router-dom@7.9.6:
|
|
1112
|
+
resolution: {integrity: sha512-2MkC2XSXq6HjGcihnx1s0DBWQETI4mlis4Ux7YTLvP67xnGxCvq+BcCQSO81qQHVUTM1V53tl4iVVaY5sReCOA==}
|
|
1113
|
+
engines: {node: '>=20.0.0'}
|
|
1114
|
+
peerDependencies:
|
|
1115
|
+
react: '>=18'
|
|
1116
|
+
react-dom: '>=18'
|
|
1117
|
+
|
|
1118
|
+
react-router@7.9.6:
|
|
1119
|
+
resolution: {integrity: sha512-Y1tUp8clYRXpfPITyuifmSoE2vncSME18uVLgaqyxh9H35JWpIfzHo+9y3Fzh5odk/jxPW29IgLgzcdwxGqyNA==}
|
|
1120
|
+
engines: {node: '>=20.0.0'}
|
|
1121
|
+
peerDependencies:
|
|
1122
|
+
react: '>=18'
|
|
1123
|
+
react-dom: '>=18'
|
|
1124
|
+
peerDependenciesMeta:
|
|
1125
|
+
react-dom:
|
|
1126
|
+
optional: true
|
|
1127
|
+
|
|
1128
|
+
react@19.2.0:
|
|
1129
|
+
resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
|
|
1130
|
+
engines: {node: '>=0.10.0'}
|
|
1131
|
+
|
|
1132
|
+
resolve-pkg-maps@1.0.0:
|
|
1133
|
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
|
1134
|
+
|
|
1135
|
+
rollup@4.53.3:
|
|
1136
|
+
resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==}
|
|
1137
|
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
|
1138
|
+
hasBin: true
|
|
1139
|
+
|
|
1140
|
+
scheduler@0.27.0:
|
|
1141
|
+
resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
|
|
1142
|
+
|
|
1143
|
+
set-cookie-parser@2.7.2:
|
|
1144
|
+
resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
|
|
1145
|
+
|
|
1146
|
+
source-map-js@1.2.1:
|
|
1147
|
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
|
1148
|
+
engines: {node: '>=0.10.0'}
|
|
1149
|
+
|
|
1150
|
+
source-map-support@0.5.21:
|
|
1151
|
+
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
|
|
1152
|
+
|
|
1153
|
+
source-map@0.6.1:
|
|
1154
|
+
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
|
|
1155
|
+
engines: {node: '>=0.10.0'}
|
|
1156
|
+
|
|
1157
|
+
tailwind-merge@3.4.0:
|
|
1158
|
+
resolution: {integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==}
|
|
1159
|
+
|
|
1160
|
+
tailwindcss-animate@1.0.7:
|
|
1161
|
+
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
|
|
1162
|
+
peerDependencies:
|
|
1163
|
+
tailwindcss: '>=3.0.0 || insiders'
|
|
1164
|
+
|
|
1165
|
+
tailwindcss@4.1.17:
|
|
1166
|
+
resolution: {integrity: sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q==}
|
|
1167
|
+
|
|
1168
|
+
tapable@2.3.0:
|
|
1169
|
+
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
|
|
1170
|
+
engines: {node: '>=6'}
|
|
1171
|
+
|
|
1172
|
+
tinyglobby@0.2.15:
|
|
1173
|
+
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
|
|
1174
|
+
engines: {node: '>=12.0.0'}
|
|
1175
|
+
|
|
1176
|
+
typescript@5.9.3:
|
|
1177
|
+
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
|
1178
|
+
engines: {node: '>=14.17'}
|
|
1179
|
+
hasBin: true
|
|
1180
|
+
|
|
1181
|
+
undici-types@7.16.0:
|
|
1182
|
+
resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
|
|
1183
|
+
|
|
1184
|
+
update-browserslist-db@1.1.4:
|
|
1185
|
+
resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
|
|
1186
|
+
hasBin: true
|
|
1187
|
+
peerDependencies:
|
|
1188
|
+
browserslist: '>= 4.21.0'
|
|
1189
|
+
|
|
1190
|
+
vite@7.2.4:
|
|
1191
|
+
resolution: {integrity: sha512-NL8jTlbo0Tn4dUEXEsUg8KeyG/Lkmc4Fnzb8JXN/Ykm9G4HNImjtABMJgkQoVjOBN/j2WAwDTRytdqJbZsah7w==}
|
|
1192
|
+
engines: {node: ^20.19.0 || >=22.12.0}
|
|
1193
|
+
hasBin: true
|
|
1194
|
+
peerDependencies:
|
|
1195
|
+
'@types/node': ^20.19.0 || >=22.12.0
|
|
1196
|
+
jiti: '>=1.21.0'
|
|
1197
|
+
less: ^4.0.0
|
|
1198
|
+
lightningcss: ^1.21.0
|
|
1199
|
+
sass: ^1.70.0
|
|
1200
|
+
sass-embedded: ^1.70.0
|
|
1201
|
+
stylus: '>=0.54.8'
|
|
1202
|
+
sugarss: ^5.0.0
|
|
1203
|
+
terser: ^5.16.0
|
|
1204
|
+
tsx: ^4.8.1
|
|
1205
|
+
yaml: ^2.4.2
|
|
1206
|
+
peerDependenciesMeta:
|
|
1207
|
+
'@types/node':
|
|
1208
|
+
optional: true
|
|
1209
|
+
jiti:
|
|
1210
|
+
optional: true
|
|
1211
|
+
less:
|
|
1212
|
+
optional: true
|
|
1213
|
+
lightningcss:
|
|
1214
|
+
optional: true
|
|
1215
|
+
sass:
|
|
1216
|
+
optional: true
|
|
1217
|
+
sass-embedded:
|
|
1218
|
+
optional: true
|
|
1219
|
+
stylus:
|
|
1220
|
+
optional: true
|
|
1221
|
+
sugarss:
|
|
1222
|
+
optional: true
|
|
1223
|
+
terser:
|
|
1224
|
+
optional: true
|
|
1225
|
+
tsx:
|
|
1226
|
+
optional: true
|
|
1227
|
+
yaml:
|
|
1228
|
+
optional: true
|
|
1229
|
+
|
|
1230
|
+
zod@4.1.13:
|
|
1231
|
+
resolution: {integrity: sha512-AvvthqfqrAhNH9dnfmrfKzX5upOdjUVJYFqNSlkmGf64gRaTzlPwz99IHYnVs28qYAybvAlBV+H7pn0saFY4Ig==}
|
|
1232
|
+
|
|
1233
|
+
snapshots:
|
|
1234
|
+
|
|
1235
|
+
'@alloc/quick-lru@5.2.0': {}
|
|
1236
|
+
|
|
1237
|
+
'@biomejs/biome@2.3.7':
|
|
1238
|
+
optionalDependencies:
|
|
1239
|
+
'@biomejs/cli-darwin-arm64': 2.3.7
|
|
1240
|
+
'@biomejs/cli-darwin-x64': 2.3.7
|
|
1241
|
+
'@biomejs/cli-linux-arm64': 2.3.7
|
|
1242
|
+
'@biomejs/cli-linux-arm64-musl': 2.3.7
|
|
1243
|
+
'@biomejs/cli-linux-x64': 2.3.7
|
|
1244
|
+
'@biomejs/cli-linux-x64-musl': 2.3.7
|
|
1245
|
+
'@biomejs/cli-win32-arm64': 2.3.7
|
|
1246
|
+
'@biomejs/cli-win32-x64': 2.3.7
|
|
1247
|
+
|
|
1248
|
+
'@biomejs/cli-darwin-arm64@2.3.7':
|
|
1249
|
+
optional: true
|
|
1250
|
+
|
|
1251
|
+
'@biomejs/cli-darwin-x64@2.3.7':
|
|
1252
|
+
optional: true
|
|
1253
|
+
|
|
1254
|
+
'@biomejs/cli-linux-arm64-musl@2.3.7':
|
|
1255
|
+
optional: true
|
|
1256
|
+
|
|
1257
|
+
'@biomejs/cli-linux-arm64@2.3.7':
|
|
1258
|
+
optional: true
|
|
1259
|
+
|
|
1260
|
+
'@biomejs/cli-linux-x64-musl@2.3.7':
|
|
1261
|
+
optional: true
|
|
1262
|
+
|
|
1263
|
+
'@biomejs/cli-linux-x64@2.3.7':
|
|
1264
|
+
optional: true
|
|
1265
|
+
|
|
1266
|
+
'@biomejs/cli-win32-arm64@2.3.7':
|
|
1267
|
+
optional: true
|
|
1268
|
+
|
|
1269
|
+
'@biomejs/cli-win32-x64@2.3.7':
|
|
1270
|
+
optional: true
|
|
1271
|
+
|
|
1272
|
+
'@drizzle-team/brocli@0.10.2': {}
|
|
1273
|
+
|
|
1274
|
+
'@esbuild-kit/core-utils@3.3.2':
|
|
1275
|
+
dependencies:
|
|
1276
|
+
esbuild: 0.18.20
|
|
1277
|
+
source-map-support: 0.5.21
|
|
1278
|
+
|
|
1279
|
+
'@esbuild-kit/esm-loader@2.6.5':
|
|
1280
|
+
dependencies:
|
|
1281
|
+
'@esbuild-kit/core-utils': 3.3.2
|
|
1282
|
+
get-tsconfig: 4.13.0
|
|
1283
|
+
|
|
1284
|
+
'@esbuild/aix-ppc64@0.25.12':
|
|
1285
|
+
optional: true
|
|
1286
|
+
|
|
1287
|
+
'@esbuild/android-arm64@0.18.20':
|
|
1288
|
+
optional: true
|
|
1289
|
+
|
|
1290
|
+
'@esbuild/android-arm64@0.25.12':
|
|
1291
|
+
optional: true
|
|
1292
|
+
|
|
1293
|
+
'@esbuild/android-arm@0.18.20':
|
|
1294
|
+
optional: true
|
|
1295
|
+
|
|
1296
|
+
'@esbuild/android-arm@0.25.12':
|
|
1297
|
+
optional: true
|
|
1298
|
+
|
|
1299
|
+
'@esbuild/android-x64@0.18.20':
|
|
1300
|
+
optional: true
|
|
1301
|
+
|
|
1302
|
+
'@esbuild/android-x64@0.25.12':
|
|
1303
|
+
optional: true
|
|
1304
|
+
|
|
1305
|
+
'@esbuild/darwin-arm64@0.18.20':
|
|
1306
|
+
optional: true
|
|
1307
|
+
|
|
1308
|
+
'@esbuild/darwin-arm64@0.25.12':
|
|
1309
|
+
optional: true
|
|
1310
|
+
|
|
1311
|
+
'@esbuild/darwin-x64@0.18.20':
|
|
1312
|
+
optional: true
|
|
1313
|
+
|
|
1314
|
+
'@esbuild/darwin-x64@0.25.12':
|
|
1315
|
+
optional: true
|
|
1316
|
+
|
|
1317
|
+
'@esbuild/freebsd-arm64@0.18.20':
|
|
1318
|
+
optional: true
|
|
1319
|
+
|
|
1320
|
+
'@esbuild/freebsd-arm64@0.25.12':
|
|
1321
|
+
optional: true
|
|
1322
|
+
|
|
1323
|
+
'@esbuild/freebsd-x64@0.18.20':
|
|
1324
|
+
optional: true
|
|
1325
|
+
|
|
1326
|
+
'@esbuild/freebsd-x64@0.25.12':
|
|
1327
|
+
optional: true
|
|
1328
|
+
|
|
1329
|
+
'@esbuild/linux-arm64@0.18.20':
|
|
1330
|
+
optional: true
|
|
1331
|
+
|
|
1332
|
+
'@esbuild/linux-arm64@0.25.12':
|
|
1333
|
+
optional: true
|
|
1334
|
+
|
|
1335
|
+
'@esbuild/linux-arm@0.18.20':
|
|
1336
|
+
optional: true
|
|
1337
|
+
|
|
1338
|
+
'@esbuild/linux-arm@0.25.12':
|
|
1339
|
+
optional: true
|
|
1340
|
+
|
|
1341
|
+
'@esbuild/linux-ia32@0.18.20':
|
|
1342
|
+
optional: true
|
|
1343
|
+
|
|
1344
|
+
'@esbuild/linux-ia32@0.25.12':
|
|
1345
|
+
optional: true
|
|
1346
|
+
|
|
1347
|
+
'@esbuild/linux-loong64@0.18.20':
|
|
1348
|
+
optional: true
|
|
1349
|
+
|
|
1350
|
+
'@esbuild/linux-loong64@0.25.12':
|
|
1351
|
+
optional: true
|
|
1352
|
+
|
|
1353
|
+
'@esbuild/linux-mips64el@0.18.20':
|
|
1354
|
+
optional: true
|
|
1355
|
+
|
|
1356
|
+
'@esbuild/linux-mips64el@0.25.12':
|
|
1357
|
+
optional: true
|
|
1358
|
+
|
|
1359
|
+
'@esbuild/linux-ppc64@0.18.20':
|
|
1360
|
+
optional: true
|
|
1361
|
+
|
|
1362
|
+
'@esbuild/linux-ppc64@0.25.12':
|
|
1363
|
+
optional: true
|
|
1364
|
+
|
|
1365
|
+
'@esbuild/linux-riscv64@0.18.20':
|
|
1366
|
+
optional: true
|
|
1367
|
+
|
|
1368
|
+
'@esbuild/linux-riscv64@0.25.12':
|
|
1369
|
+
optional: true
|
|
1370
|
+
|
|
1371
|
+
'@esbuild/linux-s390x@0.18.20':
|
|
1372
|
+
optional: true
|
|
1373
|
+
|
|
1374
|
+
'@esbuild/linux-s390x@0.25.12':
|
|
1375
|
+
optional: true
|
|
1376
|
+
|
|
1377
|
+
'@esbuild/linux-x64@0.18.20':
|
|
1378
|
+
optional: true
|
|
1379
|
+
|
|
1380
|
+
'@esbuild/linux-x64@0.25.12':
|
|
1381
|
+
optional: true
|
|
1382
|
+
|
|
1383
|
+
'@esbuild/netbsd-arm64@0.25.12':
|
|
1384
|
+
optional: true
|
|
1385
|
+
|
|
1386
|
+
'@esbuild/netbsd-x64@0.18.20':
|
|
1387
|
+
optional: true
|
|
1388
|
+
|
|
1389
|
+
'@esbuild/netbsd-x64@0.25.12':
|
|
1390
|
+
optional: true
|
|
1391
|
+
|
|
1392
|
+
'@esbuild/openbsd-arm64@0.25.12':
|
|
1393
|
+
optional: true
|
|
1394
|
+
|
|
1395
|
+
'@esbuild/openbsd-x64@0.18.20':
|
|
1396
|
+
optional: true
|
|
1397
|
+
|
|
1398
|
+
'@esbuild/openbsd-x64@0.25.12':
|
|
1399
|
+
optional: true
|
|
1400
|
+
|
|
1401
|
+
'@esbuild/openharmony-arm64@0.25.12':
|
|
1402
|
+
optional: true
|
|
1403
|
+
|
|
1404
|
+
'@esbuild/sunos-x64@0.18.20':
|
|
1405
|
+
optional: true
|
|
1406
|
+
|
|
1407
|
+
'@esbuild/sunos-x64@0.25.12':
|
|
1408
|
+
optional: true
|
|
1409
|
+
|
|
1410
|
+
'@esbuild/win32-arm64@0.18.20':
|
|
1411
|
+
optional: true
|
|
1412
|
+
|
|
1413
|
+
'@esbuild/win32-arm64@0.25.12':
|
|
1414
|
+
optional: true
|
|
1415
|
+
|
|
1416
|
+
'@esbuild/win32-ia32@0.18.20':
|
|
1417
|
+
optional: true
|
|
1418
|
+
|
|
1419
|
+
'@esbuild/win32-ia32@0.25.12':
|
|
1420
|
+
optional: true
|
|
1421
|
+
|
|
1422
|
+
'@esbuild/win32-x64@0.18.20':
|
|
1423
|
+
optional: true
|
|
1424
|
+
|
|
1425
|
+
'@esbuild/win32-x64@0.25.12':
|
|
1426
|
+
optional: true
|
|
1427
|
+
|
|
1428
|
+
'@jridgewell/gen-mapping@0.3.13':
|
|
1429
|
+
dependencies:
|
|
1430
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1431
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
1432
|
+
|
|
1433
|
+
'@jridgewell/remapping@2.3.5':
|
|
1434
|
+
dependencies:
|
|
1435
|
+
'@jridgewell/gen-mapping': 0.3.13
|
|
1436
|
+
'@jridgewell/trace-mapping': 0.3.31
|
|
1437
|
+
|
|
1438
|
+
'@jridgewell/resolve-uri@3.1.2': {}
|
|
1439
|
+
|
|
1440
|
+
'@jridgewell/sourcemap-codec@1.5.5': {}
|
|
1441
|
+
|
|
1442
|
+
'@jridgewell/trace-mapping@0.3.31':
|
|
1443
|
+
dependencies:
|
|
1444
|
+
'@jridgewell/resolve-uri': 3.1.2
|
|
1445
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1446
|
+
|
|
1447
|
+
'@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.6)(react@19.2.0)':
|
|
1448
|
+
dependencies:
|
|
1449
|
+
react: 19.2.0
|
|
1450
|
+
optionalDependencies:
|
|
1451
|
+
'@types/react': 19.2.6
|
|
1452
|
+
|
|
1453
|
+
'@radix-ui/react-slot@1.2.4(@types/react@19.2.6)(react@19.2.0)':
|
|
1454
|
+
dependencies:
|
|
1455
|
+
'@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.6)(react@19.2.0)
|
|
1456
|
+
react: 19.2.0
|
|
1457
|
+
optionalDependencies:
|
|
1458
|
+
'@types/react': 19.2.6
|
|
1459
|
+
|
|
1460
|
+
'@rolldown/pluginutils@1.0.0-beta.47': {}
|
|
1461
|
+
|
|
1462
|
+
'@rollup/rollup-android-arm-eabi@4.53.3':
|
|
1463
|
+
optional: true
|
|
1464
|
+
|
|
1465
|
+
'@rollup/rollup-android-arm64@4.53.3':
|
|
1466
|
+
optional: true
|
|
1467
|
+
|
|
1468
|
+
'@rollup/rollup-darwin-arm64@4.53.3':
|
|
1469
|
+
optional: true
|
|
1470
|
+
|
|
1471
|
+
'@rollup/rollup-darwin-x64@4.53.3':
|
|
1472
|
+
optional: true
|
|
1473
|
+
|
|
1474
|
+
'@rollup/rollup-freebsd-arm64@4.53.3':
|
|
1475
|
+
optional: true
|
|
1476
|
+
|
|
1477
|
+
'@rollup/rollup-freebsd-x64@4.53.3':
|
|
1478
|
+
optional: true
|
|
1479
|
+
|
|
1480
|
+
'@rollup/rollup-linux-arm-gnueabihf@4.53.3':
|
|
1481
|
+
optional: true
|
|
1482
|
+
|
|
1483
|
+
'@rollup/rollup-linux-arm-musleabihf@4.53.3':
|
|
1484
|
+
optional: true
|
|
1485
|
+
|
|
1486
|
+
'@rollup/rollup-linux-arm64-gnu@4.53.3':
|
|
1487
|
+
optional: true
|
|
1488
|
+
|
|
1489
|
+
'@rollup/rollup-linux-arm64-musl@4.53.3':
|
|
1490
|
+
optional: true
|
|
1491
|
+
|
|
1492
|
+
'@rollup/rollup-linux-loong64-gnu@4.53.3':
|
|
1493
|
+
optional: true
|
|
1494
|
+
|
|
1495
|
+
'@rollup/rollup-linux-ppc64-gnu@4.53.3':
|
|
1496
|
+
optional: true
|
|
1497
|
+
|
|
1498
|
+
'@rollup/rollup-linux-riscv64-gnu@4.53.3':
|
|
1499
|
+
optional: true
|
|
1500
|
+
|
|
1501
|
+
'@rollup/rollup-linux-riscv64-musl@4.53.3':
|
|
1502
|
+
optional: true
|
|
1503
|
+
|
|
1504
|
+
'@rollup/rollup-linux-s390x-gnu@4.53.3':
|
|
1505
|
+
optional: true
|
|
1506
|
+
|
|
1507
|
+
'@rollup/rollup-linux-x64-gnu@4.53.3':
|
|
1508
|
+
optional: true
|
|
1509
|
+
|
|
1510
|
+
'@rollup/rollup-linux-x64-musl@4.53.3':
|
|
1511
|
+
optional: true
|
|
1512
|
+
|
|
1513
|
+
'@rollup/rollup-openharmony-arm64@4.53.3':
|
|
1514
|
+
optional: true
|
|
1515
|
+
|
|
1516
|
+
'@rollup/rollup-win32-arm64-msvc@4.53.3':
|
|
1517
|
+
optional: true
|
|
1518
|
+
|
|
1519
|
+
'@rollup/rollup-win32-ia32-msvc@4.53.3':
|
|
1520
|
+
optional: true
|
|
1521
|
+
|
|
1522
|
+
'@rollup/rollup-win32-x64-gnu@4.53.3':
|
|
1523
|
+
optional: true
|
|
1524
|
+
|
|
1525
|
+
'@rollup/rollup-win32-x64-msvc@4.53.3':
|
|
1526
|
+
optional: true
|
|
1527
|
+
|
|
1528
|
+
'@swc/core-darwin-arm64@1.15.3':
|
|
1529
|
+
optional: true
|
|
1530
|
+
|
|
1531
|
+
'@swc/core-darwin-x64@1.15.3':
|
|
1532
|
+
optional: true
|
|
1533
|
+
|
|
1534
|
+
'@swc/core-linux-arm-gnueabihf@1.15.3':
|
|
1535
|
+
optional: true
|
|
1536
|
+
|
|
1537
|
+
'@swc/core-linux-arm64-gnu@1.15.3':
|
|
1538
|
+
optional: true
|
|
1539
|
+
|
|
1540
|
+
'@swc/core-linux-arm64-musl@1.15.3':
|
|
1541
|
+
optional: true
|
|
1542
|
+
|
|
1543
|
+
'@swc/core-linux-x64-gnu@1.15.3':
|
|
1544
|
+
optional: true
|
|
1545
|
+
|
|
1546
|
+
'@swc/core-linux-x64-musl@1.15.3':
|
|
1547
|
+
optional: true
|
|
1548
|
+
|
|
1549
|
+
'@swc/core-win32-arm64-msvc@1.15.3':
|
|
1550
|
+
optional: true
|
|
1551
|
+
|
|
1552
|
+
'@swc/core-win32-ia32-msvc@1.15.3':
|
|
1553
|
+
optional: true
|
|
1554
|
+
|
|
1555
|
+
'@swc/core-win32-x64-msvc@1.15.3':
|
|
1556
|
+
optional: true
|
|
1557
|
+
|
|
1558
|
+
'@swc/core@1.15.3':
|
|
1559
|
+
dependencies:
|
|
1560
|
+
'@swc/counter': 0.1.3
|
|
1561
|
+
'@swc/types': 0.1.25
|
|
1562
|
+
optionalDependencies:
|
|
1563
|
+
'@swc/core-darwin-arm64': 1.15.3
|
|
1564
|
+
'@swc/core-darwin-x64': 1.15.3
|
|
1565
|
+
'@swc/core-linux-arm-gnueabihf': 1.15.3
|
|
1566
|
+
'@swc/core-linux-arm64-gnu': 1.15.3
|
|
1567
|
+
'@swc/core-linux-arm64-musl': 1.15.3
|
|
1568
|
+
'@swc/core-linux-x64-gnu': 1.15.3
|
|
1569
|
+
'@swc/core-linux-x64-musl': 1.15.3
|
|
1570
|
+
'@swc/core-win32-arm64-msvc': 1.15.3
|
|
1571
|
+
'@swc/core-win32-ia32-msvc': 1.15.3
|
|
1572
|
+
'@swc/core-win32-x64-msvc': 1.15.3
|
|
1573
|
+
|
|
1574
|
+
'@swc/counter@0.1.3': {}
|
|
1575
|
+
|
|
1576
|
+
'@swc/types@0.1.25':
|
|
1577
|
+
dependencies:
|
|
1578
|
+
'@swc/counter': 0.1.3
|
|
1579
|
+
|
|
1580
|
+
'@tailwindcss/node@4.1.17':
|
|
1581
|
+
dependencies:
|
|
1582
|
+
'@jridgewell/remapping': 2.3.5
|
|
1583
|
+
enhanced-resolve: 5.18.3
|
|
1584
|
+
jiti: 2.6.1
|
|
1585
|
+
lightningcss: 1.30.2
|
|
1586
|
+
magic-string: 0.30.21
|
|
1587
|
+
source-map-js: 1.2.1
|
|
1588
|
+
tailwindcss: 4.1.17
|
|
1589
|
+
|
|
1590
|
+
'@tailwindcss/oxide-android-arm64@4.1.17':
|
|
1591
|
+
optional: true
|
|
1592
|
+
|
|
1593
|
+
'@tailwindcss/oxide-darwin-arm64@4.1.17':
|
|
1594
|
+
optional: true
|
|
1595
|
+
|
|
1596
|
+
'@tailwindcss/oxide-darwin-x64@4.1.17':
|
|
1597
|
+
optional: true
|
|
1598
|
+
|
|
1599
|
+
'@tailwindcss/oxide-freebsd-x64@4.1.17':
|
|
1600
|
+
optional: true
|
|
1601
|
+
|
|
1602
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17':
|
|
1603
|
+
optional: true
|
|
1604
|
+
|
|
1605
|
+
'@tailwindcss/oxide-linux-arm64-gnu@4.1.17':
|
|
1606
|
+
optional: true
|
|
1607
|
+
|
|
1608
|
+
'@tailwindcss/oxide-linux-arm64-musl@4.1.17':
|
|
1609
|
+
optional: true
|
|
1610
|
+
|
|
1611
|
+
'@tailwindcss/oxide-linux-x64-gnu@4.1.17':
|
|
1612
|
+
optional: true
|
|
1613
|
+
|
|
1614
|
+
'@tailwindcss/oxide-linux-x64-musl@4.1.17':
|
|
1615
|
+
optional: true
|
|
1616
|
+
|
|
1617
|
+
'@tailwindcss/oxide-wasm32-wasi@4.1.17':
|
|
1618
|
+
optional: true
|
|
1619
|
+
|
|
1620
|
+
'@tailwindcss/oxide-win32-arm64-msvc@4.1.17':
|
|
1621
|
+
optional: true
|
|
1622
|
+
|
|
1623
|
+
'@tailwindcss/oxide-win32-x64-msvc@4.1.17':
|
|
1624
|
+
optional: true
|
|
1625
|
+
|
|
1626
|
+
'@tailwindcss/oxide@4.1.17':
|
|
1627
|
+
optionalDependencies:
|
|
1628
|
+
'@tailwindcss/oxide-android-arm64': 4.1.17
|
|
1629
|
+
'@tailwindcss/oxide-darwin-arm64': 4.1.17
|
|
1630
|
+
'@tailwindcss/oxide-darwin-x64': 4.1.17
|
|
1631
|
+
'@tailwindcss/oxide-freebsd-x64': 4.1.17
|
|
1632
|
+
'@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.17
|
|
1633
|
+
'@tailwindcss/oxide-linux-arm64-gnu': 4.1.17
|
|
1634
|
+
'@tailwindcss/oxide-linux-arm64-musl': 4.1.17
|
|
1635
|
+
'@tailwindcss/oxide-linux-x64-gnu': 4.1.17
|
|
1636
|
+
'@tailwindcss/oxide-linux-x64-musl': 4.1.17
|
|
1637
|
+
'@tailwindcss/oxide-wasm32-wasi': 4.1.17
|
|
1638
|
+
'@tailwindcss/oxide-win32-arm64-msvc': 4.1.17
|
|
1639
|
+
'@tailwindcss/oxide-win32-x64-msvc': 4.1.17
|
|
1640
|
+
|
|
1641
|
+
'@tailwindcss/postcss@4.1.17':
|
|
1642
|
+
dependencies:
|
|
1643
|
+
'@alloc/quick-lru': 5.2.0
|
|
1644
|
+
'@tailwindcss/node': 4.1.17
|
|
1645
|
+
'@tailwindcss/oxide': 4.1.17
|
|
1646
|
+
postcss: 8.5.6
|
|
1647
|
+
tailwindcss: 4.1.17
|
|
1648
|
+
|
|
1649
|
+
'@tailwindcss/vite@4.1.17(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2))':
|
|
1650
|
+
dependencies:
|
|
1651
|
+
'@tailwindcss/node': 4.1.17
|
|
1652
|
+
'@tailwindcss/oxide': 4.1.17
|
|
1653
|
+
tailwindcss: 4.1.17
|
|
1654
|
+
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)
|
|
1655
|
+
|
|
1656
|
+
'@tanstack/query-core@5.90.10': {}
|
|
1657
|
+
|
|
1658
|
+
'@tanstack/query-devtools@5.91.0': {}
|
|
1659
|
+
|
|
1660
|
+
'@tanstack/react-query-devtools@5.91.0(@tanstack/react-query@5.90.10(react@19.2.0))(react@19.2.0)':
|
|
1661
|
+
dependencies:
|
|
1662
|
+
'@tanstack/query-devtools': 5.91.0
|
|
1663
|
+
'@tanstack/react-query': 5.90.10(react@19.2.0)
|
|
1664
|
+
react: 19.2.0
|
|
1665
|
+
|
|
1666
|
+
'@tanstack/react-query@5.90.10(react@19.2.0)':
|
|
1667
|
+
dependencies:
|
|
1668
|
+
'@tanstack/query-core': 5.90.10
|
|
1669
|
+
react: 19.2.0
|
|
1670
|
+
|
|
1671
|
+
'@types/estree@1.0.8': {}
|
|
1672
|
+
|
|
1673
|
+
'@types/node@24.10.1':
|
|
1674
|
+
dependencies:
|
|
1675
|
+
undici-types: 7.16.0
|
|
1676
|
+
|
|
1677
|
+
'@types/react-dom@19.2.3(@types/react@19.2.6)':
|
|
1678
|
+
dependencies:
|
|
1679
|
+
'@types/react': 19.2.6
|
|
1680
|
+
|
|
1681
|
+
'@types/react@19.2.6':
|
|
1682
|
+
dependencies:
|
|
1683
|
+
csstype: 3.2.3
|
|
1684
|
+
|
|
1685
|
+
'@vitejs/plugin-react-swc@4.2.2(vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2))':
|
|
1686
|
+
dependencies:
|
|
1687
|
+
'@rolldown/pluginutils': 1.0.0-beta.47
|
|
1688
|
+
'@swc/core': 1.15.3
|
|
1689
|
+
vite: 7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2)
|
|
1690
|
+
transitivePeerDependencies:
|
|
1691
|
+
- '@swc/helpers'
|
|
1692
|
+
|
|
1693
|
+
autoprefixer@10.4.22(postcss@8.5.6):
|
|
1694
|
+
dependencies:
|
|
1695
|
+
browserslist: 4.28.0
|
|
1696
|
+
caniuse-lite: 1.0.30001756
|
|
1697
|
+
fraction.js: 5.3.4
|
|
1698
|
+
normalize-range: 0.1.2
|
|
1699
|
+
picocolors: 1.1.1
|
|
1700
|
+
postcss: 8.5.6
|
|
1701
|
+
postcss-value-parser: 4.2.0
|
|
1702
|
+
|
|
1703
|
+
baseline-browser-mapping@2.8.31: {}
|
|
1704
|
+
|
|
1705
|
+
browserslist@4.28.0:
|
|
1706
|
+
dependencies:
|
|
1707
|
+
baseline-browser-mapping: 2.8.31
|
|
1708
|
+
caniuse-lite: 1.0.30001756
|
|
1709
|
+
electron-to-chromium: 1.5.259
|
|
1710
|
+
node-releases: 2.0.27
|
|
1711
|
+
update-browserslist-db: 1.1.4(browserslist@4.28.0)
|
|
1712
|
+
|
|
1713
|
+
buffer-from@1.1.2: {}
|
|
1714
|
+
|
|
1715
|
+
caniuse-lite@1.0.30001756: {}
|
|
1716
|
+
|
|
1717
|
+
class-variance-authority@0.7.1:
|
|
1718
|
+
dependencies:
|
|
1719
|
+
clsx: 2.1.1
|
|
1720
|
+
|
|
1721
|
+
clsx@2.1.1: {}
|
|
1722
|
+
|
|
1723
|
+
cookie@1.0.2: {}
|
|
1724
|
+
|
|
1725
|
+
csstype@3.2.3: {}
|
|
1726
|
+
|
|
1727
|
+
debug@4.4.3:
|
|
1728
|
+
dependencies:
|
|
1729
|
+
ms: 2.1.3
|
|
1730
|
+
|
|
1731
|
+
detect-libc@2.1.2: {}
|
|
1732
|
+
|
|
1733
|
+
drizzle-kit@0.31.7:
|
|
1734
|
+
dependencies:
|
|
1735
|
+
'@drizzle-team/brocli': 0.10.2
|
|
1736
|
+
'@esbuild-kit/esm-loader': 2.6.5
|
|
1737
|
+
esbuild: 0.25.12
|
|
1738
|
+
esbuild-register: 3.6.0(esbuild@0.25.12)
|
|
1739
|
+
transitivePeerDependencies:
|
|
1740
|
+
- supports-color
|
|
1741
|
+
|
|
1742
|
+
drizzle-orm@0.44.7: {}
|
|
1743
|
+
|
|
1744
|
+
electron-to-chromium@1.5.259: {}
|
|
1745
|
+
|
|
1746
|
+
enhanced-resolve@5.18.3:
|
|
1747
|
+
dependencies:
|
|
1748
|
+
graceful-fs: 4.2.11
|
|
1749
|
+
tapable: 2.3.0
|
|
1750
|
+
|
|
1751
|
+
esbuild-register@3.6.0(esbuild@0.25.12):
|
|
1752
|
+
dependencies:
|
|
1753
|
+
debug: 4.4.3
|
|
1754
|
+
esbuild: 0.25.12
|
|
1755
|
+
transitivePeerDependencies:
|
|
1756
|
+
- supports-color
|
|
1757
|
+
|
|
1758
|
+
esbuild@0.18.20:
|
|
1759
|
+
optionalDependencies:
|
|
1760
|
+
'@esbuild/android-arm': 0.18.20
|
|
1761
|
+
'@esbuild/android-arm64': 0.18.20
|
|
1762
|
+
'@esbuild/android-x64': 0.18.20
|
|
1763
|
+
'@esbuild/darwin-arm64': 0.18.20
|
|
1764
|
+
'@esbuild/darwin-x64': 0.18.20
|
|
1765
|
+
'@esbuild/freebsd-arm64': 0.18.20
|
|
1766
|
+
'@esbuild/freebsd-x64': 0.18.20
|
|
1767
|
+
'@esbuild/linux-arm': 0.18.20
|
|
1768
|
+
'@esbuild/linux-arm64': 0.18.20
|
|
1769
|
+
'@esbuild/linux-ia32': 0.18.20
|
|
1770
|
+
'@esbuild/linux-loong64': 0.18.20
|
|
1771
|
+
'@esbuild/linux-mips64el': 0.18.20
|
|
1772
|
+
'@esbuild/linux-ppc64': 0.18.20
|
|
1773
|
+
'@esbuild/linux-riscv64': 0.18.20
|
|
1774
|
+
'@esbuild/linux-s390x': 0.18.20
|
|
1775
|
+
'@esbuild/linux-x64': 0.18.20
|
|
1776
|
+
'@esbuild/netbsd-x64': 0.18.20
|
|
1777
|
+
'@esbuild/openbsd-x64': 0.18.20
|
|
1778
|
+
'@esbuild/sunos-x64': 0.18.20
|
|
1779
|
+
'@esbuild/win32-arm64': 0.18.20
|
|
1780
|
+
'@esbuild/win32-ia32': 0.18.20
|
|
1781
|
+
'@esbuild/win32-x64': 0.18.20
|
|
1782
|
+
|
|
1783
|
+
esbuild@0.25.12:
|
|
1784
|
+
optionalDependencies:
|
|
1785
|
+
'@esbuild/aix-ppc64': 0.25.12
|
|
1786
|
+
'@esbuild/android-arm': 0.25.12
|
|
1787
|
+
'@esbuild/android-arm64': 0.25.12
|
|
1788
|
+
'@esbuild/android-x64': 0.25.12
|
|
1789
|
+
'@esbuild/darwin-arm64': 0.25.12
|
|
1790
|
+
'@esbuild/darwin-x64': 0.25.12
|
|
1791
|
+
'@esbuild/freebsd-arm64': 0.25.12
|
|
1792
|
+
'@esbuild/freebsd-x64': 0.25.12
|
|
1793
|
+
'@esbuild/linux-arm': 0.25.12
|
|
1794
|
+
'@esbuild/linux-arm64': 0.25.12
|
|
1795
|
+
'@esbuild/linux-ia32': 0.25.12
|
|
1796
|
+
'@esbuild/linux-loong64': 0.25.12
|
|
1797
|
+
'@esbuild/linux-mips64el': 0.25.12
|
|
1798
|
+
'@esbuild/linux-ppc64': 0.25.12
|
|
1799
|
+
'@esbuild/linux-riscv64': 0.25.12
|
|
1800
|
+
'@esbuild/linux-s390x': 0.25.12
|
|
1801
|
+
'@esbuild/linux-x64': 0.25.12
|
|
1802
|
+
'@esbuild/netbsd-arm64': 0.25.12
|
|
1803
|
+
'@esbuild/netbsd-x64': 0.25.12
|
|
1804
|
+
'@esbuild/openbsd-arm64': 0.25.12
|
|
1805
|
+
'@esbuild/openbsd-x64': 0.25.12
|
|
1806
|
+
'@esbuild/openharmony-arm64': 0.25.12
|
|
1807
|
+
'@esbuild/sunos-x64': 0.25.12
|
|
1808
|
+
'@esbuild/win32-arm64': 0.25.12
|
|
1809
|
+
'@esbuild/win32-ia32': 0.25.12
|
|
1810
|
+
'@esbuild/win32-x64': 0.25.12
|
|
1811
|
+
|
|
1812
|
+
escalade@3.2.0: {}
|
|
1813
|
+
|
|
1814
|
+
fdir@6.5.0(picomatch@4.0.3):
|
|
1815
|
+
optionalDependencies:
|
|
1816
|
+
picomatch: 4.0.3
|
|
1817
|
+
|
|
1818
|
+
fraction.js@5.3.4: {}
|
|
1819
|
+
|
|
1820
|
+
fsevents@2.3.3:
|
|
1821
|
+
optional: true
|
|
1822
|
+
|
|
1823
|
+
get-tsconfig@4.13.0:
|
|
1824
|
+
dependencies:
|
|
1825
|
+
resolve-pkg-maps: 1.0.0
|
|
1826
|
+
|
|
1827
|
+
graceful-fs@4.2.11: {}
|
|
1828
|
+
|
|
1829
|
+
jiti@2.6.1: {}
|
|
1830
|
+
|
|
1831
|
+
lightningcss-android-arm64@1.30.2:
|
|
1832
|
+
optional: true
|
|
1833
|
+
|
|
1834
|
+
lightningcss-darwin-arm64@1.30.2:
|
|
1835
|
+
optional: true
|
|
1836
|
+
|
|
1837
|
+
lightningcss-darwin-x64@1.30.2:
|
|
1838
|
+
optional: true
|
|
1839
|
+
|
|
1840
|
+
lightningcss-freebsd-x64@1.30.2:
|
|
1841
|
+
optional: true
|
|
1842
|
+
|
|
1843
|
+
lightningcss-linux-arm-gnueabihf@1.30.2:
|
|
1844
|
+
optional: true
|
|
1845
|
+
|
|
1846
|
+
lightningcss-linux-arm64-gnu@1.30.2:
|
|
1847
|
+
optional: true
|
|
1848
|
+
|
|
1849
|
+
lightningcss-linux-arm64-musl@1.30.2:
|
|
1850
|
+
optional: true
|
|
1851
|
+
|
|
1852
|
+
lightningcss-linux-x64-gnu@1.30.2:
|
|
1853
|
+
optional: true
|
|
1854
|
+
|
|
1855
|
+
lightningcss-linux-x64-musl@1.30.2:
|
|
1856
|
+
optional: true
|
|
1857
|
+
|
|
1858
|
+
lightningcss-win32-arm64-msvc@1.30.2:
|
|
1859
|
+
optional: true
|
|
1860
|
+
|
|
1861
|
+
lightningcss-win32-x64-msvc@1.30.2:
|
|
1862
|
+
optional: true
|
|
1863
|
+
|
|
1864
|
+
lightningcss@1.30.2:
|
|
1865
|
+
dependencies:
|
|
1866
|
+
detect-libc: 2.1.2
|
|
1867
|
+
optionalDependencies:
|
|
1868
|
+
lightningcss-android-arm64: 1.30.2
|
|
1869
|
+
lightningcss-darwin-arm64: 1.30.2
|
|
1870
|
+
lightningcss-darwin-x64: 1.30.2
|
|
1871
|
+
lightningcss-freebsd-x64: 1.30.2
|
|
1872
|
+
lightningcss-linux-arm-gnueabihf: 1.30.2
|
|
1873
|
+
lightningcss-linux-arm64-gnu: 1.30.2
|
|
1874
|
+
lightningcss-linux-arm64-musl: 1.30.2
|
|
1875
|
+
lightningcss-linux-x64-gnu: 1.30.2
|
|
1876
|
+
lightningcss-linux-x64-musl: 1.30.2
|
|
1877
|
+
lightningcss-win32-arm64-msvc: 1.30.2
|
|
1878
|
+
lightningcss-win32-x64-msvc: 1.30.2
|
|
1879
|
+
|
|
1880
|
+
lucide-react@0.554.0(react@19.2.0):
|
|
1881
|
+
dependencies:
|
|
1882
|
+
react: 19.2.0
|
|
1883
|
+
|
|
1884
|
+
magic-string@0.30.21:
|
|
1885
|
+
dependencies:
|
|
1886
|
+
'@jridgewell/sourcemap-codec': 1.5.5
|
|
1887
|
+
|
|
1888
|
+
ms@2.1.3: {}
|
|
1889
|
+
|
|
1890
|
+
nanoid@3.3.11: {}
|
|
1891
|
+
|
|
1892
|
+
node-releases@2.0.27: {}
|
|
1893
|
+
|
|
1894
|
+
normalize-range@0.1.2: {}
|
|
1895
|
+
|
|
1896
|
+
picocolors@1.1.1: {}
|
|
1897
|
+
|
|
1898
|
+
picomatch@4.0.3: {}
|
|
1899
|
+
|
|
1900
|
+
postcss-value-parser@4.2.0: {}
|
|
1901
|
+
|
|
1902
|
+
postcss@8.5.6:
|
|
1903
|
+
dependencies:
|
|
1904
|
+
nanoid: 3.3.11
|
|
1905
|
+
picocolors: 1.1.1
|
|
1906
|
+
source-map-js: 1.2.1
|
|
1907
|
+
|
|
1908
|
+
react-dom@19.2.0(react@19.2.0):
|
|
1909
|
+
dependencies:
|
|
1910
|
+
react: 19.2.0
|
|
1911
|
+
scheduler: 0.27.0
|
|
1912
|
+
|
|
1913
|
+
react-router-dom@7.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
|
|
1914
|
+
dependencies:
|
|
1915
|
+
react: 19.2.0
|
|
1916
|
+
react-dom: 19.2.0(react@19.2.0)
|
|
1917
|
+
react-router: 7.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
|
|
1918
|
+
|
|
1919
|
+
react-router@7.9.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
|
|
1920
|
+
dependencies:
|
|
1921
|
+
cookie: 1.0.2
|
|
1922
|
+
react: 19.2.0
|
|
1923
|
+
set-cookie-parser: 2.7.2
|
|
1924
|
+
optionalDependencies:
|
|
1925
|
+
react-dom: 19.2.0(react@19.2.0)
|
|
1926
|
+
|
|
1927
|
+
react@19.2.0: {}
|
|
1928
|
+
|
|
1929
|
+
resolve-pkg-maps@1.0.0: {}
|
|
1930
|
+
|
|
1931
|
+
rollup@4.53.3:
|
|
1932
|
+
dependencies:
|
|
1933
|
+
'@types/estree': 1.0.8
|
|
1934
|
+
optionalDependencies:
|
|
1935
|
+
'@rollup/rollup-android-arm-eabi': 4.53.3
|
|
1936
|
+
'@rollup/rollup-android-arm64': 4.53.3
|
|
1937
|
+
'@rollup/rollup-darwin-arm64': 4.53.3
|
|
1938
|
+
'@rollup/rollup-darwin-x64': 4.53.3
|
|
1939
|
+
'@rollup/rollup-freebsd-arm64': 4.53.3
|
|
1940
|
+
'@rollup/rollup-freebsd-x64': 4.53.3
|
|
1941
|
+
'@rollup/rollup-linux-arm-gnueabihf': 4.53.3
|
|
1942
|
+
'@rollup/rollup-linux-arm-musleabihf': 4.53.3
|
|
1943
|
+
'@rollup/rollup-linux-arm64-gnu': 4.53.3
|
|
1944
|
+
'@rollup/rollup-linux-arm64-musl': 4.53.3
|
|
1945
|
+
'@rollup/rollup-linux-loong64-gnu': 4.53.3
|
|
1946
|
+
'@rollup/rollup-linux-ppc64-gnu': 4.53.3
|
|
1947
|
+
'@rollup/rollup-linux-riscv64-gnu': 4.53.3
|
|
1948
|
+
'@rollup/rollup-linux-riscv64-musl': 4.53.3
|
|
1949
|
+
'@rollup/rollup-linux-s390x-gnu': 4.53.3
|
|
1950
|
+
'@rollup/rollup-linux-x64-gnu': 4.53.3
|
|
1951
|
+
'@rollup/rollup-linux-x64-musl': 4.53.3
|
|
1952
|
+
'@rollup/rollup-openharmony-arm64': 4.53.3
|
|
1953
|
+
'@rollup/rollup-win32-arm64-msvc': 4.53.3
|
|
1954
|
+
'@rollup/rollup-win32-ia32-msvc': 4.53.3
|
|
1955
|
+
'@rollup/rollup-win32-x64-gnu': 4.53.3
|
|
1956
|
+
'@rollup/rollup-win32-x64-msvc': 4.53.3
|
|
1957
|
+
fsevents: 2.3.3
|
|
1958
|
+
|
|
1959
|
+
scheduler@0.27.0: {}
|
|
1960
|
+
|
|
1961
|
+
set-cookie-parser@2.7.2: {}
|
|
1962
|
+
|
|
1963
|
+
source-map-js@1.2.1: {}
|
|
1964
|
+
|
|
1965
|
+
source-map-support@0.5.21:
|
|
1966
|
+
dependencies:
|
|
1967
|
+
buffer-from: 1.1.2
|
|
1968
|
+
source-map: 0.6.1
|
|
1969
|
+
|
|
1970
|
+
source-map@0.6.1: {}
|
|
1971
|
+
|
|
1972
|
+
tailwind-merge@3.4.0: {}
|
|
1973
|
+
|
|
1974
|
+
tailwindcss-animate@1.0.7(tailwindcss@4.1.17):
|
|
1975
|
+
dependencies:
|
|
1976
|
+
tailwindcss: 4.1.17
|
|
1977
|
+
|
|
1978
|
+
tailwindcss@4.1.17: {}
|
|
1979
|
+
|
|
1980
|
+
tapable@2.3.0: {}
|
|
1981
|
+
|
|
1982
|
+
tinyglobby@0.2.15:
|
|
1983
|
+
dependencies:
|
|
1984
|
+
fdir: 6.5.0(picomatch@4.0.3)
|
|
1985
|
+
picomatch: 4.0.3
|
|
1986
|
+
|
|
1987
|
+
typescript@5.9.3: {}
|
|
1988
|
+
|
|
1989
|
+
undici-types@7.16.0: {}
|
|
1990
|
+
|
|
1991
|
+
update-browserslist-db@1.1.4(browserslist@4.28.0):
|
|
1992
|
+
dependencies:
|
|
1993
|
+
browserslist: 4.28.0
|
|
1994
|
+
escalade: 3.2.0
|
|
1995
|
+
picocolors: 1.1.1
|
|
1996
|
+
|
|
1997
|
+
vite@7.2.4(@types/node@24.10.1)(jiti@2.6.1)(lightningcss@1.30.2):
|
|
1998
|
+
dependencies:
|
|
1999
|
+
esbuild: 0.25.12
|
|
2000
|
+
fdir: 6.5.0(picomatch@4.0.3)
|
|
2001
|
+
picomatch: 4.0.3
|
|
2002
|
+
postcss: 8.5.6
|
|
2003
|
+
rollup: 4.53.3
|
|
2004
|
+
tinyglobby: 0.2.15
|
|
2005
|
+
optionalDependencies:
|
|
2006
|
+
'@types/node': 24.10.1
|
|
2007
|
+
fsevents: 2.3.3
|
|
2008
|
+
jiti: 2.6.1
|
|
2009
|
+
lightningcss: 1.30.2
|
|
2010
|
+
|
|
2011
|
+
zod@4.1.13: {}
|