mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
- Complete GitHub Actions workflow for demo deployment - Playwright test suite with 50+ tests - Performance monitoring and accessibility testing - Cross-browser compatibility testing - Local deployment scripts and documentation
40 lines
1.6 KiB
TOML
40 lines
1.6 KiB
TOML
[package]
|
|
name = "leptos-shadcn-dashboard-demo"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
leptos = { version = "0.8.5", features = ["csr"] }
|
|
leptos_meta = "0.8.5"
|
|
leptos_router = "0.8.5"
|
|
leptos-shadcn-button = { path = "../../packages/leptos/button" }
|
|
leptos-shadcn-card = { path = "../../packages/leptos/card" }
|
|
leptos-shadcn-input = { path = "../../packages/leptos/input" }
|
|
leptos-shadcn-badge = { path = "../../packages/leptos/badge" }
|
|
leptos-shadcn-avatar = { path = "../../packages/leptos/avatar" }
|
|
leptos-shadcn-dropdown-menu = { path = "../../packages/leptos/dropdown-menu" }
|
|
leptos-shadcn-separator = { path = "../../packages/leptos/separator" }
|
|
leptos-shadcn-progress = { path = "../../packages/leptos/progress" }
|
|
leptos-shadcn-tabs = { path = "../../packages/leptos/tabs" }
|
|
leptos-shadcn-dialog = { path = "../../packages/leptos/dialog" }
|
|
leptos-shadcn-sheet = { path = "../../packages/leptos/sheet" }
|
|
leptos-shadcn-scroll-area = { path = "../../packages/leptos/scroll-area" }
|
|
leptos-shadcn-collapsible = { path = "../../packages/leptos/collapsible" }
|
|
leptos-shadcn-command = { path = "../../packages/leptos/command" }
|
|
leptos-shadcn-popover = { path = "../../packages/leptos/popover" }
|
|
leptos-shadcn-select = { path = "../../packages/leptos/select" }
|
|
leptos-shadcn-switch = { path = "../../packages/leptos/switch" }
|
|
leptos-shadcn-toast = { path = "../../packages/leptos/toast" }
|
|
leptos-shadcn-tooltip = { path = "../../packages/leptos/tooltip" }
|
|
wasm-bindgen = "0.2"
|
|
web-sys = "0.3"
|
|
console_error_panic_hook = "0.1.7"
|
|
console_log = "1.0.0"
|
|
|
|
[dependencies.uuid]
|
|
version = "1.18.1"
|
|
features = ["js"]
|