-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.2 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
{
"$schema": "https://www.raycast.com/schemas/extension.json",
"name": "visual-studio-code-workspace-manager",
"title": "Visual Studio Code Workspace Manager",
"description": "Quickly open your workspace project!",
"icon": "command-icon.png",
"author": "jeasonnow",
"owner": "santree",
"categories": [
"Developer Tools"
],
"license": "MIT",
"commands": [
{
"name": "index",
"title": "Visual Studio Code Workspace Manager",
"subtitle": "VSCode Workspace Manager",
"description": "Quickly open your workspace project!",
"mode": "view"
}
],
"preferences": [
{
"name": "workspacePath",
"type": "textfield",
"required": true,
"default": "",
"title": "Path of your workspce",
"description": "The project space folder you use to store all your projects"
},
{
"name": "build",
"type": "dropdown",
"required": false,
"title": "Build",
"default": "Code",
"description": "Select which build of Visual Studio Code to use",
"data": [
{
"value": "Code",
"title": "Visual Studio Code"
},
{
"value": "Code - Insiders",
"title": "Visual Studio Code - Insiders"
},
{
"value": "VSCodium",
"title": "VSCodium"
},
{
"value": "VSCodium < 1.71",
"title": "VSCodium < 1.71"
},
{
"value": "WebStorm",
"title": "WebStorm"
},
{
"value": "Cursor",
"title": "Cursor"
}
]
}
],
"dependencies": {
"@raycast/api": "^1.57.2",
"fs-extra": "^11.1.1",
"tildify": "^3.0.0"
},
"devDependencies": {
"@raycast/eslint-config": "1.0.5",
"@types/fs-extra": "^11.0.1",
"@types/jsonfile": "^6.1.1",
"@types/node": "18.8.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"typescript": "^4.4.3"
},
"scripts": {
"build": "ray build -o dist",
"dev": "ray develop",
"fix-lint": "ray lint --fix",
"lint": "ray lint",
"publish": "npx @raycast/api@latest publish"
},
"version": "1.0.0"
}