-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
261 lines (261 loc) · 8.41 KB
/
package.json
File metadata and controls
261 lines (261 loc) · 8.41 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
261
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "everything-search",
"title": "Everything",
"description": "Search files using Everything on Windows.",
"icon": "extension-icon.png",
"author": "anastasiy_safari",
"contributors": [
"laurynas_gailius",
"marioparaschiv"
],
"pastContributors": [
"doug_fernando"
],
"license": "MIT",
"commands": [
{
"name": "search-everything",
"title": "Search Files",
"description": "Search files using Everything",
"mode": "view",
"preferences": [
{
"name": "defaultSort",
"title": "Default Sorting",
"description": "Choose default sorting applied to all query results.",
"type": "dropdown",
"required": false,
"default": "-sort name-ascending",
"data": [
{
"title": "Name (A-Z)",
"value": "-sort name-ascending"
},
{
"title": "Name (Z-A)",
"value": "-sort name-descending"
},
{
"title": "Path (A-Z)",
"value": "-sort path-ascending"
},
{
"title": "Path (Z-A)",
"value": "-sort path-descending"
},
{
"title": "Size (Smallest First)",
"value": "-sort size-ascending"
},
{
"title": "Size (Largest First)",
"value": "-sort size-descending"
},
{
"title": "Extension (A-Z)",
"value": "-sort extension-ascending"
},
{
"title": "Extension (Z-A)",
"value": "-sort extension-descending"
},
{
"title": "Date Created (Oldest First)",
"value": "-sort date-created-ascending"
},
{
"title": "Date Created (Newest First)",
"value": "-sort date-created-descending"
},
{
"title": "Date Modified (Oldest First)",
"value": "-sort date-modified-ascending"
},
{
"title": "Date Modified (Newest First)",
"value": "-sort date-modified-descending"
},
{
"title": "Date Accessed (Oldest First)",
"value": "-sort date-accessed-ascending"
},
{
"title": "Date Accessed (Newest First)",
"value": "-sort date-accessed-descending"
},
{
"title": "Attributes (A-Z)",
"value": "-sort attributes-ascending"
},
{
"title": "Attributes (Z-A)",
"value": "-sort attributes-descending"
},
{
"title": "File List File Name (A-Z)",
"value": "-sort file-list-file-name-ascending"
},
{
"title": "File List File Name (Z-A)",
"value": "-sort file-list-file-name-descending"
},
{
"title": "Run Count (Lowest First)",
"value": "-sort run-count-ascending"
},
{
"title": "Run Count (Highest First)",
"value": "-sort run-count-descending"
},
{
"title": "Date Recently Changed (Oldest First)",
"value": "-sort date-recently-changed-ascending"
},
{
"title": "Date Recently Changed (Newest First)",
"value": "-sort date-recently-changed-descending"
},
{
"title": "Date Run (Oldest First)",
"value": "-sort date-run-ascending"
},
{
"title": "Date Run (Newest First)",
"value": "-sort date-run-descending"
}
]
},
{
"name": "useRegex",
"label": "Use Regular Expressions",
"title": "Use Regular Expressions",
"description": "Enable to interpret search queries as regular expressions. Escape spaces with double quotes.",
"type": "checkbox",
"required": false,
"default": false
},
{
"name": "minCharsToSearch",
"title": "Minimum Characters to Trigger Search",
"description": "Number of characters required before a search is performed.",
"type": "textfield",
"required": false,
"default": "3"
},
{
"name": "maxResults",
"title": "Maximum Results to Fetch",
"description": "Maximum number of search results to retrieve per query.",
"type": "textfield",
"required": false,
"default": "100"
},
{
"name": "openFolderAsDefault",
"title": "Open Folder as Default Action",
"description": "If enabled, the primary action will be to open the file's location instead of opening the file itself.",
"type": "checkbox",
"required": false,
"label": "Open Folder Instead of File",
"default": false
},
{
"name": "fileExplorerCommand",
"title": "Custom File Explorer Command",
"description": "Custom command to open directories. Use %s as a placeholder for the path.",
"type": "textfield",
"required": false,
"default": "",
"placeholder": "\"C:\\Program Files\\Explorer\\App.exe\" -arg %s"
},
{
"name": "esExePath",
"title": "Everything CLI Path (es.exe)",
"description": "Custom path to es.exe. Leave empty to use system PATH.",
"type": "file",
"required": false,
"default": "",
"placeholder": "C:\\Program Files\\Everything\\es.exe"
},
{
"name": "customCliArgs",
"title": "Custom CLI Arguments",
"description": "Additional arguments to pass to es.exe (e.g., -instance 1.5a)",
"type": "textfield",
"required": false,
"default": "",
"placeholder": "-instance 1.5a"
},
{
"name": "useSdk",
"title": "Use SDK (Experimental)",
"label": "Use SDK (Experimental)",
"description": "Use the Everything SDK instead of es.exe CLI. Provides better performance, but may not be supported on all systems.",
"type": "checkbox",
"required": false,
"default": false
}
]
},
{
"name": "evy",
"title": "Search Files on Servers",
"subtitle": "Everything",
"description": "Find Files from Everything ETP/FTP servers by Mask",
"mode": "view",
"disabledByDefault": false,
"arguments": [
{
"name": "mask",
"placeholder": "File mask (e.g. *.jpg)",
"type": "text",
"required": false
}
],
"preferences": [
{
"name": "serversJSON",
"title": "Everything Servers Configuration",
"description": "JSON array of ETP/FTP server configurations",
"type": "textfield",
"required": true,
"placeholder": "[{\"name\":\"...\",\"host\":\"...\",\"port\":21,\"user\":\"...\",\"pass\":\"...\"}]"
}
]
}
],
"preferences": [],
"dependencies": {
"@raycast/api": "^1.104.6",
"@raycast/utils": "^2.2.2",
"basic-ftp": "^5.2.0",
"koffi": "^2.15.1"
},
"devDependencies": {
"@raycast/eslint-config": "^2.0.4",
"@types/node": "24.6.0",
"@types/react": "19.1.16",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"scripts": {
"dev": "ray develop",
"lint": "ray lint",
"fix-lint": "ray lint --fix",
"fetch-sdk-binaries": "node ./scripts/fetch-sdk-binaries.js",
"build": "ray build",
"publish": "npx @raycast/api@latest publish",
"prepublishOnly": "echo \"\\n\\nIt seems like you are trying to publish the Raycast extension to npm.\\n\\nIf you did intend to publish it to npm, remove the \\`prepublishOnly\\` script and rerun \\`npm publish\\` again.\\nIf you wanted to publish it to the Raycast Store instead, use \\`npm run publish\\` instead.\\n\\n\" && exit 1"
},
"platforms": [
"Windows"
],
"categories": [
"Applications",
"Productivity",
"System",
"Developer Tools"
]
}