-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.93 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.93 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "code-ext",
"title": "Open in Editor",
"description": "Open directories in your code editor",
"icon": "icon.png",
"author": "highesttt",
"categories": [
"Developer Tools"
],
"license": "MIT",
"platforms": [
"Windows",
"macOS"
],
"commands": [
{
"name": "findFolders",
"title": "Open in Editor",
"description": "Search for folders to open in your code editor",
"mode": "view"
},
{
"name": "customEditors",
"title": "Manage Custom Editors",
"description": "Add, view, and remove custom editor-language links",
"mode": "view"
},
{
"name": "customIgnoredFolders",
"title": "Manage Ignored Folders",
"description": "Add, view, and remove custom folders to ignore when scanning",
"mode": "view"
}
],
"preferences": [
{
"name": "rootFolder",
"title": "Root Folder",
"description": "Base directory to scan for projects (folders containing .gitignore)",
"type": "directory",
"required": true,
"default": "C:\\Dev",
"placeholder": "C:\\Dev"
},
{
"name": "editorCommand",
"title": "Editor Command",
"description": "Command to open folders in your code editor. Use %s as a placeholder for the path.",
"type": "textfield",
"required": true,
"default": "/usr/local/bin/code %s",
"placeholder": "/usr/local/bin/code %s"
}
],
"dependencies": {
"@raycast/api": "^1.101.1",
"@raycast/utils": "^2.2.0"
},
"devDependencies": {
"@raycast/eslint-config": "^2.0.4",
"@types/node": "24.0.14",
"@types/react": "19.1.8",
"eslint": "^9.31.0",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
},
"scripts": {
"build": "ray build -e dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "ray publish"
}
}