-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 2.55 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
{
"name": "project-dashboard",
"displayName": "Project Dashboard",
"description": "A fast, theme-aware startup dashboard and sidebar project manager.",
"version": "0.1.0",
"publisher": "govind-sankar",
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Other",
"Visualization"
],
"author": {
"name": "Govind Sankar",
"url": "https://github.com/govind-sankar"
},
"license": "Apache-2.0",
"keywords": [
"vscode",
"projects",
"dashboard",
"workspace",
"project-manager",
"sidebar"
],
"icon": "media/icon-bg.png",
"repository": {
"type": "git",
"url": "https://github.com/govind-sankar/project-dashboard.git"
},
"homepage": "https://github.com/govind-sankar/project-dashboard",
"bugs": {
"url": "https://github.com/govind-sankar/project-dashboard/issues"
},
"activationEvents": [
"*",
"onCommand:projectDashboard.openDashboard",
"onCommand:projectDashboard.refresh",
"onView:projectDashboard.projectsView"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "projectDashboard.openDashboard",
"title": "Projects: Open Dashboard"
},
{
"command": "projectDashboard.addProject",
"title": "Projects: Add Project"
},
{
"command": "projectDashboard.pinToggle",
"title": "Projects: Pin/Unpin Project"
},
{
"command": "projectDashboard.setCategory",
"title": "Projects: Set Category"
},
{
"command": "projectDashboard.setLanguage",
"title": "Projects: Set Language"
},
{
"command": "projectDashboard.removeProject",
"title": "Projects: Remove Project"
},
{
"command": "projectDashboard.refresh",
"title": "Projects: Refresh"
},
{
"command": "projectDashboard.registerCurrent",
"title": "Projects: Register Current Folder"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "projectDashboard",
"title": "Projects",
"icon": "media/icon.svg"
}
]
},
"views": {
"projectDashboard": [
{
"id": "projectDashboard.projectsView",
"name": "Projects",
"icon": "media/icon.svg"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"typescript": "^4.9.5",
"@types/node": "^18.0.0",
"@types/vscode": "^1.76.0"
}
}