-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.37 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
{
"name": "vector-os-team-hub",
"displayName": "Vector OS Team Hub",
"description": "Admin and team member task management inside VS Code.",
"version": "0.0.4",
"publisher": "mzainulabideen",
"repository": {
"type": "git",
"url": "https://github.com/Vector-OS/Vector-OS-Team-Hub-VS-Code-Extension"
},
"icon": "./icon.png",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "vectorTeamHub.openDashboard",
"title": "Vector Team Hub: Open Dashboard",
"category": "Vector Team Hub"
},
{
"command": "vectorTeamHub.signIn",
"title": "Vector Team Hub: Sign In",
"category": "Vector Team Hub"
},
{
"command": "vectorTeamHub.signInMicrosoft",
"title": "Vector Team Hub: Sign In with Microsoft",
"category": "Vector Team Hub"
},
{
"command": "vectorTeamHub.signInGoogle",
"title": "Vector Team Hub: Sign In with Google",
"category": "Vector Team Hub"
},
{
"command": "vectorTeamHub.signOut",
"title": "Vector Team Hub: Sign Out",
"category": "Vector Team Hub"
},
{
"command": "vectorTeamHub.addMember",
"title": "Vector Team Hub: Add Member",
"category": "Vector Team Hub"
},
{
"command": "vectorTeamHub.assignTask",
"title": "Vector Team Hub: Assign Task",
"category": "Vector Team Hub"
},
{
"command": "vectorTeamHub.openAdminQuickPick",
"title": "Vector Team Hub: Admin Actions",
"category": "Vector Team Hub"
}
,
{
"command": "vectorTeamHub.openTaskCreator",
"title": "Vector Team Hub: Open Task Creator UI",
"category": "Vector Team Hub"
}
],
"views": {
"explorer": [
{
"id": "vectorTeamHubSidebar",
"name": "Vector Team Hub"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tsc -p ./ --noEmit",
"package:vsix": "npx @vscode/vsce package",
"publish:vsce": "npx @vscode/vsce publish"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/vscode": "^1.90.0",
"typescript": "^5.5.4"
}
}