-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.json
More file actions
120 lines (120 loc) · 2.78 KB
/
Copy pathregistry.json
File metadata and controls
120 lines (120 loc) · 2.78 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"name": "acme",
"homepage": "https://acme.com",
"items": [
{
"name": "hello-world",
"type": "registry:component",
"title": "Hello World",
"description": "A simple hello world component",
"registryDependencies": [
"button"
],
"files": [
{
"path": "src/registry/new-york/blocks/hello-world/hello-world.tsx",
"type": "registry:component"
}
]
},
{
"name": "example-form",
"type": "registry:component",
"title": "Example Form",
"description": "A contact form with Zod validation.",
"dependencies": [
"zod"
],
"registryDependencies": [
"button",
"input",
"label",
"textarea",
"card"
],
"files": [
{
"path": "src/registry/new-york/blocks/example-form/example-form.tsx",
"type": "registry:component"
}
]
},
{
"name": "example-with-css",
"type": "registry:component",
"title": "Example with CSS",
"description": "A login form with a CSS file.",
"files": [
{
"path": "src/registry/new-york/blocks/example-with-css/example-card.tsx",
"type": "registry:component"
},
{
"path": "src/registry/new-york/blocks/example-with-css/example-card.css",
"type": "registry:component"
}
]
},
{
"name": "button",
"type": "registry:ui",
"title": "Button",
"description": "A button component.",
"files": [
{
"path": "src/registry/new-york/ui/button.tsx",
"type": "registry:ui"
}
]
},
{
"name": "input",
"type": "registry:ui",
"title": "Input",
"description": "A text input field.",
"files": [
{
"path": "src/registry/new-york/ui/input.tsx",
"type": "registry:ui"
}
]
},
{
"name": "label",
"type": "registry:ui",
"title": "Label",
"description": "A text label component.",
"files": [
{
"path": "src/registry/new-york/ui/label.tsx",
"type": "registry:ui"
}
]
},
{
"name": "textarea",
"type": "registry:ui",
"title": "Textarea",
"description": "A multiline text area.",
"files": [
{
"path": "src/registry/new-york/ui/textarea.tsx",
"type": "registry:ui"
}
]
},
{
"name": "card",
"type": "registry:ui",
"title": "Card",
"description": "Card components.",
"files": [
{
"path": "src/registry/new-york/ui/card.tsx",
"type": "registry:ui"
}
]
}
]
}