-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathschema.json
More file actions
260 lines (260 loc) · 7.8 KB
/
Copy pathschema.json
File metadata and controls
260 lines (260 loc) · 7.8 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
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
256
257
258
259
260
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "JsonStructure",
"description": "Defines the root structure for a scaffold configuration file.",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The internal name of the scaffold."
},
"title": {
"type": "string",
"description": "A user-friendly title for the scaffold."
},
"version": {
"type": "string",
"description": "The semantic version of the scaffold."
},
"description": {
"type": "string",
"description": "A brief summary of what the scaffold does."
},
"registryDependencies": {
"type": "array",
"items": { "type": "string" },
"description": "A list of UI registry dependencies (e.g., from shadcn/ui) to be installed."
},
"dependencies": {
"type": "array",
"items": { "type": "string" },
"description": "A list of npm packages to be installed."
},
"jobs": {
"type": "array",
"items": { "$ref": "#/$defs/job" },
"description": "The primary array of jobs to be executed by the scaffolder."
},
"definitions": {
"type": "object",
"additionalProperties": {
"allOf": [
{ "$ref": "#/$defs/job" },
{
"properties": { "when": false },
"description": "Job definitions cannot contain a 'when' property."
}
]
},
"description": "A collection of reusable job definitions that can be referenced."
}
},
"$defs": {
"stringOrArray": {
"oneOf": [
{ "type": "string" },
{ "type": "array", "items": { "type": "string" } }
]
},
"job": {
"description": "Represents a single executable task (a 'job') within the scaffold process.",
"oneOf": [
{ "$ref": "#/$defs/questionJob" },
{ "$ref": "#/$defs/groupJob" },
{ "$ref": "#/$defs/registryDependenciesJob" },
{ "$ref": "#/$defs/dependenciesJob" },
{ "$ref": "#/$defs/runJob" },
{ "$ref": "#/$defs/logJob" },
{ "$ref": "#/$defs/fileJob" }
]
},
"jobBase": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for the job. Prefixes # and @ have special meaning for 'question' jobs."
},
"when": {
"type": "string",
"description": "A conditional expression that determines if the job should execute."
},
"confirm": {
"type": "string",
"description": "A confirmation prompt to show before executing the job."
}
}
},
"questionJob": {
"description": "Prompts the user for input. An `id` is required.",
"allOf": [
{ "$ref": "#/$defs/jobBase" },
{
"properties": {
"type": { "const": "question" },
"question": {
"type": "string",
"description": "The question text displayed to the user."
},
"defaultValue": {
"type": "string",
"description": "An optional default value for the prompt."
}
},
"required": ["question"]
},
{
"oneOf": [
{
"properties": {
"questionType": { "enum": ["ask", "confirm"] }
},
"required": ["questionType"]
},
{
"properties": {
"questionType": { "const": "options" },
"options": {
"type": "object",
"additionalProperties": { "type": "string" },
"description": "A map of options to display."
}
},
"required": ["questionType", "options"]
}
]
}
],
"required": ["id", "type"]
},
"groupJob": {
"description": "A container for a nested sequence of jobs.",
"allOf": [
{ "$ref": "#/$defs/jobBase" },
{
"properties": {
"type": { "const": "group" },
"jobs": {
"type": "array",
"items": { "$ref": "#/$defs/job" },
"description": "An array of `Job` objects to be executed sequentially."
},
"base": {
"type": "string",
"description": "An optional base path that prefixes all file paths within this group."
}
},
"required": ["jobs"]
}
],
"required": ["type"]
},
"registryDependenciesJob": {
"description": "Installs dependencies from a UI component registry. A `when` condition is required.",
"allOf": [
{ "$ref": "#/$defs/jobBase" },
{
"properties": {
"type": { "const": "registryDependencies" },
"registryDependencies": { "$ref": "#/$defs/stringOrArray" }
},
"required": ["registryDependencies"]
}
],
"required": ["when", "type"]
},
"dependenciesJob": {
"description": "Installs npm packages. A `when` condition is required.",
"allOf": [
{ "$ref": "#/$defs/jobBase" },
{
"properties": {
"type": { "const": "dependencies" },
"dependencies": { "$ref": "#/$defs/stringOrArray" }
},
"required": ["dependencies"]
}
],
"required": ["when", "type"]
},
"runJob": {
"description": "Executes a job from the `definitions` map.",
"allOf": [
{ "$ref": "#/$defs/jobBase" },
{
"properties": {
"type": { "const": "run" },
"target": { "type": "string" }
},
"required": ["target"]
}
],
"required": ["type"]
},
"logJob": {
"description": "Displays a custom message in the terminal.",
"allOf": [
{ "$ref": "#/$defs/jobBase" },
{
"properties": {
"type": { "const": "log" },
"message": { "type": "string" },
"logLevel": {
"enum": ["error", "warn", "info", "success", "log"],
"default": "log"
}
},
"required": ["message"]
}
],
"required": ["type"]
},
"fileJob": {
"description": "Performs a file operation (write, append, or replace). The 'type' property defaults to 'file'.",
"allOf": [
{ "$ref": "#/$defs/jobBase" },
{
"properties": {
"type": { "const": "file" },
"name": {
"type": "string",
"description": "The path of the file, relative to the project or a `base` directory."
}
},
"required": ["name"]
},
{
"oneOf": [
{
"properties": {
"method": {
"enum": ["w", "a"],
"description": "Method for writing: 'w' (write/overwrite) or 'a' (append)."
},
"content": {
"type": "string",
"description": "The content to write or append (raw string, URL, or local file path)."
}
},
"required": ["content"]
},
{
"properties": {
"method": {
"const": "replace",
"description": "Specifies a search-and-replace operation."
},
"content": {
"type": "object",
"additionalProperties": { "type": "string" },
"description": "A key-value map for search-and-replace operations."
}
},
"required": ["method", "content"]
}
]
}
]
}
}
}