dreamstack/registry/registry.json

76 lines
2.2 KiB
JSON
Raw Normal View History

{
"$schema": "https://dreamstack.dev/schema/registry.json",
"name": "dreamstack",
"homepage": "https://dreamstack.dev",
"items": [
{
"name": "button",
"type": "registry:component",
"title": "Button",
"description": "A styled button with variant support (primary, secondary, ghost, destructive)",
"files": [
{
"path": "registry/components/button.ds"
}
]
},
{
"name": "input",
"type": "registry:component",
"title": "Input",
"description": "Text input with label, placeholder, and error state",
"files": [
{
"path": "registry/components/input.ds"
}
]
},
{
"name": "card",
"type": "registry:component",
"title": "Card",
"description": "Content container with title and styled border",
"files": [
{
"path": "registry/components/card.ds"
}
]
},
{
"name": "badge",
"type": "registry:component",
"title": "Badge",
"description": "Status badge with color variants (success, warning, error, info)",
"files": [
{
"path": "registry/components/badge.ds"
}
]
},
{
"name": "dialog",
"type": "registry:component",
"title": "Dialog",
"description": "Modal dialog with overlay and close button",
"registryDependencies": [
"button"
],
"files": [
{
"path": "registry/components/dialog.ds"
}
]
},
{
"name": "toast",
"type": "registry:component",
"title": "Toast",
"description": "Notification toast with auto-dismiss",
"files": [
{
"path": "registry/components/toast.ds"
}
]
}
]
}