generated from githubnext/blocks-template
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathblocks.config.json
255 lines (255 loc) · 8.29 KB
/
blocks.config.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
[
{
"type": "file",
"id": "code-block",
"title": "Code block",
"description": "A basic code block",
"sandbox": false,
"entry": "blocks/file-blocks/code/index.tsx",
"matches": ["*"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/Aside.jsx"
},
{
"type": "file",
"id": "excalidraw-block",
"title": "Drawing block",
"description": "A whiteboard tool",
"sandbox": false,
"entry": "blocks/file-blocks/excalidraw/index.tsx",
"matches": ["*.excalidraw"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/drawing.excalidraw"
},
{
"type": "file",
"id": "html-block",
"title": "HTML block",
"description": "View HTML content",
"sandbox": false,
"entry": "blocks/file-blocks/html.tsx",
"matches": ["*.html", "*.svelte"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/photos.html"
},
{
"type": "file",
"id": "css-block",
"title": "Styleguide block",
"description": "View selectors in a css file",
"sandbox": false,
"entry": "blocks/file-blocks/css.tsx",
"matches": ["*.css"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/global.css"
},
{
"type": "file",
"id": "image-block",
"title": "Image block",
"description": "View images",
"sandbox": false,
"entry": "blocks/file-blocks/image.tsx",
"matches": ["*.png", "*.jpg", "*.jpeg", "*.gif", "*.svg"],
"example_path": "https://github.com/pmndrs/react-spring/blob/HEAD/assets/projects/aragon.png?raw=true"
},
{
"type": "file",
"id": "json-block",
"title": "Object explorer",
"description": "An interactive view of JSON objects",
"sandbox": false,
"entry": "blocks/file-blocks/json.tsx",
"matches": [
"*.json",
"*.webmanifest",
"webmanifest",
"prettierrc",
"*.prettierrc",
"*.yaml",
"*.yml"
],
"example_path": "https://github.com/d3/d3-geo/blob/main/package.json"
},
{
"type": "file",
"id": "geojson-block",
"title": "GeoJSON explorer",
"description": "View & edit GeoJSON data",
"sandbox": false,
"entry": "blocks/file-blocks/geojson.tsx",
"matches": ["*.geo.json", "*.geojson"],
"example_path": "https://github.com/d3/d3-geo/blob/main/package.json"
},
{
"type": "file",
"id": "3d-model-block",
"title": "3D block",
"description": "A block for 3d files",
"sandbox": false,
"entry": "blocks/file-blocks/3d-files.tsx",
"matches": ["*.gltf", "*.glb"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/avocado.glb"
},
{
"type": "file",
"id": "flat-block",
"title": "Flat data block",
"description": "A block for flat data files",
"sandbox": false,
"entry": "blocks/file-blocks/flat.tsx",
"matches": ["*.csv", "*.yml", "*.yaml"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/data.csv"
},
{
"type": "file",
"id": "simple-poll-block",
"title": "Poll block",
"description": "View simple polls beautifully",
"sandbox": false,
"entry": "blocks/file-blocks/poll.tsx",
"matches": ["*.json"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/poll.json"
},
{
"type": "file",
"id": "chart-block",
"title": "Chart block",
"description": "An interactive chart block",
"sandbox": false,
"entry": "blocks/file-blocks/charts/index.tsx",
"matches": ["*.csv"],
"example_path": "https://github.com/the-pudding/data/blob/master/pockets/measurements.csv"
},
{
"type": "file",
"id": "markdown-block",
"title": "Markdown",
"description": "View markdown files. You can also view live repo info, using Issues, Releases, and Commits custom components, as well as live code examples with CodeSandbox.",
"sandbox": true,
"entry": "blocks/file-blocks/live-markdown/index.tsx",
"matches": ["*.md", "*.mdx"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/README.md"
},
{
"type": "file",
"id": "use-case-block",
"title": "Blocks use case",
"description": "View Blocks use case writeups",
"sandbox": false,
"entry": "blocks/file-blocks/use-case/index.tsx",
"matches": ["*.md", "*.mdx"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/README.md"
},
{
"type": "file",
"id": "react-feedback-block",
"title": "React component feedback",
"description": "Give feedback on a React component",
"sandbox": false,
"entry": "blocks/file-blocks/annotate-react/index.tsx",
"matches": ["*.jsx", "*.tsx"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/Aside.jsx"
},
{
"type": "file",
"id": "sentence-encoder-block",
"title": "Sentence encoder block",
"description": "Experiment with your sentence-encoder",
"sandbox": false,
"entry": "blocks/file-blocks/sentence-encoder.tsx",
"matches": ["*.json"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/queries.json"
},
{
"type": "file",
"id": "processing-block",
"title": "Processing block",
"description": "Run your p5.js sketches",
"sandbox": true,
"entry": "blocks/file-blocks/processing.tsx",
"matches": ["*.js"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/processing-sketch.js"
},
{
"type": "file",
"id": "summarize-block",
"title": "Summarize block",
"description": "Summarize parts of a file using ML",
"sandbox": false,
"entry": "blocks/file-blocks/summarize/index.tsx",
"matches": ["*.js", "*.ts", "*.tsx", "*.jsx"],
"example_path": "https://github.com/mattdesl/canvas-sketch/blob/master/lib/save.js"
},
{
"type": "file",
"id": "explain-block",
"title": "Explain block",
"description": "Explain parts of a file using ML",
"sandbox": false,
"entry": "blocks/file-blocks/explain/index.tsx",
"matches": ["*.js", "*.ts", "*.tsx", "*.jsx", "*.rb", "*.py"],
"example_path": "https://github.com/mattdesl/canvas-sketch/blob/master/lib/save.js"
},
{
"type": "file",
"id": "edit-block",
"title": "Edit code",
"description": "Edit code by prompting a Machine Learning model",
"sandbox": false,
"entry": "blocks/file-blocks/edit/index.tsx",
"matches": ["*"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/processing-sketch.js"
},
{
"type": "file",
"id": "edit-and-preview-block",
"title": "Edit with Preview",
"description": "Edit code side-by-side with a preview",
"sandbox": false,
"entry": "blocks/file-blocks/edit-and-preview/index.tsx",
"matches": ["*"],
"example_path": "https://github.com/githubnext/blocks-tutorial/blob/main/README.md"
},
{
"type": "folder",
"id": "minimap-block",
"title": "Minimap",
"description": "A visualization of your folders and files",
"sandbox": false,
"entry": "blocks/folder-blocks/minimap/index.tsx",
"example_path": "https://github.com/githubnext/blocks-tutorial"
},
{
"type": "folder",
"id": "overview-block",
"title": "Overview",
"description": "An overview of a folder: including README, license, and recent activity",
"sandbox": false,
"entry": "blocks/folder-blocks/overview/index.tsx",
"example_path": "https://github.com/githubnext/blocks-tutorial"
},
{
"type": "folder",
"id": "dashboard-block",
"title": "Dashboard",
"description": "A dashboard of Blocks",
"sandbox": false,
"entry": "blocks/folder-blocks/dashboard/index.tsx",
"example_path": "https://github.com/githubnext/blocks-tutorial"
},
{
"type": "folder",
"id": "code-tour-block",
"title": "Code Tour",
"description": "Create documented tours of your code",
"sandbox": false,
"entry": "blocks/folder-blocks/code-tour/index.tsx",
"example_path": "https://github.com/githubnext/blocks-tutorial"
},
{
"type": "folder",
"id": "infinite-canvas-block",
"title": "Infinite Canvas",
"description": "View and annotate your files in an infinite canvas",
"sandbox": false,
"entry": "blocks/folder-blocks/infinite-canvas/index.tsx",
"example_path": "https://github.com/githubnext/blocks-tutorial"
}
]