-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.47 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
{
"$schema": "https://raw.githubusercontent.com/vicinaehq/vicinae/refs/heads/main/extra/schemas/extension.json",
"name": "workspace",
"title": "Workspace",
"description": "Manage and access your workspace projects. Boost your focus with quick project opening, git status tracking, and customizable application overrides.",
"icon": "extension-icon.png",
"author": "tiagem",
"version": "1.0.0",
"license": "MIT",
"platforms": [
"Linux",
"macOS"
],
"categories": [
"Productivity",
"Design Tools",
"Developer Tools"
],
"keywords": [
"workspace",
"projects",
"folders",
"quick access"
],
"commands": [
{
"name": "workspace",
"title": "Workspace",
"description": "Quickly open your workspace projects",
"mode": "view"
},
{
"name": "manage-workspaces",
"title": "Manage Your Workspaces",
"description": "View, reorganize, add and remove workspaces",
"mode": "view"
},
{
"name": "settings",
"title": "Workspace Settings",
"description": "Manage workspaces, default app and apps per workspace",
"mode": "view"
}
],
"dependencies": {
"@vicinae/api": "^0.25.0"
},
"devDependencies": {
"@types/node": "25.6.0",
"@types/react": "^19.2.14",
"prettier": "^3.8.3",
"typescript": "^5.9.2"
},
"scripts": {
"build": "vici build",
"dev": "vici develop",
"fix-lint": "prettier --write .",
"lint": "vici lint"
}
}