mcp-probe-kit 3.0.23 → 3.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/README.md +755 -779
  2. package/build/index.js +38 -40
  3. package/build/lib/__tests__/memory-injection.unit.test.js +1 -0
  4. package/build/lib/agents-md-template.js +32 -32
  5. package/build/lib/memory-client.d.ts +2 -0
  6. package/build/lib/memory-client.js +1 -0
  7. package/build/lib/memory-config.d.ts +2 -0
  8. package/build/lib/memory-config.js +1 -0
  9. package/build/lib/memory-orchestration.d.ts +4 -0
  10. package/build/lib/memory-orchestration.js +28 -5
  11. package/build/lib/skill-bridge.js +12 -12
  12. package/build/resources/index.d.ts +4 -0
  13. package/build/resources/index.js +4 -0
  14. package/build/resources/tool-params-guide.d.ts +571 -0
  15. package/build/resources/tool-params-guide.js +488 -0
  16. package/build/resources/ui-ux-data/guidelines/vercel-web-interface.json +1632 -1632
  17. package/build/resources/ui-ux-data/metadata.json +30 -30
  18. package/build/resources/ui-ux-data/shadcn/blocks.json +2541 -2541
  19. package/build/resources/ui-ux-data/shadcn/components.json +997 -997
  20. package/build/resources/ui-ux-data/themes/presets.json +483 -483
  21. package/build/schemas/index.d.ts +0 -22
  22. package/build/schemas/memory-tools.d.ts +0 -22
  23. package/build/schemas/memory-tools.js +0 -14
  24. package/build/tools/__tests__/read_memory_asset.unit.test.js +75 -0
  25. package/build/tools/__tests__/search_memory.unit.test.js +7 -1
  26. package/build/tools/analyze_project.d.ts +1 -0
  27. package/build/tools/analyze_project.js +527 -0
  28. package/build/tools/check_deps.d.ts +13 -0
  29. package/build/tools/check_deps.js +204 -0
  30. package/build/tools/code_insight.js +41 -41
  31. package/build/tools/convert.d.ts +13 -0
  32. package/build/tools/convert.js +599 -0
  33. package/build/tools/css_order.d.ts +13 -0
  34. package/build/tools/css_order.js +81 -0
  35. package/build/tools/debug.d.ts +13 -0
  36. package/build/tools/debug.js +131 -0
  37. package/build/tools/design2code.d.ts +20 -0
  38. package/build/tools/design2code.js +426 -0
  39. package/build/tools/detect_shell.d.ts +6 -0
  40. package/build/tools/detect_shell.js +151 -0
  41. package/build/tools/explain.d.ts +13 -0
  42. package/build/tools/explain.js +390 -0
  43. package/build/tools/fix.d.ts +13 -0
  44. package/build/tools/fix.js +303 -0
  45. package/build/tools/fix_bug.js +161 -161
  46. package/build/tools/gen_mock.d.ts +22 -0
  47. package/build/tools/gen_mock.js +269 -0
  48. package/build/tools/gen_skill.d.ts +13 -0
  49. package/build/tools/gen_skill.js +560 -0
  50. package/build/tools/genapi.d.ts +13 -0
  51. package/build/tools/genapi.js +174 -0
  52. package/build/tools/genchangelog.d.ts +13 -0
  53. package/build/tools/genchangelog.js +250 -0
  54. package/build/tools/gencommit.js +60 -60
  55. package/build/tools/gendoc.d.ts +13 -0
  56. package/build/tools/gendoc.js +232 -0
  57. package/build/tools/genpr.d.ts +13 -0
  58. package/build/tools/genpr.js +194 -0
  59. package/build/tools/genreadme.d.ts +13 -0
  60. package/build/tools/genreadme.js +626 -0
  61. package/build/tools/gensql.d.ts +13 -0
  62. package/build/tools/gensql.js +320 -0
  63. package/build/tools/genui.d.ts +13 -0
  64. package/build/tools/genui.js +803 -0
  65. package/build/tools/index.d.ts +0 -1
  66. package/build/tools/index.js +0 -1
  67. package/build/tools/init_component_catalog.d.ts +22 -0
  68. package/build/tools/init_component_catalog.js +809 -0
  69. package/build/tools/init_project_context.js +432 -432
  70. package/build/tools/init_setting.d.ts +13 -0
  71. package/build/tools/init_setting.js +47 -0
  72. package/build/tools/perf.d.ts +13 -0
  73. package/build/tools/perf.js +409 -0
  74. package/build/tools/read_memory_asset.js +2 -1
  75. package/build/tools/render_ui.d.ts +22 -0
  76. package/build/tools/render_ui.js +384 -0
  77. package/build/tools/resolve_conflict.d.ts +13 -0
  78. package/build/tools/resolve_conflict.js +349 -0
  79. package/build/tools/search_memory.js +1 -0
  80. package/build/tools/security_scan.d.ts +22 -0
  81. package/build/tools/security_scan.js +323 -0
  82. package/build/tools/split.d.ts +13 -0
  83. package/build/tools/split.js +599 -0
  84. package/build/tools/start_api.d.ts +13 -0
  85. package/build/tools/start_api.js +193 -0
  86. package/build/tools/start_bugfix.js +233 -233
  87. package/build/tools/start_doc.d.ts +13 -0
  88. package/build/tools/start_doc.js +207 -0
  89. package/build/tools/start_feature.js +117 -117
  90. package/build/tools/start_product.js +1 -1
  91. package/build/tools/start_refactor.d.ts +13 -0
  92. package/build/tools/start_refactor.js +188 -0
  93. package/build/tools/start_release.d.ts +13 -0
  94. package/build/tools/start_release.js +167 -0
  95. package/build/tools/start_review.d.ts +13 -0
  96. package/build/tools/start_review.js +175 -0
  97. package/build/tools/start_ui.js +399 -399
  98. package/build/tools/ui-ux-tools.js +290 -290
  99. package/build/utils/__tests__/vercel-guidelines-sync.unit.test.js +12 -12
  100. package/build/utils/themes-sync.js +8 -8
  101. package/package.json +81 -83
  102. package/build/lib/__tests__/memory-orchestration.unit.test.js +0 -84
  103. package/build/lib/__tests__/memory-payload.unit.test.js +0 -35
  104. package/build/lib/cursor-history-client.d.ts +0 -54
  105. package/build/lib/cursor-history-client.js +0 -240
  106. package/build/tools/__tests__/cursor-history.unit.test.js +0 -38
  107. package/build/tools/cursor_read_conversation.d.ts +0 -7
  108. package/build/tools/cursor_read_conversation.js +0 -36
  109. package/docs/.mcp-probe/layout.json +0 -11
  110. package/docs/CNAME +0 -1
  111. package/docs/assets/font/MaterialSymbolsOutlined.codepoints +0 -4102
  112. package/docs/assets/font/MaterialSymbolsOutlined.ttf +0 -0
  113. package/docs/assets/font/noto-sans-sc-400.ttf +0 -0
  114. package/docs/assets/font/noto-sans-sc-700.ttf +0 -0
  115. package/docs/assets/font/noto-sans-sc-900.ttf +0 -0
  116. package/docs/assets/js/i18n.js +0 -375
  117. package/docs/assets/js/tailwind.js +0 -83
  118. package/docs/assets/logo-zh.png +0 -0
  119. package/docs/assets/logo.png +0 -0
  120. package/docs/data/tools.js +0 -523
  121. package/docs/i18n/all-tools/en.json +0 -190
  122. package/docs/i18n/all-tools/ja.json +0 -171
  123. package/docs/i18n/all-tools/ko.json +0 -171
  124. package/docs/i18n/all-tools/zh-CN.json +0 -190
  125. package/docs/i18n/en.json +0 -626
  126. package/docs/i18n/ja.json +0 -602
  127. package/docs/i18n/ko.json +0 -602
  128. package/docs/i18n/zh-CN.json +0 -626
  129. package/docs/index.html +0 -327
  130. package/docs/memory-local-setup.md +0 -314
  131. package/docs/memory-local-setup.zh-CN.md +0 -283
  132. package/docs/pages/all-tools.html +0 -515
  133. package/docs/pages/examples.html +0 -717
  134. package/docs/pages/getting-started.html +0 -964
  135. package/docs/pages/migration.html +0 -308
  136. package/docs/specs/user-auth/design.md +0 -82
  137. package/docs/specs/user-auth/requirements.md +0 -52
  138. package/docs/specs/user-auth/tasks.md +0 -55
  139. /package/build/{lib/__tests__/memory-orchestration.unit.test.d.ts → tools/__tests__/read_memory_asset.unit.test.d.ts} +0 -0
  140. /package/build/{lib/__tests__/memory-payload.unit.test.d.ts → utils/design-docs-generator.d.ts} +0 -0
  141. /package/build/{tools/__tests__/cursor-history.unit.test.d.ts → utils/design-docs-generator.js} +0 -0
@@ -1,997 +1,997 @@
1
- [
2
- {
3
- "name": "accordion",
4
- "title": "accordion",
5
- "description": "component from shadcn/ui (new-york)",
6
- "type": "component",
7
- "stack": "react",
8
- "style": "new-york",
9
- "dependencies": [
10
- "@radix-ui/react-accordion"
11
- ],
12
- "registryDependencies": [],
13
- "fileCount": 1,
14
- "files": [
15
- "registry/new-york/ui/accordion.tsx"
16
- ],
17
- "installCommand": "npx shadcn@latest add accordion",
18
- "category": "shadcn-components"
19
- },
20
- {
21
- "name": "alert",
22
- "title": "alert",
23
- "description": "component from shadcn/ui (new-york)",
24
- "type": "component",
25
- "stack": "react",
26
- "style": "new-york",
27
- "dependencies": [],
28
- "registryDependencies": [],
29
- "fileCount": 1,
30
- "files": [
31
- "registry/new-york/ui/alert.tsx"
32
- ],
33
- "installCommand": "npx shadcn@latest add alert",
34
- "category": "shadcn-components"
35
- },
36
- {
37
- "name": "alert-dialog",
38
- "title": "alert-dialog",
39
- "description": "component from shadcn/ui (new-york)",
40
- "type": "component",
41
- "stack": "react",
42
- "style": "new-york",
43
- "dependencies": [
44
- "@radix-ui/react-alert-dialog"
45
- ],
46
- "registryDependencies": [
47
- "button"
48
- ],
49
- "fileCount": 1,
50
- "files": [
51
- "registry/new-york/ui/alert-dialog.tsx"
52
- ],
53
- "installCommand": "npx shadcn@latest add alert-dialog",
54
- "category": "shadcn-components"
55
- },
56
- {
57
- "name": "aspect-ratio",
58
- "title": "aspect-ratio",
59
- "description": "component from shadcn/ui (new-york)",
60
- "type": "component",
61
- "stack": "react",
62
- "style": "new-york",
63
- "dependencies": [
64
- "@radix-ui/react-aspect-ratio"
65
- ],
66
- "registryDependencies": [],
67
- "fileCount": 1,
68
- "files": [
69
- "registry/new-york/ui/aspect-ratio.tsx"
70
- ],
71
- "installCommand": "npx shadcn@latest add aspect-ratio",
72
- "category": "shadcn-components"
73
- },
74
- {
75
- "name": "avatar",
76
- "title": "avatar",
77
- "description": "component from shadcn/ui (new-york)",
78
- "type": "component",
79
- "stack": "react",
80
- "style": "new-york",
81
- "dependencies": [
82
- "@radix-ui/react-avatar"
83
- ],
84
- "registryDependencies": [],
85
- "fileCount": 1,
86
- "files": [
87
- "registry/new-york/ui/avatar.tsx"
88
- ],
89
- "installCommand": "npx shadcn@latest add avatar",
90
- "category": "shadcn-components"
91
- },
92
- {
93
- "name": "badge",
94
- "title": "badge",
95
- "description": "component from shadcn/ui (new-york)",
96
- "type": "component",
97
- "stack": "react",
98
- "style": "new-york",
99
- "dependencies": [
100
- "@radix-ui/react-slot"
101
- ],
102
- "registryDependencies": [],
103
- "fileCount": 1,
104
- "files": [
105
- "registry/new-york/ui/badge.tsx"
106
- ],
107
- "installCommand": "npx shadcn@latest add badge",
108
- "category": "shadcn-components"
109
- },
110
- {
111
- "name": "breadcrumb",
112
- "title": "breadcrumb",
113
- "description": "component from shadcn/ui (new-york)",
114
- "type": "component",
115
- "stack": "react",
116
- "style": "new-york",
117
- "dependencies": [
118
- "@radix-ui/react-slot"
119
- ],
120
- "registryDependencies": [],
121
- "fileCount": 1,
122
- "files": [
123
- "registry/new-york/ui/breadcrumb.tsx"
124
- ],
125
- "installCommand": "npx shadcn@latest add breadcrumb",
126
- "category": "shadcn-components"
127
- },
128
- {
129
- "name": "button",
130
- "title": "button",
131
- "description": "component from shadcn/ui (new-york)",
132
- "type": "component",
133
- "stack": "react",
134
- "style": "new-york",
135
- "dependencies": [
136
- "@radix-ui/react-slot"
137
- ],
138
- "registryDependencies": [],
139
- "fileCount": 1,
140
- "files": [
141
- "registry/new-york/ui/button.tsx"
142
- ],
143
- "installCommand": "npx shadcn@latest add button",
144
- "category": "shadcn-components"
145
- },
146
- {
147
- "name": "button-group",
148
- "title": "button-group",
149
- "description": "component from shadcn/ui (new-york)",
150
- "type": "component",
151
- "stack": "react",
152
- "style": "new-york",
153
- "dependencies": [],
154
- "registryDependencies": [
155
- "button",
156
- "separator"
157
- ],
158
- "fileCount": 1,
159
- "files": [
160
- "registry/new-york/ui/button-group.tsx"
161
- ],
162
- "installCommand": "npx shadcn@latest add button-group",
163
- "category": "shadcn-components"
164
- },
165
- {
166
- "name": "calendar",
167
- "title": "calendar",
168
- "description": "component from shadcn/ui (new-york)",
169
- "type": "component",
170
- "stack": "react",
171
- "style": "new-york",
172
- "dependencies": [
173
- "react-day-picker@latest",
174
- "date-fns"
175
- ],
176
- "registryDependencies": [
177
- "button"
178
- ],
179
- "fileCount": 1,
180
- "files": [
181
- "registry/new-york/ui/calendar.tsx"
182
- ],
183
- "installCommand": "npx shadcn@latest add calendar",
184
- "category": "shadcn-components"
185
- },
186
- {
187
- "name": "card",
188
- "title": "card",
189
- "description": "component from shadcn/ui (new-york)",
190
- "type": "component",
191
- "stack": "react",
192
- "style": "new-york",
193
- "dependencies": [],
194
- "registryDependencies": [],
195
- "fileCount": 1,
196
- "files": [
197
- "registry/new-york/ui/card.tsx"
198
- ],
199
- "installCommand": "npx shadcn@latest add card",
200
- "category": "shadcn-components"
201
- },
202
- {
203
- "name": "carousel",
204
- "title": "carousel",
205
- "description": "component from shadcn/ui (new-york)",
206
- "type": "component",
207
- "stack": "react",
208
- "style": "new-york",
209
- "dependencies": [
210
- "embla-carousel-react"
211
- ],
212
- "registryDependencies": [
213
- "button"
214
- ],
215
- "fileCount": 1,
216
- "files": [
217
- "registry/new-york/ui/carousel.tsx"
218
- ],
219
- "installCommand": "npx shadcn@latest add carousel",
220
- "category": "shadcn-components"
221
- },
222
- {
223
- "name": "chart",
224
- "title": "chart",
225
- "description": "component from shadcn/ui (new-york)",
226
- "type": "component",
227
- "stack": "react",
228
- "style": "new-york",
229
- "dependencies": [
230
- "recharts@2.15.4",
231
- "lucide-react"
232
- ],
233
- "registryDependencies": [
234
- "card"
235
- ],
236
- "fileCount": 1,
237
- "files": [
238
- "registry/new-york/ui/chart.tsx"
239
- ],
240
- "installCommand": "npx shadcn@latest add chart",
241
- "category": "shadcn-components"
242
- },
243
- {
244
- "name": "checkbox",
245
- "title": "checkbox",
246
- "description": "component from shadcn/ui (new-york)",
247
- "type": "component",
248
- "stack": "react",
249
- "style": "new-york",
250
- "dependencies": [
251
- "@radix-ui/react-checkbox"
252
- ],
253
- "registryDependencies": [],
254
- "fileCount": 1,
255
- "files": [
256
- "registry/new-york/ui/checkbox.tsx"
257
- ],
258
- "installCommand": "npx shadcn@latest add checkbox",
259
- "category": "shadcn-components"
260
- },
261
- {
262
- "name": "collapsible",
263
- "title": "collapsible",
264
- "description": "component from shadcn/ui (new-york)",
265
- "type": "component",
266
- "stack": "react",
267
- "style": "new-york",
268
- "dependencies": [
269
- "@radix-ui/react-collapsible"
270
- ],
271
- "registryDependencies": [],
272
- "fileCount": 1,
273
- "files": [
274
- "registry/new-york/ui/collapsible.tsx"
275
- ],
276
- "installCommand": "npx shadcn@latest add collapsible",
277
- "category": "shadcn-components"
278
- },
279
- {
280
- "name": "command",
281
- "title": "command",
282
- "description": "component from shadcn/ui (new-york)",
283
- "type": "component",
284
- "stack": "react",
285
- "style": "new-york",
286
- "dependencies": [
287
- "cmdk"
288
- ],
289
- "registryDependencies": [
290
- "dialog"
291
- ],
292
- "fileCount": 1,
293
- "files": [
294
- "registry/new-york/ui/command.tsx"
295
- ],
296
- "installCommand": "npx shadcn@latest add command",
297
- "category": "shadcn-components"
298
- },
299
- {
300
- "name": "context-menu",
301
- "title": "context-menu",
302
- "description": "component from shadcn/ui (new-york)",
303
- "type": "component",
304
- "stack": "react",
305
- "style": "new-york",
306
- "dependencies": [
307
- "@radix-ui/react-context-menu"
308
- ],
309
- "registryDependencies": [],
310
- "fileCount": 1,
311
- "files": [
312
- "registry/new-york/ui/context-menu.tsx"
313
- ],
314
- "installCommand": "npx shadcn@latest add context-menu",
315
- "category": "shadcn-components"
316
- },
317
- {
318
- "name": "dialog",
319
- "title": "dialog",
320
- "description": "component from shadcn/ui (new-york)",
321
- "type": "component",
322
- "stack": "react",
323
- "style": "new-york",
324
- "dependencies": [
325
- "@radix-ui/react-dialog"
326
- ],
327
- "registryDependencies": [],
328
- "fileCount": 1,
329
- "files": [
330
- "registry/new-york/ui/dialog.tsx"
331
- ],
332
- "installCommand": "npx shadcn@latest add dialog",
333
- "category": "shadcn-components"
334
- },
335
- {
336
- "name": "drawer",
337
- "title": "drawer",
338
- "description": "component from shadcn/ui (new-york)",
339
- "type": "component",
340
- "stack": "react",
341
- "style": "new-york",
342
- "dependencies": [
343
- "vaul",
344
- "@radix-ui/react-dialog"
345
- ],
346
- "registryDependencies": [],
347
- "fileCount": 1,
348
- "files": [
349
- "registry/new-york/ui/drawer.tsx"
350
- ],
351
- "installCommand": "npx shadcn@latest add drawer",
352
- "category": "shadcn-components"
353
- },
354
- {
355
- "name": "dropdown-menu",
356
- "title": "dropdown-menu",
357
- "description": "component from shadcn/ui (new-york)",
358
- "type": "component",
359
- "stack": "react",
360
- "style": "new-york",
361
- "dependencies": [
362
- "@radix-ui/react-dropdown-menu"
363
- ],
364
- "registryDependencies": [],
365
- "fileCount": 1,
366
- "files": [
367
- "registry/new-york/ui/dropdown-menu.tsx"
368
- ],
369
- "installCommand": "npx shadcn@latest add dropdown-menu",
370
- "category": "shadcn-components"
371
- },
372
- {
373
- "name": "empty",
374
- "title": "empty",
375
- "description": "component from shadcn/ui (new-york)",
376
- "type": "component",
377
- "stack": "react",
378
- "style": "new-york",
379
- "dependencies": [],
380
- "registryDependencies": [],
381
- "fileCount": 1,
382
- "files": [
383
- "registry/new-york/ui/empty.tsx"
384
- ],
385
- "installCommand": "npx shadcn@latest add empty",
386
- "category": "shadcn-components"
387
- },
388
- {
389
- "name": "field",
390
- "title": "field",
391
- "description": "component from shadcn/ui (new-york)",
392
- "type": "component",
393
- "stack": "react",
394
- "style": "new-york",
395
- "dependencies": [],
396
- "registryDependencies": [
397
- "label",
398
- "separator"
399
- ],
400
- "fileCount": 1,
401
- "files": [
402
- "registry/new-york/ui/field.tsx"
403
- ],
404
- "installCommand": "npx shadcn@latest add field",
405
- "category": "shadcn-components"
406
- },
407
- {
408
- "name": "form",
409
- "title": "form",
410
- "description": "component from shadcn/ui (new-york)",
411
- "type": "component",
412
- "stack": "react",
413
- "style": "new-york",
414
- "dependencies": [
415
- "@radix-ui/react-label",
416
- "@radix-ui/react-slot",
417
- "@hookform/resolvers",
418
- "zod",
419
- "react-hook-form"
420
- ],
421
- "registryDependencies": [
422
- "button",
423
- "label"
424
- ],
425
- "fileCount": 1,
426
- "files": [
427
- "registry/new-york/ui/form.tsx"
428
- ],
429
- "installCommand": "npx shadcn@latest add form",
430
- "category": "shadcn-components"
431
- },
432
- {
433
- "name": "hover-card",
434
- "title": "hover-card",
435
- "description": "component from shadcn/ui (new-york)",
436
- "type": "component",
437
- "stack": "react",
438
- "style": "new-york",
439
- "dependencies": [
440
- "@radix-ui/react-hover-card"
441
- ],
442
- "registryDependencies": [],
443
- "fileCount": 1,
444
- "files": [
445
- "registry/new-york/ui/hover-card.tsx"
446
- ],
447
- "installCommand": "npx shadcn@latest add hover-card",
448
- "category": "shadcn-components"
449
- },
450
- {
451
- "name": "input",
452
- "title": "input",
453
- "description": "component from shadcn/ui (new-york)",
454
- "type": "component",
455
- "stack": "react",
456
- "style": "new-york",
457
- "dependencies": [],
458
- "registryDependencies": [],
459
- "fileCount": 1,
460
- "files": [
461
- "registry/new-york/ui/input.tsx"
462
- ],
463
- "installCommand": "npx shadcn@latest add input",
464
- "category": "shadcn-components"
465
- },
466
- {
467
- "name": "input-group",
468
- "title": "input-group",
469
- "description": "component from shadcn/ui (new-york)",
470
- "type": "component",
471
- "stack": "react",
472
- "style": "new-york",
473
- "dependencies": [],
474
- "registryDependencies": [
475
- "button",
476
- "input",
477
- "textarea"
478
- ],
479
- "fileCount": 1,
480
- "files": [
481
- "registry/new-york/ui/input-group.tsx"
482
- ],
483
- "installCommand": "npx shadcn@latest add input-group",
484
- "category": "shadcn-components"
485
- },
486
- {
487
- "name": "input-otp",
488
- "title": "input-otp",
489
- "description": "component from shadcn/ui (new-york)",
490
- "type": "component",
491
- "stack": "react",
492
- "style": "new-york",
493
- "dependencies": [
494
- "input-otp"
495
- ],
496
- "registryDependencies": [],
497
- "fileCount": 1,
498
- "files": [
499
- "registry/new-york/ui/input-otp.tsx"
500
- ],
501
- "installCommand": "npx shadcn@latest add input-otp",
502
- "category": "shadcn-components"
503
- },
504
- {
505
- "name": "item",
506
- "title": "item",
507
- "description": "component from shadcn/ui (new-york)",
508
- "type": "component",
509
- "stack": "react",
510
- "style": "new-york",
511
- "dependencies": [],
512
- "registryDependencies": [
513
- "separator"
514
- ],
515
- "fileCount": 1,
516
- "files": [
517
- "registry/new-york/ui/item.tsx"
518
- ],
519
- "installCommand": "npx shadcn@latest add item",
520
- "category": "shadcn-components"
521
- },
522
- {
523
- "name": "kbd",
524
- "title": "kbd",
525
- "description": "component from shadcn/ui (new-york)",
526
- "type": "component",
527
- "stack": "react",
528
- "style": "new-york",
529
- "dependencies": [],
530
- "registryDependencies": [],
531
- "fileCount": 1,
532
- "files": [
533
- "registry/new-york/ui/kbd.tsx"
534
- ],
535
- "installCommand": "npx shadcn@latest add kbd",
536
- "category": "shadcn-components"
537
- },
538
- {
539
- "name": "label",
540
- "title": "label",
541
- "description": "component from shadcn/ui (new-york)",
542
- "type": "component",
543
- "stack": "react",
544
- "style": "new-york",
545
- "dependencies": [
546
- "@radix-ui/react-label"
547
- ],
548
- "registryDependencies": [],
549
- "fileCount": 1,
550
- "files": [
551
- "registry/new-york/ui/label.tsx"
552
- ],
553
- "installCommand": "npx shadcn@latest add label",
554
- "category": "shadcn-components"
555
- },
556
- {
557
- "name": "menubar",
558
- "title": "menubar",
559
- "description": "component from shadcn/ui (new-york)",
560
- "type": "component",
561
- "stack": "react",
562
- "style": "new-york",
563
- "dependencies": [
564
- "@radix-ui/react-menubar"
565
- ],
566
- "registryDependencies": [],
567
- "fileCount": 1,
568
- "files": [
569
- "registry/new-york/ui/menubar.tsx"
570
- ],
571
- "installCommand": "npx shadcn@latest add menubar",
572
- "category": "shadcn-components"
573
- },
574
- {
575
- "name": "navigation-menu",
576
- "title": "navigation-menu",
577
- "description": "component from shadcn/ui (new-york)",
578
- "type": "component",
579
- "stack": "react",
580
- "style": "new-york",
581
- "dependencies": [
582
- "@radix-ui/react-navigation-menu"
583
- ],
584
- "registryDependencies": [],
585
- "fileCount": 1,
586
- "files": [
587
- "registry/new-york/ui/navigation-menu.tsx"
588
- ],
589
- "installCommand": "npx shadcn@latest add navigation-menu",
590
- "category": "shadcn-components"
591
- },
592
- {
593
- "name": "pagination",
594
- "title": "pagination",
595
- "description": "component from shadcn/ui (new-york)",
596
- "type": "component",
597
- "stack": "react",
598
- "style": "new-york",
599
- "dependencies": [],
600
- "registryDependencies": [
601
- "button"
602
- ],
603
- "fileCount": 1,
604
- "files": [
605
- "registry/new-york/ui/pagination.tsx"
606
- ],
607
- "installCommand": "npx shadcn@latest add pagination",
608
- "category": "shadcn-components"
609
- },
610
- {
611
- "name": "popover",
612
- "title": "popover",
613
- "description": "component from shadcn/ui (new-york)",
614
- "type": "component",
615
- "stack": "react",
616
- "style": "new-york",
617
- "dependencies": [
618
- "@radix-ui/react-popover"
619
- ],
620
- "registryDependencies": [],
621
- "fileCount": 1,
622
- "files": [
623
- "registry/new-york/ui/popover.tsx"
624
- ],
625
- "installCommand": "npx shadcn@latest add popover",
626
- "category": "shadcn-components"
627
- },
628
- {
629
- "name": "progress",
630
- "title": "progress",
631
- "description": "component from shadcn/ui (new-york)",
632
- "type": "component",
633
- "stack": "react",
634
- "style": "new-york",
635
- "dependencies": [
636
- "@radix-ui/react-progress"
637
- ],
638
- "registryDependencies": [],
639
- "fileCount": 1,
640
- "files": [
641
- "registry/new-york/ui/progress.tsx"
642
- ],
643
- "installCommand": "npx shadcn@latest add progress",
644
- "category": "shadcn-components"
645
- },
646
- {
647
- "name": "radio-group",
648
- "title": "radio-group",
649
- "description": "component from shadcn/ui (new-york)",
650
- "type": "component",
651
- "stack": "react",
652
- "style": "new-york",
653
- "dependencies": [
654
- "@radix-ui/react-radio-group"
655
- ],
656
- "registryDependencies": [],
657
- "fileCount": 1,
658
- "files": [
659
- "registry/new-york/ui/radio-group.tsx"
660
- ],
661
- "installCommand": "npx shadcn@latest add radio-group",
662
- "category": "shadcn-components"
663
- },
664
- {
665
- "name": "resizable",
666
- "title": "resizable",
667
- "description": "component from shadcn/ui (new-york)",
668
- "type": "component",
669
- "stack": "react",
670
- "style": "new-york",
671
- "dependencies": [
672
- "react-resizable-panels"
673
- ],
674
- "registryDependencies": [],
675
- "fileCount": 1,
676
- "files": [
677
- "registry/new-york/ui/resizable.tsx"
678
- ],
679
- "installCommand": "npx shadcn@latest add resizable",
680
- "category": "shadcn-components"
681
- },
682
- {
683
- "name": "scroll-area",
684
- "title": "scroll-area",
685
- "description": "component from shadcn/ui (new-york)",
686
- "type": "component",
687
- "stack": "react",
688
- "style": "new-york",
689
- "dependencies": [
690
- "@radix-ui/react-scroll-area"
691
- ],
692
- "registryDependencies": [],
693
- "fileCount": 1,
694
- "files": [
695
- "registry/new-york/ui/scroll-area.tsx"
696
- ],
697
- "installCommand": "npx shadcn@latest add scroll-area",
698
- "category": "shadcn-components"
699
- },
700
- {
701
- "name": "select",
702
- "title": "select",
703
- "description": "component from shadcn/ui (new-york)",
704
- "type": "component",
705
- "stack": "react",
706
- "style": "new-york",
707
- "dependencies": [
708
- "@radix-ui/react-select"
709
- ],
710
- "registryDependencies": [],
711
- "fileCount": 1,
712
- "files": [
713
- "registry/new-york/ui/select.tsx"
714
- ],
715
- "installCommand": "npx shadcn@latest add select",
716
- "category": "shadcn-components"
717
- },
718
- {
719
- "name": "separator",
720
- "title": "separator",
721
- "description": "component from shadcn/ui (new-york)",
722
- "type": "component",
723
- "stack": "react",
724
- "style": "new-york",
725
- "dependencies": [
726
- "@radix-ui/react-separator"
727
- ],
728
- "registryDependencies": [],
729
- "fileCount": 1,
730
- "files": [
731
- "registry/new-york/ui/separator.tsx"
732
- ],
733
- "installCommand": "npx shadcn@latest add separator",
734
- "category": "shadcn-components"
735
- },
736
- {
737
- "name": "sheet",
738
- "title": "sheet",
739
- "description": "component from shadcn/ui (new-york)",
740
- "type": "component",
741
- "stack": "react",
742
- "style": "new-york",
743
- "dependencies": [
744
- "@radix-ui/react-dialog"
745
- ],
746
- "registryDependencies": [],
747
- "fileCount": 1,
748
- "files": [
749
- "registry/new-york/ui/sheet.tsx"
750
- ],
751
- "installCommand": "npx shadcn@latest add sheet",
752
- "category": "shadcn-components"
753
- },
754
- {
755
- "name": "sidebar",
756
- "title": "sidebar",
757
- "description": "component from shadcn/ui (new-york)",
758
- "type": "component",
759
- "stack": "react",
760
- "style": "new-york",
761
- "dependencies": [
762
- "@radix-ui/react-slot",
763
- "class-variance-authority",
764
- "lucide-react"
765
- ],
766
- "registryDependencies": [
767
- "button",
768
- "separator",
769
- "sheet",
770
- "tooltip",
771
- "input",
772
- "use-mobile",
773
- "skeleton"
774
- ],
775
- "fileCount": 1,
776
- "files": [
777
- "registry/new-york/ui/sidebar.tsx"
778
- ],
779
- "installCommand": "npx shadcn@latest add sidebar",
780
- "category": "shadcn-components"
781
- },
782
- {
783
- "name": "skeleton",
784
- "title": "skeleton",
785
- "description": "component from shadcn/ui (new-york)",
786
- "type": "component",
787
- "stack": "react",
788
- "style": "new-york",
789
- "dependencies": [],
790
- "registryDependencies": [],
791
- "fileCount": 1,
792
- "files": [
793
- "registry/new-york/ui/skeleton.tsx"
794
- ],
795
- "installCommand": "npx shadcn@latest add skeleton",
796
- "category": "shadcn-components"
797
- },
798
- {
799
- "name": "slider",
800
- "title": "slider",
801
- "description": "component from shadcn/ui (new-york)",
802
- "type": "component",
803
- "stack": "react",
804
- "style": "new-york",
805
- "dependencies": [
806
- "@radix-ui/react-slider"
807
- ],
808
- "registryDependencies": [],
809
- "fileCount": 1,
810
- "files": [
811
- "registry/new-york/ui/slider.tsx"
812
- ],
813
- "installCommand": "npx shadcn@latest add slider",
814
- "category": "shadcn-components"
815
- },
816
- {
817
- "name": "sonner",
818
- "title": "sonner",
819
- "description": "component from shadcn/ui (new-york)",
820
- "type": "component",
821
- "stack": "react",
822
- "style": "new-york",
823
- "dependencies": [
824
- "sonner",
825
- "next-themes"
826
- ],
827
- "registryDependencies": [],
828
- "fileCount": 1,
829
- "files": [
830
- "registry/new-york/ui/sonner.tsx"
831
- ],
832
- "installCommand": "npx shadcn@latest add sonner",
833
- "category": "shadcn-components"
834
- },
835
- {
836
- "name": "spinner",
837
- "title": "spinner",
838
- "description": "component from shadcn/ui (new-york)",
839
- "type": "component",
840
- "stack": "react",
841
- "style": "new-york",
842
- "dependencies": [
843
- "class-variance-authority"
844
- ],
845
- "registryDependencies": [],
846
- "fileCount": 1,
847
- "files": [
848
- "registry/new-york/ui/spinner.tsx"
849
- ],
850
- "installCommand": "npx shadcn@latest add spinner",
851
- "category": "shadcn-components"
852
- },
853
- {
854
- "name": "switch",
855
- "title": "switch",
856
- "description": "component from shadcn/ui (new-york)",
857
- "type": "component",
858
- "stack": "react",
859
- "style": "new-york",
860
- "dependencies": [
861
- "@radix-ui/react-switch"
862
- ],
863
- "registryDependencies": [],
864
- "fileCount": 1,
865
- "files": [
866
- "registry/new-york/ui/switch.tsx"
867
- ],
868
- "installCommand": "npx shadcn@latest add switch",
869
- "category": "shadcn-components"
870
- },
871
- {
872
- "name": "table",
873
- "title": "table",
874
- "description": "component from shadcn/ui (new-york)",
875
- "type": "component",
876
- "stack": "react",
877
- "style": "new-york",
878
- "dependencies": [],
879
- "registryDependencies": [],
880
- "fileCount": 1,
881
- "files": [
882
- "registry/new-york/ui/table.tsx"
883
- ],
884
- "installCommand": "npx shadcn@latest add table",
885
- "category": "shadcn-components"
886
- },
887
- {
888
- "name": "tabs",
889
- "title": "tabs",
890
- "description": "component from shadcn/ui (new-york)",
891
- "type": "component",
892
- "stack": "react",
893
- "style": "new-york",
894
- "dependencies": [
895
- "@radix-ui/react-tabs"
896
- ],
897
- "registryDependencies": [],
898
- "fileCount": 1,
899
- "files": [
900
- "registry/new-york/ui/tabs.tsx"
901
- ],
902
- "installCommand": "npx shadcn@latest add tabs",
903
- "category": "shadcn-components"
904
- },
905
- {
906
- "name": "textarea",
907
- "title": "textarea",
908
- "description": "component from shadcn/ui (new-york)",
909
- "type": "component",
910
- "stack": "react",
911
- "style": "new-york",
912
- "dependencies": [],
913
- "registryDependencies": [],
914
- "fileCount": 1,
915
- "files": [
916
- "registry/new-york/ui/textarea.tsx"
917
- ],
918
- "installCommand": "npx shadcn@latest add textarea",
919
- "category": "shadcn-components"
920
- },
921
- {
922
- "name": "toast",
923
- "title": "toast",
924
- "description": "component from shadcn/ui (new-york)",
925
- "type": "component",
926
- "stack": "react",
927
- "style": "new-york",
928
- "dependencies": [
929
- "@radix-ui/react-toast"
930
- ],
931
- "registryDependencies": [],
932
- "fileCount": 3,
933
- "files": [
934
- "registry/new-york/ui/toast.tsx",
935
- "registry/new-york/hooks/use-toast.ts",
936
- "registry/new-york/ui/toaster.tsx"
937
- ],
938
- "installCommand": "npx shadcn@latest add toast",
939
- "category": "shadcn-components"
940
- },
941
- {
942
- "name": "toggle",
943
- "title": "toggle",
944
- "description": "component from shadcn/ui (new-york)",
945
- "type": "component",
946
- "stack": "react",
947
- "style": "new-york",
948
- "dependencies": [
949
- "@radix-ui/react-toggle"
950
- ],
951
- "registryDependencies": [],
952
- "fileCount": 1,
953
- "files": [
954
- "registry/new-york/ui/toggle.tsx"
955
- ],
956
- "installCommand": "npx shadcn@latest add toggle",
957
- "category": "shadcn-components"
958
- },
959
- {
960
- "name": "toggle-group",
961
- "title": "toggle-group",
962
- "description": "component from shadcn/ui (new-york)",
963
- "type": "component",
964
- "stack": "react",
965
- "style": "new-york",
966
- "dependencies": [
967
- "@radix-ui/react-toggle-group"
968
- ],
969
- "registryDependencies": [
970
- "toggle"
971
- ],
972
- "fileCount": 1,
973
- "files": [
974
- "registry/new-york/ui/toggle-group.tsx"
975
- ],
976
- "installCommand": "npx shadcn@latest add toggle-group",
977
- "category": "shadcn-components"
978
- },
979
- {
980
- "name": "tooltip",
981
- "title": "tooltip",
982
- "description": "component from shadcn/ui (new-york)",
983
- "type": "component",
984
- "stack": "react",
985
- "style": "new-york",
986
- "dependencies": [
987
- "@radix-ui/react-tooltip"
988
- ],
989
- "registryDependencies": [],
990
- "fileCount": 1,
991
- "files": [
992
- "registry/new-york/ui/tooltip.tsx"
993
- ],
994
- "installCommand": "npx shadcn@latest add tooltip",
995
- "category": "shadcn-components"
996
- }
997
- ]
1
+ [
2
+ {
3
+ "name": "accordion",
4
+ "title": "accordion",
5
+ "description": "component from shadcn/ui (new-york)",
6
+ "type": "component",
7
+ "stack": "react",
8
+ "style": "new-york",
9
+ "dependencies": [
10
+ "@radix-ui/react-accordion"
11
+ ],
12
+ "registryDependencies": [],
13
+ "fileCount": 1,
14
+ "files": [
15
+ "registry/new-york/ui/accordion.tsx"
16
+ ],
17
+ "installCommand": "npx shadcn@latest add accordion",
18
+ "category": "shadcn-components"
19
+ },
20
+ {
21
+ "name": "alert",
22
+ "title": "alert",
23
+ "description": "component from shadcn/ui (new-york)",
24
+ "type": "component",
25
+ "stack": "react",
26
+ "style": "new-york",
27
+ "dependencies": [],
28
+ "registryDependencies": [],
29
+ "fileCount": 1,
30
+ "files": [
31
+ "registry/new-york/ui/alert.tsx"
32
+ ],
33
+ "installCommand": "npx shadcn@latest add alert",
34
+ "category": "shadcn-components"
35
+ },
36
+ {
37
+ "name": "alert-dialog",
38
+ "title": "alert-dialog",
39
+ "description": "component from shadcn/ui (new-york)",
40
+ "type": "component",
41
+ "stack": "react",
42
+ "style": "new-york",
43
+ "dependencies": [
44
+ "@radix-ui/react-alert-dialog"
45
+ ],
46
+ "registryDependencies": [
47
+ "button"
48
+ ],
49
+ "fileCount": 1,
50
+ "files": [
51
+ "registry/new-york/ui/alert-dialog.tsx"
52
+ ],
53
+ "installCommand": "npx shadcn@latest add alert-dialog",
54
+ "category": "shadcn-components"
55
+ },
56
+ {
57
+ "name": "aspect-ratio",
58
+ "title": "aspect-ratio",
59
+ "description": "component from shadcn/ui (new-york)",
60
+ "type": "component",
61
+ "stack": "react",
62
+ "style": "new-york",
63
+ "dependencies": [
64
+ "@radix-ui/react-aspect-ratio"
65
+ ],
66
+ "registryDependencies": [],
67
+ "fileCount": 1,
68
+ "files": [
69
+ "registry/new-york/ui/aspect-ratio.tsx"
70
+ ],
71
+ "installCommand": "npx shadcn@latest add aspect-ratio",
72
+ "category": "shadcn-components"
73
+ },
74
+ {
75
+ "name": "avatar",
76
+ "title": "avatar",
77
+ "description": "component from shadcn/ui (new-york)",
78
+ "type": "component",
79
+ "stack": "react",
80
+ "style": "new-york",
81
+ "dependencies": [
82
+ "@radix-ui/react-avatar"
83
+ ],
84
+ "registryDependencies": [],
85
+ "fileCount": 1,
86
+ "files": [
87
+ "registry/new-york/ui/avatar.tsx"
88
+ ],
89
+ "installCommand": "npx shadcn@latest add avatar",
90
+ "category": "shadcn-components"
91
+ },
92
+ {
93
+ "name": "badge",
94
+ "title": "badge",
95
+ "description": "component from shadcn/ui (new-york)",
96
+ "type": "component",
97
+ "stack": "react",
98
+ "style": "new-york",
99
+ "dependencies": [
100
+ "@radix-ui/react-slot"
101
+ ],
102
+ "registryDependencies": [],
103
+ "fileCount": 1,
104
+ "files": [
105
+ "registry/new-york/ui/badge.tsx"
106
+ ],
107
+ "installCommand": "npx shadcn@latest add badge",
108
+ "category": "shadcn-components"
109
+ },
110
+ {
111
+ "name": "breadcrumb",
112
+ "title": "breadcrumb",
113
+ "description": "component from shadcn/ui (new-york)",
114
+ "type": "component",
115
+ "stack": "react",
116
+ "style": "new-york",
117
+ "dependencies": [
118
+ "@radix-ui/react-slot"
119
+ ],
120
+ "registryDependencies": [],
121
+ "fileCount": 1,
122
+ "files": [
123
+ "registry/new-york/ui/breadcrumb.tsx"
124
+ ],
125
+ "installCommand": "npx shadcn@latest add breadcrumb",
126
+ "category": "shadcn-components"
127
+ },
128
+ {
129
+ "name": "button",
130
+ "title": "button",
131
+ "description": "component from shadcn/ui (new-york)",
132
+ "type": "component",
133
+ "stack": "react",
134
+ "style": "new-york",
135
+ "dependencies": [
136
+ "@radix-ui/react-slot"
137
+ ],
138
+ "registryDependencies": [],
139
+ "fileCount": 1,
140
+ "files": [
141
+ "registry/new-york/ui/button.tsx"
142
+ ],
143
+ "installCommand": "npx shadcn@latest add button",
144
+ "category": "shadcn-components"
145
+ },
146
+ {
147
+ "name": "button-group",
148
+ "title": "button-group",
149
+ "description": "component from shadcn/ui (new-york)",
150
+ "type": "component",
151
+ "stack": "react",
152
+ "style": "new-york",
153
+ "dependencies": [],
154
+ "registryDependencies": [
155
+ "button",
156
+ "separator"
157
+ ],
158
+ "fileCount": 1,
159
+ "files": [
160
+ "registry/new-york/ui/button-group.tsx"
161
+ ],
162
+ "installCommand": "npx shadcn@latest add button-group",
163
+ "category": "shadcn-components"
164
+ },
165
+ {
166
+ "name": "calendar",
167
+ "title": "calendar",
168
+ "description": "component from shadcn/ui (new-york)",
169
+ "type": "component",
170
+ "stack": "react",
171
+ "style": "new-york",
172
+ "dependencies": [
173
+ "react-day-picker@latest",
174
+ "date-fns"
175
+ ],
176
+ "registryDependencies": [
177
+ "button"
178
+ ],
179
+ "fileCount": 1,
180
+ "files": [
181
+ "registry/new-york/ui/calendar.tsx"
182
+ ],
183
+ "installCommand": "npx shadcn@latest add calendar",
184
+ "category": "shadcn-components"
185
+ },
186
+ {
187
+ "name": "card",
188
+ "title": "card",
189
+ "description": "component from shadcn/ui (new-york)",
190
+ "type": "component",
191
+ "stack": "react",
192
+ "style": "new-york",
193
+ "dependencies": [],
194
+ "registryDependencies": [],
195
+ "fileCount": 1,
196
+ "files": [
197
+ "registry/new-york/ui/card.tsx"
198
+ ],
199
+ "installCommand": "npx shadcn@latest add card",
200
+ "category": "shadcn-components"
201
+ },
202
+ {
203
+ "name": "carousel",
204
+ "title": "carousel",
205
+ "description": "component from shadcn/ui (new-york)",
206
+ "type": "component",
207
+ "stack": "react",
208
+ "style": "new-york",
209
+ "dependencies": [
210
+ "embla-carousel-react"
211
+ ],
212
+ "registryDependencies": [
213
+ "button"
214
+ ],
215
+ "fileCount": 1,
216
+ "files": [
217
+ "registry/new-york/ui/carousel.tsx"
218
+ ],
219
+ "installCommand": "npx shadcn@latest add carousel",
220
+ "category": "shadcn-components"
221
+ },
222
+ {
223
+ "name": "chart",
224
+ "title": "chart",
225
+ "description": "component from shadcn/ui (new-york)",
226
+ "type": "component",
227
+ "stack": "react",
228
+ "style": "new-york",
229
+ "dependencies": [
230
+ "recharts@2.15.4",
231
+ "lucide-react"
232
+ ],
233
+ "registryDependencies": [
234
+ "card"
235
+ ],
236
+ "fileCount": 1,
237
+ "files": [
238
+ "registry/new-york/ui/chart.tsx"
239
+ ],
240
+ "installCommand": "npx shadcn@latest add chart",
241
+ "category": "shadcn-components"
242
+ },
243
+ {
244
+ "name": "checkbox",
245
+ "title": "checkbox",
246
+ "description": "component from shadcn/ui (new-york)",
247
+ "type": "component",
248
+ "stack": "react",
249
+ "style": "new-york",
250
+ "dependencies": [
251
+ "@radix-ui/react-checkbox"
252
+ ],
253
+ "registryDependencies": [],
254
+ "fileCount": 1,
255
+ "files": [
256
+ "registry/new-york/ui/checkbox.tsx"
257
+ ],
258
+ "installCommand": "npx shadcn@latest add checkbox",
259
+ "category": "shadcn-components"
260
+ },
261
+ {
262
+ "name": "collapsible",
263
+ "title": "collapsible",
264
+ "description": "component from shadcn/ui (new-york)",
265
+ "type": "component",
266
+ "stack": "react",
267
+ "style": "new-york",
268
+ "dependencies": [
269
+ "@radix-ui/react-collapsible"
270
+ ],
271
+ "registryDependencies": [],
272
+ "fileCount": 1,
273
+ "files": [
274
+ "registry/new-york/ui/collapsible.tsx"
275
+ ],
276
+ "installCommand": "npx shadcn@latest add collapsible",
277
+ "category": "shadcn-components"
278
+ },
279
+ {
280
+ "name": "command",
281
+ "title": "command",
282
+ "description": "component from shadcn/ui (new-york)",
283
+ "type": "component",
284
+ "stack": "react",
285
+ "style": "new-york",
286
+ "dependencies": [
287
+ "cmdk"
288
+ ],
289
+ "registryDependencies": [
290
+ "dialog"
291
+ ],
292
+ "fileCount": 1,
293
+ "files": [
294
+ "registry/new-york/ui/command.tsx"
295
+ ],
296
+ "installCommand": "npx shadcn@latest add command",
297
+ "category": "shadcn-components"
298
+ },
299
+ {
300
+ "name": "context-menu",
301
+ "title": "context-menu",
302
+ "description": "component from shadcn/ui (new-york)",
303
+ "type": "component",
304
+ "stack": "react",
305
+ "style": "new-york",
306
+ "dependencies": [
307
+ "@radix-ui/react-context-menu"
308
+ ],
309
+ "registryDependencies": [],
310
+ "fileCount": 1,
311
+ "files": [
312
+ "registry/new-york/ui/context-menu.tsx"
313
+ ],
314
+ "installCommand": "npx shadcn@latest add context-menu",
315
+ "category": "shadcn-components"
316
+ },
317
+ {
318
+ "name": "dialog",
319
+ "title": "dialog",
320
+ "description": "component from shadcn/ui (new-york)",
321
+ "type": "component",
322
+ "stack": "react",
323
+ "style": "new-york",
324
+ "dependencies": [
325
+ "@radix-ui/react-dialog"
326
+ ],
327
+ "registryDependencies": [],
328
+ "fileCount": 1,
329
+ "files": [
330
+ "registry/new-york/ui/dialog.tsx"
331
+ ],
332
+ "installCommand": "npx shadcn@latest add dialog",
333
+ "category": "shadcn-components"
334
+ },
335
+ {
336
+ "name": "drawer",
337
+ "title": "drawer",
338
+ "description": "component from shadcn/ui (new-york)",
339
+ "type": "component",
340
+ "stack": "react",
341
+ "style": "new-york",
342
+ "dependencies": [
343
+ "vaul",
344
+ "@radix-ui/react-dialog"
345
+ ],
346
+ "registryDependencies": [],
347
+ "fileCount": 1,
348
+ "files": [
349
+ "registry/new-york/ui/drawer.tsx"
350
+ ],
351
+ "installCommand": "npx shadcn@latest add drawer",
352
+ "category": "shadcn-components"
353
+ },
354
+ {
355
+ "name": "dropdown-menu",
356
+ "title": "dropdown-menu",
357
+ "description": "component from shadcn/ui (new-york)",
358
+ "type": "component",
359
+ "stack": "react",
360
+ "style": "new-york",
361
+ "dependencies": [
362
+ "@radix-ui/react-dropdown-menu"
363
+ ],
364
+ "registryDependencies": [],
365
+ "fileCount": 1,
366
+ "files": [
367
+ "registry/new-york/ui/dropdown-menu.tsx"
368
+ ],
369
+ "installCommand": "npx shadcn@latest add dropdown-menu",
370
+ "category": "shadcn-components"
371
+ },
372
+ {
373
+ "name": "empty",
374
+ "title": "empty",
375
+ "description": "component from shadcn/ui (new-york)",
376
+ "type": "component",
377
+ "stack": "react",
378
+ "style": "new-york",
379
+ "dependencies": [],
380
+ "registryDependencies": [],
381
+ "fileCount": 1,
382
+ "files": [
383
+ "registry/new-york/ui/empty.tsx"
384
+ ],
385
+ "installCommand": "npx shadcn@latest add empty",
386
+ "category": "shadcn-components"
387
+ },
388
+ {
389
+ "name": "field",
390
+ "title": "field",
391
+ "description": "component from shadcn/ui (new-york)",
392
+ "type": "component",
393
+ "stack": "react",
394
+ "style": "new-york",
395
+ "dependencies": [],
396
+ "registryDependencies": [
397
+ "label",
398
+ "separator"
399
+ ],
400
+ "fileCount": 1,
401
+ "files": [
402
+ "registry/new-york/ui/field.tsx"
403
+ ],
404
+ "installCommand": "npx shadcn@latest add field",
405
+ "category": "shadcn-components"
406
+ },
407
+ {
408
+ "name": "form",
409
+ "title": "form",
410
+ "description": "component from shadcn/ui (new-york)",
411
+ "type": "component",
412
+ "stack": "react",
413
+ "style": "new-york",
414
+ "dependencies": [
415
+ "@radix-ui/react-label",
416
+ "@radix-ui/react-slot",
417
+ "@hookform/resolvers",
418
+ "zod",
419
+ "react-hook-form"
420
+ ],
421
+ "registryDependencies": [
422
+ "button",
423
+ "label"
424
+ ],
425
+ "fileCount": 1,
426
+ "files": [
427
+ "registry/new-york/ui/form.tsx"
428
+ ],
429
+ "installCommand": "npx shadcn@latest add form",
430
+ "category": "shadcn-components"
431
+ },
432
+ {
433
+ "name": "hover-card",
434
+ "title": "hover-card",
435
+ "description": "component from shadcn/ui (new-york)",
436
+ "type": "component",
437
+ "stack": "react",
438
+ "style": "new-york",
439
+ "dependencies": [
440
+ "@radix-ui/react-hover-card"
441
+ ],
442
+ "registryDependencies": [],
443
+ "fileCount": 1,
444
+ "files": [
445
+ "registry/new-york/ui/hover-card.tsx"
446
+ ],
447
+ "installCommand": "npx shadcn@latest add hover-card",
448
+ "category": "shadcn-components"
449
+ },
450
+ {
451
+ "name": "input",
452
+ "title": "input",
453
+ "description": "component from shadcn/ui (new-york)",
454
+ "type": "component",
455
+ "stack": "react",
456
+ "style": "new-york",
457
+ "dependencies": [],
458
+ "registryDependencies": [],
459
+ "fileCount": 1,
460
+ "files": [
461
+ "registry/new-york/ui/input.tsx"
462
+ ],
463
+ "installCommand": "npx shadcn@latest add input",
464
+ "category": "shadcn-components"
465
+ },
466
+ {
467
+ "name": "input-group",
468
+ "title": "input-group",
469
+ "description": "component from shadcn/ui (new-york)",
470
+ "type": "component",
471
+ "stack": "react",
472
+ "style": "new-york",
473
+ "dependencies": [],
474
+ "registryDependencies": [
475
+ "button",
476
+ "input",
477
+ "textarea"
478
+ ],
479
+ "fileCount": 1,
480
+ "files": [
481
+ "registry/new-york/ui/input-group.tsx"
482
+ ],
483
+ "installCommand": "npx shadcn@latest add input-group",
484
+ "category": "shadcn-components"
485
+ },
486
+ {
487
+ "name": "input-otp",
488
+ "title": "input-otp",
489
+ "description": "component from shadcn/ui (new-york)",
490
+ "type": "component",
491
+ "stack": "react",
492
+ "style": "new-york",
493
+ "dependencies": [
494
+ "input-otp"
495
+ ],
496
+ "registryDependencies": [],
497
+ "fileCount": 1,
498
+ "files": [
499
+ "registry/new-york/ui/input-otp.tsx"
500
+ ],
501
+ "installCommand": "npx shadcn@latest add input-otp",
502
+ "category": "shadcn-components"
503
+ },
504
+ {
505
+ "name": "item",
506
+ "title": "item",
507
+ "description": "component from shadcn/ui (new-york)",
508
+ "type": "component",
509
+ "stack": "react",
510
+ "style": "new-york",
511
+ "dependencies": [],
512
+ "registryDependencies": [
513
+ "separator"
514
+ ],
515
+ "fileCount": 1,
516
+ "files": [
517
+ "registry/new-york/ui/item.tsx"
518
+ ],
519
+ "installCommand": "npx shadcn@latest add item",
520
+ "category": "shadcn-components"
521
+ },
522
+ {
523
+ "name": "kbd",
524
+ "title": "kbd",
525
+ "description": "component from shadcn/ui (new-york)",
526
+ "type": "component",
527
+ "stack": "react",
528
+ "style": "new-york",
529
+ "dependencies": [],
530
+ "registryDependencies": [],
531
+ "fileCount": 1,
532
+ "files": [
533
+ "registry/new-york/ui/kbd.tsx"
534
+ ],
535
+ "installCommand": "npx shadcn@latest add kbd",
536
+ "category": "shadcn-components"
537
+ },
538
+ {
539
+ "name": "label",
540
+ "title": "label",
541
+ "description": "component from shadcn/ui (new-york)",
542
+ "type": "component",
543
+ "stack": "react",
544
+ "style": "new-york",
545
+ "dependencies": [
546
+ "@radix-ui/react-label"
547
+ ],
548
+ "registryDependencies": [],
549
+ "fileCount": 1,
550
+ "files": [
551
+ "registry/new-york/ui/label.tsx"
552
+ ],
553
+ "installCommand": "npx shadcn@latest add label",
554
+ "category": "shadcn-components"
555
+ },
556
+ {
557
+ "name": "menubar",
558
+ "title": "menubar",
559
+ "description": "component from shadcn/ui (new-york)",
560
+ "type": "component",
561
+ "stack": "react",
562
+ "style": "new-york",
563
+ "dependencies": [
564
+ "@radix-ui/react-menubar"
565
+ ],
566
+ "registryDependencies": [],
567
+ "fileCount": 1,
568
+ "files": [
569
+ "registry/new-york/ui/menubar.tsx"
570
+ ],
571
+ "installCommand": "npx shadcn@latest add menubar",
572
+ "category": "shadcn-components"
573
+ },
574
+ {
575
+ "name": "navigation-menu",
576
+ "title": "navigation-menu",
577
+ "description": "component from shadcn/ui (new-york)",
578
+ "type": "component",
579
+ "stack": "react",
580
+ "style": "new-york",
581
+ "dependencies": [
582
+ "@radix-ui/react-navigation-menu"
583
+ ],
584
+ "registryDependencies": [],
585
+ "fileCount": 1,
586
+ "files": [
587
+ "registry/new-york/ui/navigation-menu.tsx"
588
+ ],
589
+ "installCommand": "npx shadcn@latest add navigation-menu",
590
+ "category": "shadcn-components"
591
+ },
592
+ {
593
+ "name": "pagination",
594
+ "title": "pagination",
595
+ "description": "component from shadcn/ui (new-york)",
596
+ "type": "component",
597
+ "stack": "react",
598
+ "style": "new-york",
599
+ "dependencies": [],
600
+ "registryDependencies": [
601
+ "button"
602
+ ],
603
+ "fileCount": 1,
604
+ "files": [
605
+ "registry/new-york/ui/pagination.tsx"
606
+ ],
607
+ "installCommand": "npx shadcn@latest add pagination",
608
+ "category": "shadcn-components"
609
+ },
610
+ {
611
+ "name": "popover",
612
+ "title": "popover",
613
+ "description": "component from shadcn/ui (new-york)",
614
+ "type": "component",
615
+ "stack": "react",
616
+ "style": "new-york",
617
+ "dependencies": [
618
+ "@radix-ui/react-popover"
619
+ ],
620
+ "registryDependencies": [],
621
+ "fileCount": 1,
622
+ "files": [
623
+ "registry/new-york/ui/popover.tsx"
624
+ ],
625
+ "installCommand": "npx shadcn@latest add popover",
626
+ "category": "shadcn-components"
627
+ },
628
+ {
629
+ "name": "progress",
630
+ "title": "progress",
631
+ "description": "component from shadcn/ui (new-york)",
632
+ "type": "component",
633
+ "stack": "react",
634
+ "style": "new-york",
635
+ "dependencies": [
636
+ "@radix-ui/react-progress"
637
+ ],
638
+ "registryDependencies": [],
639
+ "fileCount": 1,
640
+ "files": [
641
+ "registry/new-york/ui/progress.tsx"
642
+ ],
643
+ "installCommand": "npx shadcn@latest add progress",
644
+ "category": "shadcn-components"
645
+ },
646
+ {
647
+ "name": "radio-group",
648
+ "title": "radio-group",
649
+ "description": "component from shadcn/ui (new-york)",
650
+ "type": "component",
651
+ "stack": "react",
652
+ "style": "new-york",
653
+ "dependencies": [
654
+ "@radix-ui/react-radio-group"
655
+ ],
656
+ "registryDependencies": [],
657
+ "fileCount": 1,
658
+ "files": [
659
+ "registry/new-york/ui/radio-group.tsx"
660
+ ],
661
+ "installCommand": "npx shadcn@latest add radio-group",
662
+ "category": "shadcn-components"
663
+ },
664
+ {
665
+ "name": "resizable",
666
+ "title": "resizable",
667
+ "description": "component from shadcn/ui (new-york)",
668
+ "type": "component",
669
+ "stack": "react",
670
+ "style": "new-york",
671
+ "dependencies": [
672
+ "react-resizable-panels"
673
+ ],
674
+ "registryDependencies": [],
675
+ "fileCount": 1,
676
+ "files": [
677
+ "registry/new-york/ui/resizable.tsx"
678
+ ],
679
+ "installCommand": "npx shadcn@latest add resizable",
680
+ "category": "shadcn-components"
681
+ },
682
+ {
683
+ "name": "scroll-area",
684
+ "title": "scroll-area",
685
+ "description": "component from shadcn/ui (new-york)",
686
+ "type": "component",
687
+ "stack": "react",
688
+ "style": "new-york",
689
+ "dependencies": [
690
+ "@radix-ui/react-scroll-area"
691
+ ],
692
+ "registryDependencies": [],
693
+ "fileCount": 1,
694
+ "files": [
695
+ "registry/new-york/ui/scroll-area.tsx"
696
+ ],
697
+ "installCommand": "npx shadcn@latest add scroll-area",
698
+ "category": "shadcn-components"
699
+ },
700
+ {
701
+ "name": "select",
702
+ "title": "select",
703
+ "description": "component from shadcn/ui (new-york)",
704
+ "type": "component",
705
+ "stack": "react",
706
+ "style": "new-york",
707
+ "dependencies": [
708
+ "@radix-ui/react-select"
709
+ ],
710
+ "registryDependencies": [],
711
+ "fileCount": 1,
712
+ "files": [
713
+ "registry/new-york/ui/select.tsx"
714
+ ],
715
+ "installCommand": "npx shadcn@latest add select",
716
+ "category": "shadcn-components"
717
+ },
718
+ {
719
+ "name": "separator",
720
+ "title": "separator",
721
+ "description": "component from shadcn/ui (new-york)",
722
+ "type": "component",
723
+ "stack": "react",
724
+ "style": "new-york",
725
+ "dependencies": [
726
+ "@radix-ui/react-separator"
727
+ ],
728
+ "registryDependencies": [],
729
+ "fileCount": 1,
730
+ "files": [
731
+ "registry/new-york/ui/separator.tsx"
732
+ ],
733
+ "installCommand": "npx shadcn@latest add separator",
734
+ "category": "shadcn-components"
735
+ },
736
+ {
737
+ "name": "sheet",
738
+ "title": "sheet",
739
+ "description": "component from shadcn/ui (new-york)",
740
+ "type": "component",
741
+ "stack": "react",
742
+ "style": "new-york",
743
+ "dependencies": [
744
+ "@radix-ui/react-dialog"
745
+ ],
746
+ "registryDependencies": [],
747
+ "fileCount": 1,
748
+ "files": [
749
+ "registry/new-york/ui/sheet.tsx"
750
+ ],
751
+ "installCommand": "npx shadcn@latest add sheet",
752
+ "category": "shadcn-components"
753
+ },
754
+ {
755
+ "name": "sidebar",
756
+ "title": "sidebar",
757
+ "description": "component from shadcn/ui (new-york)",
758
+ "type": "component",
759
+ "stack": "react",
760
+ "style": "new-york",
761
+ "dependencies": [
762
+ "@radix-ui/react-slot",
763
+ "class-variance-authority",
764
+ "lucide-react"
765
+ ],
766
+ "registryDependencies": [
767
+ "button",
768
+ "separator",
769
+ "sheet",
770
+ "tooltip",
771
+ "input",
772
+ "use-mobile",
773
+ "skeleton"
774
+ ],
775
+ "fileCount": 1,
776
+ "files": [
777
+ "registry/new-york/ui/sidebar.tsx"
778
+ ],
779
+ "installCommand": "npx shadcn@latest add sidebar",
780
+ "category": "shadcn-components"
781
+ },
782
+ {
783
+ "name": "skeleton",
784
+ "title": "skeleton",
785
+ "description": "component from shadcn/ui (new-york)",
786
+ "type": "component",
787
+ "stack": "react",
788
+ "style": "new-york",
789
+ "dependencies": [],
790
+ "registryDependencies": [],
791
+ "fileCount": 1,
792
+ "files": [
793
+ "registry/new-york/ui/skeleton.tsx"
794
+ ],
795
+ "installCommand": "npx shadcn@latest add skeleton",
796
+ "category": "shadcn-components"
797
+ },
798
+ {
799
+ "name": "slider",
800
+ "title": "slider",
801
+ "description": "component from shadcn/ui (new-york)",
802
+ "type": "component",
803
+ "stack": "react",
804
+ "style": "new-york",
805
+ "dependencies": [
806
+ "@radix-ui/react-slider"
807
+ ],
808
+ "registryDependencies": [],
809
+ "fileCount": 1,
810
+ "files": [
811
+ "registry/new-york/ui/slider.tsx"
812
+ ],
813
+ "installCommand": "npx shadcn@latest add slider",
814
+ "category": "shadcn-components"
815
+ },
816
+ {
817
+ "name": "sonner",
818
+ "title": "sonner",
819
+ "description": "component from shadcn/ui (new-york)",
820
+ "type": "component",
821
+ "stack": "react",
822
+ "style": "new-york",
823
+ "dependencies": [
824
+ "sonner",
825
+ "next-themes"
826
+ ],
827
+ "registryDependencies": [],
828
+ "fileCount": 1,
829
+ "files": [
830
+ "registry/new-york/ui/sonner.tsx"
831
+ ],
832
+ "installCommand": "npx shadcn@latest add sonner",
833
+ "category": "shadcn-components"
834
+ },
835
+ {
836
+ "name": "spinner",
837
+ "title": "spinner",
838
+ "description": "component from shadcn/ui (new-york)",
839
+ "type": "component",
840
+ "stack": "react",
841
+ "style": "new-york",
842
+ "dependencies": [
843
+ "class-variance-authority"
844
+ ],
845
+ "registryDependencies": [],
846
+ "fileCount": 1,
847
+ "files": [
848
+ "registry/new-york/ui/spinner.tsx"
849
+ ],
850
+ "installCommand": "npx shadcn@latest add spinner",
851
+ "category": "shadcn-components"
852
+ },
853
+ {
854
+ "name": "switch",
855
+ "title": "switch",
856
+ "description": "component from shadcn/ui (new-york)",
857
+ "type": "component",
858
+ "stack": "react",
859
+ "style": "new-york",
860
+ "dependencies": [
861
+ "@radix-ui/react-switch"
862
+ ],
863
+ "registryDependencies": [],
864
+ "fileCount": 1,
865
+ "files": [
866
+ "registry/new-york/ui/switch.tsx"
867
+ ],
868
+ "installCommand": "npx shadcn@latest add switch",
869
+ "category": "shadcn-components"
870
+ },
871
+ {
872
+ "name": "table",
873
+ "title": "table",
874
+ "description": "component from shadcn/ui (new-york)",
875
+ "type": "component",
876
+ "stack": "react",
877
+ "style": "new-york",
878
+ "dependencies": [],
879
+ "registryDependencies": [],
880
+ "fileCount": 1,
881
+ "files": [
882
+ "registry/new-york/ui/table.tsx"
883
+ ],
884
+ "installCommand": "npx shadcn@latest add table",
885
+ "category": "shadcn-components"
886
+ },
887
+ {
888
+ "name": "tabs",
889
+ "title": "tabs",
890
+ "description": "component from shadcn/ui (new-york)",
891
+ "type": "component",
892
+ "stack": "react",
893
+ "style": "new-york",
894
+ "dependencies": [
895
+ "@radix-ui/react-tabs"
896
+ ],
897
+ "registryDependencies": [],
898
+ "fileCount": 1,
899
+ "files": [
900
+ "registry/new-york/ui/tabs.tsx"
901
+ ],
902
+ "installCommand": "npx shadcn@latest add tabs",
903
+ "category": "shadcn-components"
904
+ },
905
+ {
906
+ "name": "textarea",
907
+ "title": "textarea",
908
+ "description": "component from shadcn/ui (new-york)",
909
+ "type": "component",
910
+ "stack": "react",
911
+ "style": "new-york",
912
+ "dependencies": [],
913
+ "registryDependencies": [],
914
+ "fileCount": 1,
915
+ "files": [
916
+ "registry/new-york/ui/textarea.tsx"
917
+ ],
918
+ "installCommand": "npx shadcn@latest add textarea",
919
+ "category": "shadcn-components"
920
+ },
921
+ {
922
+ "name": "toast",
923
+ "title": "toast",
924
+ "description": "component from shadcn/ui (new-york)",
925
+ "type": "component",
926
+ "stack": "react",
927
+ "style": "new-york",
928
+ "dependencies": [
929
+ "@radix-ui/react-toast"
930
+ ],
931
+ "registryDependencies": [],
932
+ "fileCount": 3,
933
+ "files": [
934
+ "registry/new-york/ui/toast.tsx",
935
+ "registry/new-york/hooks/use-toast.ts",
936
+ "registry/new-york/ui/toaster.tsx"
937
+ ],
938
+ "installCommand": "npx shadcn@latest add toast",
939
+ "category": "shadcn-components"
940
+ },
941
+ {
942
+ "name": "toggle",
943
+ "title": "toggle",
944
+ "description": "component from shadcn/ui (new-york)",
945
+ "type": "component",
946
+ "stack": "react",
947
+ "style": "new-york",
948
+ "dependencies": [
949
+ "@radix-ui/react-toggle"
950
+ ],
951
+ "registryDependencies": [],
952
+ "fileCount": 1,
953
+ "files": [
954
+ "registry/new-york/ui/toggle.tsx"
955
+ ],
956
+ "installCommand": "npx shadcn@latest add toggle",
957
+ "category": "shadcn-components"
958
+ },
959
+ {
960
+ "name": "toggle-group",
961
+ "title": "toggle-group",
962
+ "description": "component from shadcn/ui (new-york)",
963
+ "type": "component",
964
+ "stack": "react",
965
+ "style": "new-york",
966
+ "dependencies": [
967
+ "@radix-ui/react-toggle-group"
968
+ ],
969
+ "registryDependencies": [
970
+ "toggle"
971
+ ],
972
+ "fileCount": 1,
973
+ "files": [
974
+ "registry/new-york/ui/toggle-group.tsx"
975
+ ],
976
+ "installCommand": "npx shadcn@latest add toggle-group",
977
+ "category": "shadcn-components"
978
+ },
979
+ {
980
+ "name": "tooltip",
981
+ "title": "tooltip",
982
+ "description": "component from shadcn/ui (new-york)",
983
+ "type": "component",
984
+ "stack": "react",
985
+ "style": "new-york",
986
+ "dependencies": [
987
+ "@radix-ui/react-tooltip"
988
+ ],
989
+ "registryDependencies": [],
990
+ "fileCount": 1,
991
+ "files": [
992
+ "registry/new-york/ui/tooltip.tsx"
993
+ ],
994
+ "installCommand": "npx shadcn@latest add tooltip",
995
+ "category": "shadcn-components"
996
+ }
997
+ ]