-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
98 lines (98 loc) · 2.54 KB
/
registry.json
File metadata and controls
98 lines (98 loc) · 2.54 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "acme",
"homepage": "https://acme.com",
"items": [
{
"name": "artifact",
"type": "registry:ui",
"title": "Artifact",
"description": "Render generatred artifact",
"dependencies": ["lucide-solid"],
"files": [
{
"path": "src/registry/default/ui/artifact.tsx",
"type": "registry:ui",
"target": "components/ui/artifact.tsx"
}
],
"registryDependencies": [
"https://www.solid-ui.com/r/button.json",
"https://www.solid-ui.com/r/tooltip.json"
]
},
{
"name": "code-block",
"type": "registry:ui",
"title": "CodeBlock",
"description": "Render and syntax highlight code",
"dependencies": ["lucide-solid", "shiki"],
"files": [
{
"path": "src/registry/default/ui/code-block.tsx",
"type": "registry:ui",
"target": "components/ui/code-block.tsx"
}
],
"registryDependencies": ["https://www.solid-ui.com/r/button.json"]
},
{
"name": "image",
"type": "registry:ui",
"title": "Image",
"description": "Render and AI generated image",
"files": [
{
"path": "src/registry/default/ui/image.tsx",
"type": "registry:ui",
"target": "components/ui/image.tsx"
}
]
},
{
"name": "loader",
"type": "registry:ui",
"title": "Loader",
"description": "A loading indicator",
"files": [
{
"path": "src/registry/default/ui/loader.tsx",
"type": "registry:ui",
"target": "components/ui/loader.tsx"
}
]
},
{
"name": "shimmer",
"type": "registry:ui",
"title": "Shimmer",
"description": "A shimmer effect for text",
"dependencies": ["solid-motionone"],
"files": [
{
"path": "src/registry/default/ui/shimmer.tsx",
"type": "registry:ui",
"target": "components/ui/shimmer.tsx"
}
]
},
{
"name": "tool",
"type": "registry:ui",
"title": "Tool",
"description": "An AI Tool call",
"dependencies": ["lucide-solid"],
"files": [
{
"path": "src/registry/default/ui/tool.tsx",
"type": "registry:ui",
"target": "components/ui/tool.tsx"
}
],
"registryDependencies": [
"https://www.solid-ui.com/r/badge.json",
"https://www.solid-ui.com/r/collapsible.json"
]
}
]
}