-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistry.json
60 lines (60 loc) · 1.56 KB
/
registry.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "acme",
"homepage": "https://acme.com",
"items": [
{
"name": "theme-switcher",
"type": "registry:component",
"title": "Theme Switcher",
"description": "A theme switcher component",
"dependencies": ["next-themes", "lucide-react"],
"registryDependencies": ["button", "dropdown-menu"],
"files": [
{
"path": "registry/buttons/theme-switcher.tsx",
"type": "registry:component"
}
]
},
{
"name": "language-switcher",
"type": "registry:component",
"title": "Language Switcher",
"description": "A language switcher component",
"dependencies": ["lucide-react"],
"registryDependencies": ["button", "dropdown-menu"],
"files": [
{
"path": "registry/buttons/language-switcher.tsx",
"type": "registry:component"
}
]
},
{
"name": "app-stores",
"type": "registry:component",
"title": "App Stores",
"description": "A component for displaying app stores",
"files": [
{
"path": "registry/buttons/app-stores.tsx",
"type": "registry:component"
}
]
},
{
"name": "alert",
"type": "registry:component",
"title": "Alert",
"description": "A component for displaying alerts",
"registryDependencies": ["button"],
"files": [
{
"path": "registry/alert/alert.tsx",
"type": "registry:component"
}
]
}
]
}