@raycast/api 1.85.2 → 1.86.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.
- package/bin/run.cmd +3 -0
- package/bin/run.js +4 -0
- package/dist/api/base.js +21 -0
- package/dist/api/github.js +31 -0
- package/dist/api/raycast.js +21 -0
- package/dist/commands/build/index.js +621 -0
- package/dist/commands/develop/index.js +622 -0
- package/dist/commands/lint/index.js +102 -0
- package/dist/commands/login/index.js +21 -0
- package/dist/commands/logout/index.js +1 -0
- package/dist/commands/migrate/index.js +43 -0
- package/dist/commands/profile/index.js +21 -0
- package/dist/commands/publish/index.js +811 -0
- package/dist/commands/pull-contributions/index.js +43 -0
- package/dist/commands/token/index.js +11 -0
- package/dist/commands/validate/index.js +102 -0
- package/dist/commands/version/index.js +1 -0
- package/dist/config.js +1 -0
- package/dist/index.js +1 -0
- package/dist/manifest.js +1 -0
- package/dist/types/json-source-map.d.js +1 -0
- package/dist/types/manifest-schema.d.js +1 -0
- package/dist/utils/BaseCommand.js +1 -0
- package/dist/utils/esbuild-plugins/node-files.js +1 -0
- package/dist/utils/esbuild-plugins/swift-files.js +150 -0
- package/dist/utils/generate-typeScript-definitions.js +37 -0
- package/dist/utils/output.js +13 -0
- package/dist/utils/publish/copy-dir.js +1 -0
- package/dist/utils/publish/git.js +4 -0
- package/dist/utils/publish/publish-to-public-repo.js +78 -0
- package/dist/utils/publish/publish-to-store.js +728 -0
- package/dist/utils/publish/pull-contributions.js +43 -0
- package/dist/utils/publish/setup-github-fork.js +43 -0
- package/dist/utils/raycast-app-communication.js +2 -0
- package/oclif.manifest.json +984 -0
- package/package.json +19 -7
- package/bin/ray +0 -71
|
@@ -0,0 +1,984 @@
|
|
|
1
|
+
{
|
|
2
|
+
"commands": {
|
|
3
|
+
"build": {
|
|
4
|
+
"aliases": [],
|
|
5
|
+
"args": {},
|
|
6
|
+
"description": "Build the extension to the output directory",
|
|
7
|
+
"flags": {
|
|
8
|
+
"exit-on-error": {
|
|
9
|
+
"aliases": [
|
|
10
|
+
"exitOnError"
|
|
11
|
+
],
|
|
12
|
+
"deprecateAliases": true,
|
|
13
|
+
"helpGroup": "GLOBAL",
|
|
14
|
+
"name": "exit-on-error",
|
|
15
|
+
"summary": "Always exit with non-zero code on error",
|
|
16
|
+
"allowNo": true,
|
|
17
|
+
"type": "boolean"
|
|
18
|
+
},
|
|
19
|
+
"emoji": {
|
|
20
|
+
"helpGroup": "GLOBAL",
|
|
21
|
+
"name": "emoji",
|
|
22
|
+
"summary": "Prefix output with emojis 🌈",
|
|
23
|
+
"allowNo": false,
|
|
24
|
+
"type": "boolean"
|
|
25
|
+
},
|
|
26
|
+
"help": {
|
|
27
|
+
"helpGroup": "GLOBAL",
|
|
28
|
+
"name": "help",
|
|
29
|
+
"summary": "Show the help message for the command",
|
|
30
|
+
"allowNo": false,
|
|
31
|
+
"type": "boolean"
|
|
32
|
+
},
|
|
33
|
+
"non-interactive": {
|
|
34
|
+
"char": "I",
|
|
35
|
+
"helpGroup": "GLOBAL",
|
|
36
|
+
"name": "non-interactive",
|
|
37
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
38
|
+
"allowNo": false,
|
|
39
|
+
"type": "boolean"
|
|
40
|
+
},
|
|
41
|
+
"target": {
|
|
42
|
+
"char": "t",
|
|
43
|
+
"description": "Raycast app target",
|
|
44
|
+
"helpGroup": "GLOBAL",
|
|
45
|
+
"hidden": true,
|
|
46
|
+
"name": "target",
|
|
47
|
+
"hasDynamicHelp": false,
|
|
48
|
+
"multiple": false,
|
|
49
|
+
"options": [
|
|
50
|
+
"debug",
|
|
51
|
+
"internal",
|
|
52
|
+
"release"
|
|
53
|
+
],
|
|
54
|
+
"type": "option"
|
|
55
|
+
},
|
|
56
|
+
"environment": {
|
|
57
|
+
"char": "e",
|
|
58
|
+
"description": "Environment to build for",
|
|
59
|
+
"name": "environment",
|
|
60
|
+
"default": "dev",
|
|
61
|
+
"hasDynamicHelp": false,
|
|
62
|
+
"multiple": false,
|
|
63
|
+
"options": [
|
|
64
|
+
"dev",
|
|
65
|
+
"dist"
|
|
66
|
+
],
|
|
67
|
+
"type": "option"
|
|
68
|
+
},
|
|
69
|
+
"output": {
|
|
70
|
+
"char": "o",
|
|
71
|
+
"description": "Output path",
|
|
72
|
+
"name": "output",
|
|
73
|
+
"hasDynamicHelp": false,
|
|
74
|
+
"multiple": false,
|
|
75
|
+
"type": "option"
|
|
76
|
+
},
|
|
77
|
+
"skip-types": {
|
|
78
|
+
"description": "Indicates whether to skip types generation \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
79
|
+
"hidden": true,
|
|
80
|
+
"name": "skip-types",
|
|
81
|
+
"allowNo": false,
|
|
82
|
+
"type": "boolean"
|
|
83
|
+
},
|
|
84
|
+
"print-tool-schemas": {
|
|
85
|
+
"description": "Indicates whether to print the schema tools \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
86
|
+
"hidden": true,
|
|
87
|
+
"name": "print-tool-schemas",
|
|
88
|
+
"allowNo": false,
|
|
89
|
+
"type": "boolean"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
"hasDynamicHelp": false,
|
|
93
|
+
"hiddenAliases": [],
|
|
94
|
+
"id": "build",
|
|
95
|
+
"pluginAlias": "ray",
|
|
96
|
+
"pluginName": "ray",
|
|
97
|
+
"pluginType": "core",
|
|
98
|
+
"strict": true,
|
|
99
|
+
"enableJsonFlag": false,
|
|
100
|
+
"isESM": false,
|
|
101
|
+
"relativePath": [
|
|
102
|
+
"dist",
|
|
103
|
+
"commands",
|
|
104
|
+
"build",
|
|
105
|
+
"index.js"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
108
|
+
"develop": {
|
|
109
|
+
"aliases": [
|
|
110
|
+
"dev"
|
|
111
|
+
],
|
|
112
|
+
"args": {},
|
|
113
|
+
"description": "Start the extension in development mode and watches for changes",
|
|
114
|
+
"flags": {
|
|
115
|
+
"exit-on-error": {
|
|
116
|
+
"aliases": [
|
|
117
|
+
"exitOnError"
|
|
118
|
+
],
|
|
119
|
+
"deprecateAliases": true,
|
|
120
|
+
"helpGroup": "GLOBAL",
|
|
121
|
+
"name": "exit-on-error",
|
|
122
|
+
"summary": "Always exit with non-zero code on error",
|
|
123
|
+
"allowNo": true,
|
|
124
|
+
"type": "boolean"
|
|
125
|
+
},
|
|
126
|
+
"emoji": {
|
|
127
|
+
"helpGroup": "GLOBAL",
|
|
128
|
+
"name": "emoji",
|
|
129
|
+
"summary": "Prefix output with emojis 🌈",
|
|
130
|
+
"allowNo": false,
|
|
131
|
+
"type": "boolean"
|
|
132
|
+
},
|
|
133
|
+
"help": {
|
|
134
|
+
"helpGroup": "GLOBAL",
|
|
135
|
+
"name": "help",
|
|
136
|
+
"summary": "Show the help message for the command",
|
|
137
|
+
"allowNo": false,
|
|
138
|
+
"type": "boolean"
|
|
139
|
+
},
|
|
140
|
+
"non-interactive": {
|
|
141
|
+
"char": "I",
|
|
142
|
+
"helpGroup": "GLOBAL",
|
|
143
|
+
"name": "non-interactive",
|
|
144
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
145
|
+
"allowNo": false,
|
|
146
|
+
"type": "boolean"
|
|
147
|
+
},
|
|
148
|
+
"target": {
|
|
149
|
+
"char": "t",
|
|
150
|
+
"description": "Raycast app target",
|
|
151
|
+
"helpGroup": "GLOBAL",
|
|
152
|
+
"hidden": true,
|
|
153
|
+
"name": "target",
|
|
154
|
+
"hasDynamicHelp": false,
|
|
155
|
+
"multiple": false,
|
|
156
|
+
"options": [
|
|
157
|
+
"debug",
|
|
158
|
+
"internal",
|
|
159
|
+
"release"
|
|
160
|
+
],
|
|
161
|
+
"type": "option"
|
|
162
|
+
},
|
|
163
|
+
"print-tool-schemas": {
|
|
164
|
+
"description": "Indicates whether to print the schema tools \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
165
|
+
"hidden": true,
|
|
166
|
+
"name": "print-tool-schemas",
|
|
167
|
+
"allowNo": false,
|
|
168
|
+
"type": "boolean"
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
"hasDynamicHelp": false,
|
|
172
|
+
"hiddenAliases": [],
|
|
173
|
+
"id": "develop",
|
|
174
|
+
"pluginAlias": "ray",
|
|
175
|
+
"pluginName": "ray",
|
|
176
|
+
"pluginType": "core",
|
|
177
|
+
"strict": true,
|
|
178
|
+
"enableJsonFlag": false,
|
|
179
|
+
"isESM": false,
|
|
180
|
+
"relativePath": [
|
|
181
|
+
"dist",
|
|
182
|
+
"commands",
|
|
183
|
+
"develop",
|
|
184
|
+
"index.js"
|
|
185
|
+
]
|
|
186
|
+
},
|
|
187
|
+
"lint": {
|
|
188
|
+
"aliases": [],
|
|
189
|
+
"args": {},
|
|
190
|
+
"description": "Validate the extension manifest and metadata, and lint its source code",
|
|
191
|
+
"flags": {
|
|
192
|
+
"exit-on-error": {
|
|
193
|
+
"aliases": [
|
|
194
|
+
"exitOnError"
|
|
195
|
+
],
|
|
196
|
+
"deprecateAliases": true,
|
|
197
|
+
"helpGroup": "GLOBAL",
|
|
198
|
+
"name": "exit-on-error",
|
|
199
|
+
"summary": "Always exit with non-zero code on error",
|
|
200
|
+
"allowNo": true,
|
|
201
|
+
"type": "boolean"
|
|
202
|
+
},
|
|
203
|
+
"emoji": {
|
|
204
|
+
"helpGroup": "GLOBAL",
|
|
205
|
+
"name": "emoji",
|
|
206
|
+
"summary": "Prefix output with emojis 🌈",
|
|
207
|
+
"allowNo": false,
|
|
208
|
+
"type": "boolean"
|
|
209
|
+
},
|
|
210
|
+
"help": {
|
|
211
|
+
"helpGroup": "GLOBAL",
|
|
212
|
+
"name": "help",
|
|
213
|
+
"summary": "Show the help message for the command",
|
|
214
|
+
"allowNo": false,
|
|
215
|
+
"type": "boolean"
|
|
216
|
+
},
|
|
217
|
+
"non-interactive": {
|
|
218
|
+
"char": "I",
|
|
219
|
+
"helpGroup": "GLOBAL",
|
|
220
|
+
"name": "non-interactive",
|
|
221
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
222
|
+
"allowNo": false,
|
|
223
|
+
"type": "boolean"
|
|
224
|
+
},
|
|
225
|
+
"target": {
|
|
226
|
+
"char": "t",
|
|
227
|
+
"description": "Raycast app target",
|
|
228
|
+
"helpGroup": "GLOBAL",
|
|
229
|
+
"hidden": true,
|
|
230
|
+
"name": "target",
|
|
231
|
+
"hasDynamicHelp": false,
|
|
232
|
+
"multiple": false,
|
|
233
|
+
"options": [
|
|
234
|
+
"debug",
|
|
235
|
+
"internal",
|
|
236
|
+
"release"
|
|
237
|
+
],
|
|
238
|
+
"type": "option"
|
|
239
|
+
},
|
|
240
|
+
"fix": {
|
|
241
|
+
"char": "f",
|
|
242
|
+
"description": "Attempt to fix linting issues",
|
|
243
|
+
"name": "fix",
|
|
244
|
+
"allowNo": false,
|
|
245
|
+
"type": "boolean"
|
|
246
|
+
},
|
|
247
|
+
"relaxed": {
|
|
248
|
+
"char": "r",
|
|
249
|
+
"description": "Use relaxed linting mode to skip validation of: package.json schema, icons and metadata.",
|
|
250
|
+
"name": "relaxed",
|
|
251
|
+
"allowNo": false,
|
|
252
|
+
"type": "boolean"
|
|
253
|
+
},
|
|
254
|
+
"schema": {
|
|
255
|
+
"char": "s",
|
|
256
|
+
"description": "Path to JSON schema for package.json validation \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
257
|
+
"hidden": true,
|
|
258
|
+
"name": "schema",
|
|
259
|
+
"default": "https://www.raycast.com/schemas/extension.json",
|
|
260
|
+
"hasDynamicHelp": false,
|
|
261
|
+
"multiple": false,
|
|
262
|
+
"type": "option"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"hasDynamicHelp": false,
|
|
266
|
+
"hiddenAliases": [],
|
|
267
|
+
"id": "lint",
|
|
268
|
+
"pluginAlias": "ray",
|
|
269
|
+
"pluginName": "ray",
|
|
270
|
+
"pluginType": "core",
|
|
271
|
+
"strict": true,
|
|
272
|
+
"enableJsonFlag": false,
|
|
273
|
+
"isESM": false,
|
|
274
|
+
"relativePath": [
|
|
275
|
+
"dist",
|
|
276
|
+
"commands",
|
|
277
|
+
"lint",
|
|
278
|
+
"index.js"
|
|
279
|
+
]
|
|
280
|
+
},
|
|
281
|
+
"login": {
|
|
282
|
+
"aliases": [],
|
|
283
|
+
"args": {},
|
|
284
|
+
"description": "Log into your Raycast account",
|
|
285
|
+
"flags": {
|
|
286
|
+
"exit-on-error": {
|
|
287
|
+
"aliases": [
|
|
288
|
+
"exitOnError"
|
|
289
|
+
],
|
|
290
|
+
"deprecateAliases": true,
|
|
291
|
+
"helpGroup": "GLOBAL",
|
|
292
|
+
"name": "exit-on-error",
|
|
293
|
+
"summary": "Always exit with non-zero code on error",
|
|
294
|
+
"allowNo": true,
|
|
295
|
+
"type": "boolean"
|
|
296
|
+
},
|
|
297
|
+
"emoji": {
|
|
298
|
+
"helpGroup": "GLOBAL",
|
|
299
|
+
"name": "emoji",
|
|
300
|
+
"summary": "Prefix output with emojis 🌈",
|
|
301
|
+
"allowNo": false,
|
|
302
|
+
"type": "boolean"
|
|
303
|
+
},
|
|
304
|
+
"help": {
|
|
305
|
+
"helpGroup": "GLOBAL",
|
|
306
|
+
"name": "help",
|
|
307
|
+
"summary": "Show the help message for the command",
|
|
308
|
+
"allowNo": false,
|
|
309
|
+
"type": "boolean"
|
|
310
|
+
},
|
|
311
|
+
"non-interactive": {
|
|
312
|
+
"char": "I",
|
|
313
|
+
"helpGroup": "GLOBAL",
|
|
314
|
+
"name": "non-interactive",
|
|
315
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
316
|
+
"allowNo": false,
|
|
317
|
+
"type": "boolean"
|
|
318
|
+
},
|
|
319
|
+
"target": {
|
|
320
|
+
"char": "t",
|
|
321
|
+
"description": "Raycast app target",
|
|
322
|
+
"helpGroup": "GLOBAL",
|
|
323
|
+
"hidden": true,
|
|
324
|
+
"name": "target",
|
|
325
|
+
"hasDynamicHelp": false,
|
|
326
|
+
"multiple": false,
|
|
327
|
+
"options": [
|
|
328
|
+
"debug",
|
|
329
|
+
"internal",
|
|
330
|
+
"release"
|
|
331
|
+
],
|
|
332
|
+
"type": "option"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"hasDynamicHelp": false,
|
|
336
|
+
"hiddenAliases": [],
|
|
337
|
+
"id": "login",
|
|
338
|
+
"pluginAlias": "ray",
|
|
339
|
+
"pluginName": "ray",
|
|
340
|
+
"pluginType": "core",
|
|
341
|
+
"strict": true,
|
|
342
|
+
"enableJsonFlag": false,
|
|
343
|
+
"isESM": false,
|
|
344
|
+
"relativePath": [
|
|
345
|
+
"dist",
|
|
346
|
+
"commands",
|
|
347
|
+
"login",
|
|
348
|
+
"index.js"
|
|
349
|
+
]
|
|
350
|
+
},
|
|
351
|
+
"logout": {
|
|
352
|
+
"aliases": [],
|
|
353
|
+
"args": {},
|
|
354
|
+
"description": "Log out of your Raycast account",
|
|
355
|
+
"flags": {
|
|
356
|
+
"exit-on-error": {
|
|
357
|
+
"aliases": [
|
|
358
|
+
"exitOnError"
|
|
359
|
+
],
|
|
360
|
+
"deprecateAliases": true,
|
|
361
|
+
"helpGroup": "GLOBAL",
|
|
362
|
+
"name": "exit-on-error",
|
|
363
|
+
"summary": "Always exit with non-zero code on error",
|
|
364
|
+
"allowNo": true,
|
|
365
|
+
"type": "boolean"
|
|
366
|
+
},
|
|
367
|
+
"emoji": {
|
|
368
|
+
"helpGroup": "GLOBAL",
|
|
369
|
+
"name": "emoji",
|
|
370
|
+
"summary": "Prefix output with emojis 🌈",
|
|
371
|
+
"allowNo": false,
|
|
372
|
+
"type": "boolean"
|
|
373
|
+
},
|
|
374
|
+
"help": {
|
|
375
|
+
"helpGroup": "GLOBAL",
|
|
376
|
+
"name": "help",
|
|
377
|
+
"summary": "Show the help message for the command",
|
|
378
|
+
"allowNo": false,
|
|
379
|
+
"type": "boolean"
|
|
380
|
+
},
|
|
381
|
+
"non-interactive": {
|
|
382
|
+
"char": "I",
|
|
383
|
+
"helpGroup": "GLOBAL",
|
|
384
|
+
"name": "non-interactive",
|
|
385
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
386
|
+
"allowNo": false,
|
|
387
|
+
"type": "boolean"
|
|
388
|
+
},
|
|
389
|
+
"target": {
|
|
390
|
+
"char": "t",
|
|
391
|
+
"description": "Raycast app target",
|
|
392
|
+
"helpGroup": "GLOBAL",
|
|
393
|
+
"hidden": true,
|
|
394
|
+
"name": "target",
|
|
395
|
+
"hasDynamicHelp": false,
|
|
396
|
+
"multiple": false,
|
|
397
|
+
"options": [
|
|
398
|
+
"debug",
|
|
399
|
+
"internal",
|
|
400
|
+
"release"
|
|
401
|
+
],
|
|
402
|
+
"type": "option"
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
"hasDynamicHelp": false,
|
|
406
|
+
"hiddenAliases": [],
|
|
407
|
+
"id": "logout",
|
|
408
|
+
"pluginAlias": "ray",
|
|
409
|
+
"pluginName": "ray",
|
|
410
|
+
"pluginType": "core",
|
|
411
|
+
"strict": true,
|
|
412
|
+
"enableJsonFlag": false,
|
|
413
|
+
"isESM": false,
|
|
414
|
+
"relativePath": [
|
|
415
|
+
"dist",
|
|
416
|
+
"commands",
|
|
417
|
+
"logout",
|
|
418
|
+
"index.js"
|
|
419
|
+
]
|
|
420
|
+
},
|
|
421
|
+
"migrate": {
|
|
422
|
+
"aliases": [],
|
|
423
|
+
"args": {},
|
|
424
|
+
"description": "Migrate the extension to a newer version of the Raycast API\nInternally, the command makes use of https://www.npmjs.com/package/@raycast/migration",
|
|
425
|
+
"flags": {
|
|
426
|
+
"exit-on-error": {
|
|
427
|
+
"aliases": [
|
|
428
|
+
"exitOnError"
|
|
429
|
+
],
|
|
430
|
+
"deprecateAliases": true,
|
|
431
|
+
"helpGroup": "GLOBAL",
|
|
432
|
+
"name": "exit-on-error",
|
|
433
|
+
"summary": "Always exit with non-zero code on error",
|
|
434
|
+
"allowNo": true,
|
|
435
|
+
"type": "boolean"
|
|
436
|
+
},
|
|
437
|
+
"emoji": {
|
|
438
|
+
"helpGroup": "GLOBAL",
|
|
439
|
+
"name": "emoji",
|
|
440
|
+
"summary": "Prefix output with emojis 🌈",
|
|
441
|
+
"allowNo": false,
|
|
442
|
+
"type": "boolean"
|
|
443
|
+
},
|
|
444
|
+
"help": {
|
|
445
|
+
"helpGroup": "GLOBAL",
|
|
446
|
+
"name": "help",
|
|
447
|
+
"summary": "Show the help message for the command",
|
|
448
|
+
"allowNo": false,
|
|
449
|
+
"type": "boolean"
|
|
450
|
+
},
|
|
451
|
+
"non-interactive": {
|
|
452
|
+
"char": "I",
|
|
453
|
+
"helpGroup": "GLOBAL",
|
|
454
|
+
"name": "non-interactive",
|
|
455
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
456
|
+
"allowNo": false,
|
|
457
|
+
"type": "boolean"
|
|
458
|
+
},
|
|
459
|
+
"target": {
|
|
460
|
+
"char": "t",
|
|
461
|
+
"description": "Raycast app target",
|
|
462
|
+
"helpGroup": "GLOBAL",
|
|
463
|
+
"hidden": true,
|
|
464
|
+
"name": "target",
|
|
465
|
+
"hasDynamicHelp": false,
|
|
466
|
+
"multiple": false,
|
|
467
|
+
"options": [
|
|
468
|
+
"debug",
|
|
469
|
+
"internal",
|
|
470
|
+
"release"
|
|
471
|
+
],
|
|
472
|
+
"type": "option"
|
|
473
|
+
},
|
|
474
|
+
"path": {
|
|
475
|
+
"char": "p",
|
|
476
|
+
"description": "Path to extension root",
|
|
477
|
+
"name": "path",
|
|
478
|
+
"default": ".",
|
|
479
|
+
"hasDynamicHelp": false,
|
|
480
|
+
"multiple": false,
|
|
481
|
+
"type": "option"
|
|
482
|
+
}
|
|
483
|
+
},
|
|
484
|
+
"hasDynamicHelp": false,
|
|
485
|
+
"hiddenAliases": [],
|
|
486
|
+
"id": "migrate",
|
|
487
|
+
"pluginAlias": "ray",
|
|
488
|
+
"pluginName": "ray",
|
|
489
|
+
"pluginType": "core",
|
|
490
|
+
"strict": true,
|
|
491
|
+
"summary": "Migrate the extension to a newer version of the Raycast API",
|
|
492
|
+
"enableJsonFlag": false,
|
|
493
|
+
"isESM": false,
|
|
494
|
+
"relativePath": [
|
|
495
|
+
"dist",
|
|
496
|
+
"commands",
|
|
497
|
+
"migrate",
|
|
498
|
+
"index.js"
|
|
499
|
+
]
|
|
500
|
+
},
|
|
501
|
+
"profile": {
|
|
502
|
+
"aliases": [],
|
|
503
|
+
"args": {},
|
|
504
|
+
"description": "Show profile of the currently logged in user",
|
|
505
|
+
"flags": {
|
|
506
|
+
"json": {
|
|
507
|
+
"description": "Format output as json.",
|
|
508
|
+
"helpGroup": "GLOBAL",
|
|
509
|
+
"name": "json",
|
|
510
|
+
"allowNo": false,
|
|
511
|
+
"type": "boolean"
|
|
512
|
+
},
|
|
513
|
+
"exit-on-error": {
|
|
514
|
+
"aliases": [
|
|
515
|
+
"exitOnError"
|
|
516
|
+
],
|
|
517
|
+
"deprecateAliases": true,
|
|
518
|
+
"helpGroup": "GLOBAL",
|
|
519
|
+
"name": "exit-on-error",
|
|
520
|
+
"summary": "Always exit with non-zero code on error",
|
|
521
|
+
"allowNo": true,
|
|
522
|
+
"type": "boolean"
|
|
523
|
+
},
|
|
524
|
+
"emoji": {
|
|
525
|
+
"helpGroup": "GLOBAL",
|
|
526
|
+
"name": "emoji",
|
|
527
|
+
"summary": "Prefix output with emojis 🌈",
|
|
528
|
+
"allowNo": false,
|
|
529
|
+
"type": "boolean"
|
|
530
|
+
},
|
|
531
|
+
"help": {
|
|
532
|
+
"helpGroup": "GLOBAL",
|
|
533
|
+
"name": "help",
|
|
534
|
+
"summary": "Show the help message for the command",
|
|
535
|
+
"allowNo": false,
|
|
536
|
+
"type": "boolean"
|
|
537
|
+
},
|
|
538
|
+
"non-interactive": {
|
|
539
|
+
"char": "I",
|
|
540
|
+
"helpGroup": "GLOBAL",
|
|
541
|
+
"name": "non-interactive",
|
|
542
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
543
|
+
"allowNo": false,
|
|
544
|
+
"type": "boolean"
|
|
545
|
+
},
|
|
546
|
+
"target": {
|
|
547
|
+
"char": "t",
|
|
548
|
+
"description": "Raycast app target",
|
|
549
|
+
"helpGroup": "GLOBAL",
|
|
550
|
+
"hidden": true,
|
|
551
|
+
"name": "target",
|
|
552
|
+
"hasDynamicHelp": false,
|
|
553
|
+
"multiple": false,
|
|
554
|
+
"options": [
|
|
555
|
+
"debug",
|
|
556
|
+
"internal",
|
|
557
|
+
"release"
|
|
558
|
+
],
|
|
559
|
+
"type": "option"
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"hasDynamicHelp": false,
|
|
563
|
+
"hiddenAliases": [],
|
|
564
|
+
"id": "profile",
|
|
565
|
+
"pluginAlias": "ray",
|
|
566
|
+
"pluginName": "ray",
|
|
567
|
+
"pluginType": "core",
|
|
568
|
+
"strict": true,
|
|
569
|
+
"enableJsonFlag": true,
|
|
570
|
+
"isESM": false,
|
|
571
|
+
"relativePath": [
|
|
572
|
+
"dist",
|
|
573
|
+
"commands",
|
|
574
|
+
"profile",
|
|
575
|
+
"index.js"
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
"publish": {
|
|
579
|
+
"aliases": [],
|
|
580
|
+
"args": {},
|
|
581
|
+
"description": "Publish the extension on the Raycast Store.\nPrivate extension are a team feature. Sign up for it here: https://www.raycast.com/pricing (https://www.raycast.com/pricing)",
|
|
582
|
+
"flags": {
|
|
583
|
+
"exit-on-error": {
|
|
584
|
+
"aliases": [
|
|
585
|
+
"exitOnError"
|
|
586
|
+
],
|
|
587
|
+
"deprecateAliases": true,
|
|
588
|
+
"helpGroup": "GLOBAL",
|
|
589
|
+
"name": "exit-on-error",
|
|
590
|
+
"summary": "Always exit with non-zero code on error",
|
|
591
|
+
"allowNo": true,
|
|
592
|
+
"type": "boolean"
|
|
593
|
+
},
|
|
594
|
+
"emoji": {
|
|
595
|
+
"helpGroup": "GLOBAL",
|
|
596
|
+
"name": "emoji",
|
|
597
|
+
"summary": "Prefix output with emojis 🌈",
|
|
598
|
+
"allowNo": false,
|
|
599
|
+
"type": "boolean"
|
|
600
|
+
},
|
|
601
|
+
"help": {
|
|
602
|
+
"helpGroup": "GLOBAL",
|
|
603
|
+
"name": "help",
|
|
604
|
+
"summary": "Show the help message for the command",
|
|
605
|
+
"allowNo": false,
|
|
606
|
+
"type": "boolean"
|
|
607
|
+
},
|
|
608
|
+
"non-interactive": {
|
|
609
|
+
"char": "I",
|
|
610
|
+
"helpGroup": "GLOBAL",
|
|
611
|
+
"name": "non-interactive",
|
|
612
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
613
|
+
"allowNo": false,
|
|
614
|
+
"type": "boolean"
|
|
615
|
+
},
|
|
616
|
+
"target": {
|
|
617
|
+
"char": "t",
|
|
618
|
+
"description": "Raycast app target",
|
|
619
|
+
"helpGroup": "GLOBAL",
|
|
620
|
+
"hidden": true,
|
|
621
|
+
"name": "target",
|
|
622
|
+
"hasDynamicHelp": false,
|
|
623
|
+
"multiple": false,
|
|
624
|
+
"options": [
|
|
625
|
+
"debug",
|
|
626
|
+
"internal",
|
|
627
|
+
"release"
|
|
628
|
+
],
|
|
629
|
+
"type": "option"
|
|
630
|
+
},
|
|
631
|
+
"clipboard": {
|
|
632
|
+
"char": "C",
|
|
633
|
+
"description": "Copy the extension link to the clipboard upon publishing",
|
|
634
|
+
"name": "clipboard",
|
|
635
|
+
"allowNo": false,
|
|
636
|
+
"type": "boolean"
|
|
637
|
+
},
|
|
638
|
+
"skip-validation": {
|
|
639
|
+
"char": "s",
|
|
640
|
+
"description": "Skip validation and always publish \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
641
|
+
"hidden": true,
|
|
642
|
+
"name": "skip-validation",
|
|
643
|
+
"allowNo": false,
|
|
644
|
+
"type": "boolean"
|
|
645
|
+
},
|
|
646
|
+
"skip-notify-raycast": {
|
|
647
|
+
"description": "Skip notifying Raycast after publishing \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
648
|
+
"hidden": true,
|
|
649
|
+
"name": "skip-notify-raycast",
|
|
650
|
+
"allowNo": false,
|
|
651
|
+
"type": "boolean"
|
|
652
|
+
}
|
|
653
|
+
},
|
|
654
|
+
"hasDynamicHelp": false,
|
|
655
|
+
"hiddenAliases": [],
|
|
656
|
+
"id": "publish",
|
|
657
|
+
"pluginAlias": "ray",
|
|
658
|
+
"pluginName": "ray",
|
|
659
|
+
"pluginType": "core",
|
|
660
|
+
"strict": true,
|
|
661
|
+
"summary": "Publish the extension",
|
|
662
|
+
"enableJsonFlag": false,
|
|
663
|
+
"isESM": false,
|
|
664
|
+
"relativePath": [
|
|
665
|
+
"dist",
|
|
666
|
+
"commands",
|
|
667
|
+
"publish",
|
|
668
|
+
"index.js"
|
|
669
|
+
]
|
|
670
|
+
},
|
|
671
|
+
"pull-contributions": {
|
|
672
|
+
"aliases": [],
|
|
673
|
+
"args": {},
|
|
674
|
+
"description": "Pull contributions of the extension",
|
|
675
|
+
"flags": {
|
|
676
|
+
"exit-on-error": {
|
|
677
|
+
"aliases": [
|
|
678
|
+
"exitOnError"
|
|
679
|
+
],
|
|
680
|
+
"deprecateAliases": true,
|
|
681
|
+
"helpGroup": "GLOBAL",
|
|
682
|
+
"name": "exit-on-error",
|
|
683
|
+
"summary": "Always exit with non-zero code on error",
|
|
684
|
+
"allowNo": true,
|
|
685
|
+
"type": "boolean"
|
|
686
|
+
},
|
|
687
|
+
"emoji": {
|
|
688
|
+
"helpGroup": "GLOBAL",
|
|
689
|
+
"name": "emoji",
|
|
690
|
+
"summary": "Prefix output with emojis 🌈",
|
|
691
|
+
"allowNo": false,
|
|
692
|
+
"type": "boolean"
|
|
693
|
+
},
|
|
694
|
+
"help": {
|
|
695
|
+
"helpGroup": "GLOBAL",
|
|
696
|
+
"name": "help",
|
|
697
|
+
"summary": "Show the help message for the command",
|
|
698
|
+
"allowNo": false,
|
|
699
|
+
"type": "boolean"
|
|
700
|
+
},
|
|
701
|
+
"non-interactive": {
|
|
702
|
+
"char": "I",
|
|
703
|
+
"helpGroup": "GLOBAL",
|
|
704
|
+
"name": "non-interactive",
|
|
705
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
706
|
+
"allowNo": false,
|
|
707
|
+
"type": "boolean"
|
|
708
|
+
},
|
|
709
|
+
"target": {
|
|
710
|
+
"char": "t",
|
|
711
|
+
"description": "Raycast app target",
|
|
712
|
+
"helpGroup": "GLOBAL",
|
|
713
|
+
"hidden": true,
|
|
714
|
+
"name": "target",
|
|
715
|
+
"hasDynamicHelp": false,
|
|
716
|
+
"multiple": false,
|
|
717
|
+
"options": [
|
|
718
|
+
"debug",
|
|
719
|
+
"internal",
|
|
720
|
+
"release"
|
|
721
|
+
],
|
|
722
|
+
"type": "option"
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
"hasDynamicHelp": false,
|
|
726
|
+
"hiddenAliases": [],
|
|
727
|
+
"id": "pull-contributions",
|
|
728
|
+
"pluginAlias": "ray",
|
|
729
|
+
"pluginName": "ray",
|
|
730
|
+
"pluginType": "core",
|
|
731
|
+
"strict": true,
|
|
732
|
+
"enableJsonFlag": false,
|
|
733
|
+
"isESM": false,
|
|
734
|
+
"relativePath": [
|
|
735
|
+
"dist",
|
|
736
|
+
"commands",
|
|
737
|
+
"pull-contributions",
|
|
738
|
+
"index.js"
|
|
739
|
+
]
|
|
740
|
+
},
|
|
741
|
+
"token": {
|
|
742
|
+
"aliases": [],
|
|
743
|
+
"args": {},
|
|
744
|
+
"description": "Display the access token",
|
|
745
|
+
"flags": {
|
|
746
|
+
"json": {
|
|
747
|
+
"description": "Format output as json.",
|
|
748
|
+
"helpGroup": "GLOBAL",
|
|
749
|
+
"name": "json",
|
|
750
|
+
"allowNo": false,
|
|
751
|
+
"type": "boolean"
|
|
752
|
+
},
|
|
753
|
+
"exit-on-error": {
|
|
754
|
+
"aliases": [
|
|
755
|
+
"exitOnError"
|
|
756
|
+
],
|
|
757
|
+
"deprecateAliases": true,
|
|
758
|
+
"helpGroup": "GLOBAL",
|
|
759
|
+
"name": "exit-on-error",
|
|
760
|
+
"summary": "Always exit with non-zero code on error",
|
|
761
|
+
"allowNo": true,
|
|
762
|
+
"type": "boolean"
|
|
763
|
+
},
|
|
764
|
+
"emoji": {
|
|
765
|
+
"helpGroup": "GLOBAL",
|
|
766
|
+
"name": "emoji",
|
|
767
|
+
"summary": "Prefix output with emojis 🌈",
|
|
768
|
+
"allowNo": false,
|
|
769
|
+
"type": "boolean"
|
|
770
|
+
},
|
|
771
|
+
"help": {
|
|
772
|
+
"helpGroup": "GLOBAL",
|
|
773
|
+
"name": "help",
|
|
774
|
+
"summary": "Show the help message for the command",
|
|
775
|
+
"allowNo": false,
|
|
776
|
+
"type": "boolean"
|
|
777
|
+
},
|
|
778
|
+
"non-interactive": {
|
|
779
|
+
"char": "I",
|
|
780
|
+
"helpGroup": "GLOBAL",
|
|
781
|
+
"name": "non-interactive",
|
|
782
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
783
|
+
"allowNo": false,
|
|
784
|
+
"type": "boolean"
|
|
785
|
+
},
|
|
786
|
+
"target": {
|
|
787
|
+
"char": "t",
|
|
788
|
+
"description": "Raycast app target",
|
|
789
|
+
"helpGroup": "GLOBAL",
|
|
790
|
+
"hidden": true,
|
|
791
|
+
"name": "target",
|
|
792
|
+
"hasDynamicHelp": false,
|
|
793
|
+
"multiple": false,
|
|
794
|
+
"options": [
|
|
795
|
+
"debug",
|
|
796
|
+
"internal",
|
|
797
|
+
"release"
|
|
798
|
+
],
|
|
799
|
+
"type": "option"
|
|
800
|
+
},
|
|
801
|
+
"clipboard": {
|
|
802
|
+
"char": "C",
|
|
803
|
+
"description": "Copy the token to the clipboard",
|
|
804
|
+
"name": "clipboard",
|
|
805
|
+
"allowNo": false,
|
|
806
|
+
"type": "boolean"
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
"hasDynamicHelp": false,
|
|
810
|
+
"hiddenAliases": [],
|
|
811
|
+
"id": "token",
|
|
812
|
+
"pluginAlias": "ray",
|
|
813
|
+
"pluginName": "ray",
|
|
814
|
+
"pluginType": "core",
|
|
815
|
+
"strict": true,
|
|
816
|
+
"enableJsonFlag": true,
|
|
817
|
+
"isESM": false,
|
|
818
|
+
"relativePath": [
|
|
819
|
+
"dist",
|
|
820
|
+
"commands",
|
|
821
|
+
"token",
|
|
822
|
+
"index.js"
|
|
823
|
+
]
|
|
824
|
+
},
|
|
825
|
+
"validate": {
|
|
826
|
+
"aliases": [],
|
|
827
|
+
"args": {},
|
|
828
|
+
"description": "Validate the extension so that it can be published - \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
829
|
+
"flags": {
|
|
830
|
+
"exit-on-error": {
|
|
831
|
+
"aliases": [
|
|
832
|
+
"exitOnError"
|
|
833
|
+
],
|
|
834
|
+
"deprecateAliases": true,
|
|
835
|
+
"helpGroup": "GLOBAL",
|
|
836
|
+
"name": "exit-on-error",
|
|
837
|
+
"summary": "Always exit with non-zero code on error",
|
|
838
|
+
"allowNo": true,
|
|
839
|
+
"type": "boolean"
|
|
840
|
+
},
|
|
841
|
+
"emoji": {
|
|
842
|
+
"helpGroup": "GLOBAL",
|
|
843
|
+
"name": "emoji",
|
|
844
|
+
"summary": "Prefix output with emojis 🌈",
|
|
845
|
+
"allowNo": false,
|
|
846
|
+
"type": "boolean"
|
|
847
|
+
},
|
|
848
|
+
"help": {
|
|
849
|
+
"helpGroup": "GLOBAL",
|
|
850
|
+
"name": "help",
|
|
851
|
+
"summary": "Show the help message for the command",
|
|
852
|
+
"allowNo": false,
|
|
853
|
+
"type": "boolean"
|
|
854
|
+
},
|
|
855
|
+
"non-interactive": {
|
|
856
|
+
"char": "I",
|
|
857
|
+
"helpGroup": "GLOBAL",
|
|
858
|
+
"name": "non-interactive",
|
|
859
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
860
|
+
"allowNo": false,
|
|
861
|
+
"type": "boolean"
|
|
862
|
+
},
|
|
863
|
+
"target": {
|
|
864
|
+
"char": "t",
|
|
865
|
+
"description": "Raycast app target",
|
|
866
|
+
"helpGroup": "GLOBAL",
|
|
867
|
+
"hidden": true,
|
|
868
|
+
"name": "target",
|
|
869
|
+
"hasDynamicHelp": false,
|
|
870
|
+
"multiple": false,
|
|
871
|
+
"options": [
|
|
872
|
+
"debug",
|
|
873
|
+
"internal",
|
|
874
|
+
"release"
|
|
875
|
+
],
|
|
876
|
+
"type": "option"
|
|
877
|
+
},
|
|
878
|
+
"schema": {
|
|
879
|
+
"char": "s",
|
|
880
|
+
"description": "Path to JSON schema for package.json validation ",
|
|
881
|
+
"name": "schema",
|
|
882
|
+
"default": "https://www.raycast.com/schemas/extension.json",
|
|
883
|
+
"hasDynamicHelp": false,
|
|
884
|
+
"multiple": false,
|
|
885
|
+
"type": "option"
|
|
886
|
+
},
|
|
887
|
+
"skip-owner": {
|
|
888
|
+
"description": "Skip owner checks",
|
|
889
|
+
"name": "skip-owner",
|
|
890
|
+
"allowNo": false,
|
|
891
|
+
"type": "boolean"
|
|
892
|
+
}
|
|
893
|
+
},
|
|
894
|
+
"hasDynamicHelp": false,
|
|
895
|
+
"hidden": true,
|
|
896
|
+
"hiddenAliases": [],
|
|
897
|
+
"id": "validate",
|
|
898
|
+
"pluginAlias": "ray",
|
|
899
|
+
"pluginName": "ray",
|
|
900
|
+
"pluginType": "core",
|
|
901
|
+
"strict": true,
|
|
902
|
+
"summary": "Validate the extension - \u001b[34m\u001b[2minternal only\u001b[22m\u001b[39m",
|
|
903
|
+
"enableJsonFlag": false,
|
|
904
|
+
"isESM": false,
|
|
905
|
+
"relativePath": [
|
|
906
|
+
"dist",
|
|
907
|
+
"commands",
|
|
908
|
+
"validate",
|
|
909
|
+
"index.js"
|
|
910
|
+
]
|
|
911
|
+
},
|
|
912
|
+
"version": {
|
|
913
|
+
"aliases": [],
|
|
914
|
+
"args": {},
|
|
915
|
+
"description": "Print the version number",
|
|
916
|
+
"flags": {
|
|
917
|
+
"exit-on-error": {
|
|
918
|
+
"aliases": [
|
|
919
|
+
"exitOnError"
|
|
920
|
+
],
|
|
921
|
+
"deprecateAliases": true,
|
|
922
|
+
"helpGroup": "GLOBAL",
|
|
923
|
+
"name": "exit-on-error",
|
|
924
|
+
"summary": "Always exit with non-zero code on error",
|
|
925
|
+
"allowNo": true,
|
|
926
|
+
"type": "boolean"
|
|
927
|
+
},
|
|
928
|
+
"emoji": {
|
|
929
|
+
"helpGroup": "GLOBAL",
|
|
930
|
+
"name": "emoji",
|
|
931
|
+
"summary": "Prefix output with emojis 🌈",
|
|
932
|
+
"allowNo": false,
|
|
933
|
+
"type": "boolean"
|
|
934
|
+
},
|
|
935
|
+
"help": {
|
|
936
|
+
"helpGroup": "GLOBAL",
|
|
937
|
+
"name": "help",
|
|
938
|
+
"summary": "Show the help message for the command",
|
|
939
|
+
"allowNo": false,
|
|
940
|
+
"type": "boolean"
|
|
941
|
+
},
|
|
942
|
+
"non-interactive": {
|
|
943
|
+
"char": "I",
|
|
944
|
+
"helpGroup": "GLOBAL",
|
|
945
|
+
"name": "non-interactive",
|
|
946
|
+
"summary": "Disable interactive outputs, useful for CI",
|
|
947
|
+
"allowNo": false,
|
|
948
|
+
"type": "boolean"
|
|
949
|
+
},
|
|
950
|
+
"target": {
|
|
951
|
+
"char": "t",
|
|
952
|
+
"description": "Raycast app target",
|
|
953
|
+
"helpGroup": "GLOBAL",
|
|
954
|
+
"hidden": true,
|
|
955
|
+
"name": "target",
|
|
956
|
+
"hasDynamicHelp": false,
|
|
957
|
+
"multiple": false,
|
|
958
|
+
"options": [
|
|
959
|
+
"debug",
|
|
960
|
+
"internal",
|
|
961
|
+
"release"
|
|
962
|
+
],
|
|
963
|
+
"type": "option"
|
|
964
|
+
}
|
|
965
|
+
},
|
|
966
|
+
"hasDynamicHelp": false,
|
|
967
|
+
"hiddenAliases": [],
|
|
968
|
+
"id": "version",
|
|
969
|
+
"pluginAlias": "ray",
|
|
970
|
+
"pluginName": "ray",
|
|
971
|
+
"pluginType": "core",
|
|
972
|
+
"strict": true,
|
|
973
|
+
"enableJsonFlag": false,
|
|
974
|
+
"isESM": false,
|
|
975
|
+
"relativePath": [
|
|
976
|
+
"dist",
|
|
977
|
+
"commands",
|
|
978
|
+
"version",
|
|
979
|
+
"index.js"
|
|
980
|
+
]
|
|
981
|
+
}
|
|
982
|
+
},
|
|
983
|
+
"version": "1.86.0"
|
|
984
|
+
}
|