@assistant-ui/mcp-docs-server 0.1.25 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.docs/organized/code-examples/waterfall.md +4 -4
- package/.docs/organized/code-examples/with-a2a.md +5 -5
- package/.docs/organized/code-examples/with-ag-ui.md +6 -6
- package/.docs/organized/code-examples/with-ai-sdk-v6.md +7 -7
- package/.docs/organized/code-examples/with-artifacts.md +7 -7
- package/.docs/organized/code-examples/with-assistant-transport.md +5 -5
- package/.docs/organized/code-examples/with-chain-of-thought.md +7 -7
- package/.docs/organized/code-examples/with-cloud-standalone.md +8 -8
- package/.docs/organized/code-examples/with-cloud.md +7 -7
- package/.docs/organized/code-examples/with-custom-thread-list.md +7 -7
- package/.docs/organized/code-examples/with-elevenlabs-conversational.md +511 -0
- package/.docs/organized/code-examples/with-elevenlabs-scribe.md +10 -10
- package/.docs/organized/code-examples/with-expo.md +18 -18
- package/.docs/organized/code-examples/with-external-store.md +5 -5
- package/.docs/organized/code-examples/with-ffmpeg.md +220 -66
- package/.docs/organized/code-examples/with-google-adk.md +6 -6
- package/.docs/organized/code-examples/with-heat-graph.md +4 -4
- package/.docs/organized/code-examples/with-interactables.md +836 -0
- package/.docs/organized/code-examples/with-langgraph.md +6 -6
- package/.docs/organized/code-examples/with-livekit.md +591 -0
- package/.docs/organized/code-examples/with-parent-id-grouping.md +6 -6
- package/.docs/organized/code-examples/with-react-hook-form.md +8 -8
- package/.docs/organized/code-examples/with-react-ink.md +3 -3
- package/.docs/organized/code-examples/with-react-router.md +11 -11
- package/.docs/organized/code-examples/with-store.md +11 -6
- package/.docs/organized/code-examples/with-tanstack.md +8 -8
- package/.docs/organized/code-examples/with-tap-runtime.md +8 -8
- package/.docs/raw/blog/2026-03-launch-week/index.mdx +31 -0
- package/.docs/raw/docs/(docs)/cli.mdx +60 -0
- package/.docs/raw/docs/(docs)/copilots/model-context.mdx +9 -1
- package/.docs/raw/docs/(docs)/guides/attachments.mdx +65 -4
- package/.docs/raw/docs/(docs)/guides/interactables.mdx +354 -0
- package/.docs/raw/docs/(docs)/guides/message-timing.mdx +3 -3
- package/.docs/raw/docs/(docs)/guides/multi-agent.mdx +1 -0
- package/.docs/raw/docs/(docs)/guides/tool-ui.mdx +29 -0
- package/.docs/raw/docs/(docs)/guides/voice.mdx +333 -0
- package/.docs/raw/docs/(reference)/api-reference/primitives/composer.mdx +128 -0
- package/.docs/raw/docs/(reference)/api-reference/primitives/message-part.mdx +23 -0
- package/.docs/raw/docs/cloud/ai-sdk-assistant-ui.mdx +6 -0
- package/.docs/raw/docs/cloud/ai-sdk.mdx +81 -1
- package/.docs/raw/docs/ink/primitives.mdx +141 -0
- package/.docs/raw/docs/primitives/action-bar.mdx +351 -0
- package/.docs/raw/docs/primitives/assistant-modal.mdx +215 -0
- package/.docs/raw/docs/primitives/attachment.mdx +216 -0
- package/.docs/raw/docs/primitives/branch-picker.mdx +221 -0
- package/.docs/raw/docs/primitives/chain-of-thought.mdx +311 -0
- package/.docs/raw/docs/primitives/composer.mdx +526 -0
- package/.docs/raw/docs/primitives/error.mdx +141 -0
- package/.docs/raw/docs/primitives/index.mdx +98 -0
- package/.docs/raw/docs/primitives/message.mdx +524 -0
- package/.docs/raw/docs/primitives/selection-toolbar.mdx +165 -0
- package/.docs/raw/docs/primitives/suggestion.mdx +242 -0
- package/.docs/raw/docs/primitives/thread-list.mdx +404 -0
- package/.docs/raw/docs/primitives/thread.mdx +482 -0
- package/.docs/raw/docs/runtimes/a2a/index.mdx +4 -0
- package/.docs/raw/docs/runtimes/ai-sdk/v6.mdx +2 -2
- package/.docs/raw/docs/runtimes/assistant-transport.mdx +6 -2
- package/.docs/raw/docs/ui/context-display.mdx +2 -2
- package/.docs/raw/docs/ui/mention.mdx +168 -0
- package/.docs/raw/docs/ui/model-selector.mdx +1 -1
- package/.docs/raw/docs/ui/voice.mdx +172 -0
- package/package.json +3 -4
|
@@ -769,19 +769,19 @@ export default nextConfig;
|
|
|
769
769
|
"@assistant-ui/react-o11y": "workspace:*",
|
|
770
770
|
"@assistant-ui/store": "workspace:*",
|
|
771
771
|
"@assistant-ui/tap": "workspace:*",
|
|
772
|
-
"next": "^16.
|
|
772
|
+
"next": "^16.2.2",
|
|
773
773
|
"react": "^19.2.4",
|
|
774
774
|
"react-dom": "^19.2.4"
|
|
775
775
|
},
|
|
776
776
|
"devDependencies": {
|
|
777
777
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
778
|
-
"@tailwindcss/postcss": "^4.2.
|
|
778
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
779
779
|
"@types/node": "^25.5.0",
|
|
780
780
|
"@types/react": "^19.2.14",
|
|
781
781
|
"@types/react-dom": "^19.2.3",
|
|
782
782
|
"postcss": "^8.5.8",
|
|
783
|
-
"tailwindcss": "^4.2.
|
|
784
|
-
"typescript": "
|
|
783
|
+
"tailwindcss": "^4.2.2",
|
|
784
|
+
"typescript": "5.9.3"
|
|
785
785
|
}
|
|
786
786
|
}
|
|
787
787
|
|
|
@@ -568,22 +568,22 @@ export default nextConfig;
|
|
|
568
568
|
"@assistant-ui/ui": "workspace:*",
|
|
569
569
|
"class-variance-authority": "^0.7.1",
|
|
570
570
|
"clsx": "^2.1.1",
|
|
571
|
-
"lucide-react": "^
|
|
572
|
-
"next": "^16.
|
|
571
|
+
"lucide-react": "^1.7.0",
|
|
572
|
+
"next": "^16.2.2",
|
|
573
573
|
"react": "^19.2.4",
|
|
574
574
|
"react-dom": "^19.2.4",
|
|
575
575
|
"tailwind-merge": "^3.5.0"
|
|
576
576
|
},
|
|
577
577
|
"devDependencies": {
|
|
578
578
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
579
|
-
"@tailwindcss/postcss": "^4.2.
|
|
579
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
580
580
|
"@types/node": "^25.5.0",
|
|
581
581
|
"@types/react": "^19.2.14",
|
|
582
582
|
"@types/react-dom": "^19.2.3",
|
|
583
583
|
"postcss": "^8.5.8",
|
|
584
|
-
"tailwindcss": "^4.2.
|
|
584
|
+
"tailwindcss": "^4.2.2",
|
|
585
585
|
"tw-animate-css": "^1.4.0",
|
|
586
|
-
"typescript": "
|
|
586
|
+
"typescript": "5.9.3"
|
|
587
587
|
}
|
|
588
588
|
}
|
|
589
589
|
|
|
@@ -413,29 +413,29 @@ export default nextConfig;
|
|
|
413
413
|
"start": "next start"
|
|
414
414
|
},
|
|
415
415
|
"dependencies": {
|
|
416
|
-
"@ag-ui/client": "^0.0.
|
|
416
|
+
"@ag-ui/client": "^0.0.49",
|
|
417
417
|
"@assistant-ui/react": "workspace:*",
|
|
418
418
|
"@assistant-ui/react-ag-ui": "workspace:*",
|
|
419
419
|
"@assistant-ui/react-markdown": "workspace:*",
|
|
420
420
|
"@assistant-ui/ui": "workspace:*",
|
|
421
421
|
"class-variance-authority": "^0.7.1",
|
|
422
422
|
"clsx": "^2.1.1",
|
|
423
|
-
"lucide-react": "^
|
|
424
|
-
"next": "^16.
|
|
423
|
+
"lucide-react": "^1.7.0",
|
|
424
|
+
"next": "^16.2.2",
|
|
425
425
|
"react": "^19.2.4",
|
|
426
426
|
"react-dom": "^19.2.4",
|
|
427
427
|
"tailwind-merge": "^3.5.0"
|
|
428
428
|
},
|
|
429
429
|
"devDependencies": {
|
|
430
430
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
431
|
-
"@tailwindcss/postcss": "^4.2.
|
|
431
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
432
432
|
"@types/node": "^25.5.0",
|
|
433
433
|
"@types/react": "^19.2.14",
|
|
434
434
|
"@types/react-dom": "^19.2.3",
|
|
435
435
|
"postcss": "^8.5.8",
|
|
436
|
-
"tailwindcss": "^4.2.
|
|
436
|
+
"tailwindcss": "^4.2.2",
|
|
437
437
|
"tw-animate-css": "^1.4.0",
|
|
438
|
-
"typescript": "
|
|
438
|
+
"typescript": "5.9.3"
|
|
439
439
|
}
|
|
440
440
|
}
|
|
441
441
|
|
|
@@ -315,16 +315,16 @@ export default nextConfig;
|
|
|
315
315
|
"start": "next start"
|
|
316
316
|
},
|
|
317
317
|
"dependencies": {
|
|
318
|
-
"@ai-sdk/openai": "^3.0.
|
|
318
|
+
"@ai-sdk/openai": "^3.0.50",
|
|
319
319
|
"@assistant-ui/react": "workspace:*",
|
|
320
320
|
"@assistant-ui/react-ai-sdk": "workspace:*",
|
|
321
321
|
"@assistant-ui/react-markdown": "workspace:*",
|
|
322
322
|
"@assistant-ui/ui": "workspace:*",
|
|
323
|
-
"ai": "^6.0.
|
|
323
|
+
"ai": "^6.0.144",
|
|
324
324
|
"class-variance-authority": "^0.7.1",
|
|
325
325
|
"clsx": "^2.1.1",
|
|
326
|
-
"lucide-react": "^
|
|
327
|
-
"next": "^16.
|
|
326
|
+
"lucide-react": "^1.7.0",
|
|
327
|
+
"next": "^16.2.2",
|
|
328
328
|
"react": "^19.2.4",
|
|
329
329
|
"react-dom": "^19.2.4",
|
|
330
330
|
"tailwind-merge": "^3.5.0",
|
|
@@ -332,14 +332,14 @@ export default nextConfig;
|
|
|
332
332
|
},
|
|
333
333
|
"devDependencies": {
|
|
334
334
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
335
|
-
"@tailwindcss/postcss": "^4.2.
|
|
335
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
336
336
|
"@types/node": "^25.5.0",
|
|
337
337
|
"@types/react": "^19.2.14",
|
|
338
338
|
"@types/react-dom": "^19.2.3",
|
|
339
339
|
"postcss": "^8.5.8",
|
|
340
|
-
"tailwindcss": "^4.2.
|
|
340
|
+
"tailwindcss": "^4.2.2",
|
|
341
341
|
"tw-animate-css": "^1.4.0",
|
|
342
|
-
"typescript": "
|
|
342
|
+
"typescript": "5.9.3"
|
|
343
343
|
}
|
|
344
344
|
}
|
|
345
345
|
|
|
@@ -413,16 +413,16 @@ export default nextConfig;
|
|
|
413
413
|
"start": "next start"
|
|
414
414
|
},
|
|
415
415
|
"dependencies": {
|
|
416
|
-
"@ai-sdk/openai": "^3.0.
|
|
416
|
+
"@ai-sdk/openai": "^3.0.50",
|
|
417
417
|
"@assistant-ui/react": "workspace:*",
|
|
418
418
|
"@assistant-ui/react-ai-sdk": "workspace:*",
|
|
419
419
|
"@assistant-ui/react-markdown": "workspace:*",
|
|
420
420
|
"@assistant-ui/ui": "workspace:*",
|
|
421
|
-
"ai": "^6.0.
|
|
421
|
+
"ai": "^6.0.144",
|
|
422
422
|
"class-variance-authority": "^0.7.1",
|
|
423
423
|
"clsx": "^2.1.1",
|
|
424
|
-
"lucide-react": "^
|
|
425
|
-
"next": "^16.
|
|
424
|
+
"lucide-react": "^1.7.0",
|
|
425
|
+
"next": "^16.2.2",
|
|
426
426
|
"react": "^19.2.4",
|
|
427
427
|
"react-dom": "^19.2.4",
|
|
428
428
|
"tailwind-merge": "^3.5.0",
|
|
@@ -430,14 +430,14 @@ export default nextConfig;
|
|
|
430
430
|
},
|
|
431
431
|
"devDependencies": {
|
|
432
432
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
433
|
-
"@tailwindcss/postcss": "^4.2.
|
|
433
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
434
434
|
"@types/node": "^25.5.0",
|
|
435
435
|
"@types/react": "^19.2.14",
|
|
436
436
|
"@types/react-dom": "^19.2.3",
|
|
437
437
|
"postcss": "^8.5.8",
|
|
438
|
-
"tailwindcss": "^4.2.
|
|
438
|
+
"tailwindcss": "^4.2.2",
|
|
439
439
|
"tw-animate-css": "^1.4.0",
|
|
440
|
-
"typescript": "
|
|
440
|
+
"typescript": "5.9.3"
|
|
441
441
|
}
|
|
442
442
|
}
|
|
443
443
|
|
|
@@ -423,8 +423,8 @@ export default nextConfig;
|
|
|
423
423
|
"@assistant-ui/ui": "workspace:*",
|
|
424
424
|
"class-variance-authority": "^0.7.1",
|
|
425
425
|
"clsx": "^2.1.1",
|
|
426
|
-
"lucide-react": "^
|
|
427
|
-
"next": "^16.
|
|
426
|
+
"lucide-react": "^1.7.0",
|
|
427
|
+
"next": "^16.2.2",
|
|
428
428
|
"react": "^19.2.4",
|
|
429
429
|
"react-dom": "^19.2.4",
|
|
430
430
|
"tailwind-merge": "^3.5.0",
|
|
@@ -432,14 +432,14 @@ export default nextConfig;
|
|
|
432
432
|
},
|
|
433
433
|
"devDependencies": {
|
|
434
434
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
435
|
-
"@tailwindcss/postcss": "^4.2.
|
|
435
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
436
436
|
"@types/node": "^25.5.0",
|
|
437
437
|
"@types/react": "^19.2.14",
|
|
438
438
|
"@types/react-dom": "^19.2.3",
|
|
439
439
|
"postcss": "^8.5.8",
|
|
440
|
-
"tailwindcss": "^4.2.
|
|
440
|
+
"tailwindcss": "^4.2.2",
|
|
441
441
|
"tw-animate-css": "^1.4.0",
|
|
442
|
-
"typescript": "
|
|
442
|
+
"typescript": "5.9.3"
|
|
443
443
|
}
|
|
444
444
|
}
|
|
445
445
|
|
|
@@ -557,16 +557,16 @@ export default nextConfig;
|
|
|
557
557
|
"start": "next start"
|
|
558
558
|
},
|
|
559
559
|
"dependencies": {
|
|
560
|
-
"@ai-sdk/openai": "^3.0.
|
|
560
|
+
"@ai-sdk/openai": "^3.0.50",
|
|
561
561
|
"@assistant-ui/react": "workspace:*",
|
|
562
562
|
"@assistant-ui/react-ai-sdk": "workspace:*",
|
|
563
563
|
"@assistant-ui/react-markdown": "workspace:*",
|
|
564
564
|
"@assistant-ui/ui": "workspace:*",
|
|
565
|
-
"ai": "^6.0.
|
|
565
|
+
"ai": "^6.0.144",
|
|
566
566
|
"class-variance-authority": "^0.7.1",
|
|
567
567
|
"clsx": "^2.1.1",
|
|
568
|
-
"lucide-react": "^
|
|
569
|
-
"next": "^16.
|
|
568
|
+
"lucide-react": "^1.7.0",
|
|
569
|
+
"next": "^16.2.2",
|
|
570
570
|
"react": "^19.2.4",
|
|
571
571
|
"react-dom": "^19.2.4",
|
|
572
572
|
"tailwind-merge": "^3.5.0",
|
|
@@ -574,14 +574,14 @@ export default nextConfig;
|
|
|
574
574
|
},
|
|
575
575
|
"devDependencies": {
|
|
576
576
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
577
|
-
"@tailwindcss/postcss": "^4.2.
|
|
577
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
578
578
|
"@types/node": "^25.5.0",
|
|
579
579
|
"@types/react": "^19.2.14",
|
|
580
580
|
"@types/react-dom": "^19.2.3",
|
|
581
581
|
"postcss": "^8.5.8",
|
|
582
|
-
"tailwindcss": "^4.2.
|
|
582
|
+
"tailwindcss": "^4.2.2",
|
|
583
583
|
"tw-animate-css": "^1.4.0",
|
|
584
|
-
"typescript": "
|
|
584
|
+
"typescript": "5.9.3"
|
|
585
585
|
}
|
|
586
586
|
}
|
|
587
587
|
|
|
@@ -565,27 +565,27 @@ export default nextConfig;
|
|
|
565
565
|
"start": "next start"
|
|
566
566
|
},
|
|
567
567
|
"dependencies": {
|
|
568
|
-
"@ai-sdk/openai": "^3.0.
|
|
568
|
+
"@ai-sdk/openai": "^3.0.50",
|
|
569
569
|
"@assistant-ui/cloud-ai-sdk": "workspace:*",
|
|
570
|
-
"ai": "^6.0.
|
|
570
|
+
"ai": "^6.0.144",
|
|
571
571
|
"class-variance-authority": "^0.7.1",
|
|
572
572
|
"clsx": "^2.1.1",
|
|
573
|
-
"lucide-react": "^
|
|
574
|
-
"next": "^16.
|
|
573
|
+
"lucide-react": "^1.7.0",
|
|
574
|
+
"next": "^16.2.2",
|
|
575
575
|
"react": "^19.2.4",
|
|
576
576
|
"react-dom": "^19.2.4",
|
|
577
577
|
"tailwind-merge": "^3.5.0"
|
|
578
578
|
},
|
|
579
579
|
"devDependencies": {
|
|
580
580
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
581
|
-
"@tailwindcss/postcss": "^4.2.
|
|
581
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
582
582
|
"@types/node": "^25.5.0",
|
|
583
583
|
"@types/react": "^19.2.14",
|
|
584
584
|
"@types/react-dom": "^19.2.3",
|
|
585
585
|
"postcss": "^8.5.8",
|
|
586
|
-
"tailwindcss": "^4.2.
|
|
586
|
+
"tailwindcss": "^4.2.2",
|
|
587
587
|
"tw-animate-css": "^1.4.0",
|
|
588
|
-
"typescript": "
|
|
588
|
+
"typescript": "5.9.3"
|
|
589
589
|
}
|
|
590
590
|
}
|
|
591
591
|
|
|
@@ -598,7 +598,7 @@ export default nextConfig;
|
|
|
598
598
|
|
|
599
599
|
Lightweight cloud persistence for AI SDK apps without assistant-ui components.
|
|
600
600
|
|
|
601
|
-
> **Want the full assistant-ui experience?** See [with-cloud](
|
|
601
|
+
> **Want the full assistant-ui experience?** See [with-cloud](https://github.com/assistant-ui/assistant-ui/tree/main/examples/with-cloud) instead, which uses `useChatRuntime` with `<Thread />` and other primitives.
|
|
602
602
|
|
|
603
603
|
## Setup
|
|
604
604
|
|
|
@@ -327,30 +327,30 @@ export default nextConfig;
|
|
|
327
327
|
"start": "next start"
|
|
328
328
|
},
|
|
329
329
|
"dependencies": {
|
|
330
|
-
"@ai-sdk/openai": "^3.0.
|
|
330
|
+
"@ai-sdk/openai": "^3.0.50",
|
|
331
331
|
"@assistant-ui/react": "workspace:*",
|
|
332
332
|
"@assistant-ui/react-ai-sdk": "workspace:*",
|
|
333
333
|
"@assistant-ui/react-markdown": "workspace:*",
|
|
334
334
|
"@assistant-ui/ui": "workspace:*",
|
|
335
|
-
"ai": "^6.0.
|
|
335
|
+
"ai": "^6.0.144",
|
|
336
336
|
"class-variance-authority": "^0.7.1",
|
|
337
337
|
"clsx": "^2.1.1",
|
|
338
|
-
"lucide-react": "^
|
|
339
|
-
"next": "^16.
|
|
338
|
+
"lucide-react": "^1.7.0",
|
|
339
|
+
"next": "^16.2.2",
|
|
340
340
|
"react": "^19.2.4",
|
|
341
341
|
"react-dom": "^19.2.4",
|
|
342
342
|
"tailwind-merge": "^3.5.0"
|
|
343
343
|
},
|
|
344
344
|
"devDependencies": {
|
|
345
345
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
346
|
-
"@tailwindcss/postcss": "^4.2.
|
|
346
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
347
347
|
"@types/node": "^25.5.0",
|
|
348
348
|
"@types/react": "^19.2.14",
|
|
349
349
|
"@types/react-dom": "^19.2.3",
|
|
350
350
|
"postcss": "^8.5.8",
|
|
351
|
-
"tailwindcss": "^4.2.
|
|
351
|
+
"tailwindcss": "^4.2.2",
|
|
352
352
|
"tw-animate-css": "^1.4.0",
|
|
353
|
-
"typescript": "
|
|
353
|
+
"typescript": "5.9.3"
|
|
354
354
|
}
|
|
355
355
|
}
|
|
356
356
|
|
|
@@ -414,17 +414,17 @@ export default nextConfig;
|
|
|
414
414
|
"start": "next start"
|
|
415
415
|
},
|
|
416
416
|
"dependencies": {
|
|
417
|
-
"@ai-sdk/openai": "^3.0.
|
|
417
|
+
"@ai-sdk/openai": "^3.0.50",
|
|
418
418
|
"@assistant-ui/react": "workspace:*",
|
|
419
419
|
"@assistant-ui/react-ai-sdk": "workspace:*",
|
|
420
420
|
"@assistant-ui/react-markdown": "workspace:*",
|
|
421
421
|
"@assistant-ui/ui": "workspace:*",
|
|
422
|
-
"ai": "^6.0.
|
|
422
|
+
"ai": "^6.0.144",
|
|
423
423
|
"assistant-stream": "workspace:*",
|
|
424
424
|
"class-variance-authority": "^0.7.1",
|
|
425
425
|
"clsx": "^2.1.1",
|
|
426
|
-
"lucide-react": "^
|
|
427
|
-
"next": "^16.
|
|
426
|
+
"lucide-react": "^1.7.0",
|
|
427
|
+
"next": "^16.2.2",
|
|
428
428
|
"react": "^19.2.4",
|
|
429
429
|
"react-dom": "^19.2.4",
|
|
430
430
|
"tailwind-merge": "^3.5.0",
|
|
@@ -432,14 +432,14 @@ export default nextConfig;
|
|
|
432
432
|
},
|
|
433
433
|
"devDependencies": {
|
|
434
434
|
"@assistant-ui/x-buildutils": "workspace:*",
|
|
435
|
-
"@tailwindcss/postcss": "^4.2.
|
|
435
|
+
"@tailwindcss/postcss": "^4.2.2",
|
|
436
436
|
"@types/node": "^25.5.0",
|
|
437
437
|
"@types/react": "^19.2.14",
|
|
438
438
|
"@types/react-dom": "^19.2.3",
|
|
439
439
|
"postcss": "^8.5.8",
|
|
440
|
-
"tailwindcss": "^4.2.
|
|
440
|
+
"tailwindcss": "^4.2.2",
|
|
441
441
|
"tw-animate-css": "^1.4.0",
|
|
442
|
-
"typescript": "
|
|
442
|
+
"typescript": "5.9.3"
|
|
443
443
|
}
|
|
444
444
|
}
|
|
445
445
|
|