-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.13 KB
/
package.json
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
{
"name": "zujo-call",
"description": "Call your team-mates",
"version": "0.0.1",
"publisher": "saloni",
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:zujoCall",
"onCommand:meeting.start",
"onCommand:meeting.join",
"onCommand:chat"
],
"main": "./out/extension.js",
"contributes": {
"commands": [{
"command": "meeting.start",
"title": "Zujo Now",
"category": "zujoCall"
},
{
"command": "meeting.join",
"title": "Join the meeting",
"category": "zujoCall"
}
],
"viewsWelcome": [{
"view": "welcome",
"contents": "Join the Meeting\n[Join Meeting](command:meeting.join)\nStart the Meeeting\n[Start Meeting](command:meeting.start)"
}],
"views": {
"zujo-call": [{
"id": "welcome",
"name": "Welcome",
"contextualTitle": "Welcome",
"when": "config.zujonow.isMeetingActive == false"
},
{
"id": "zujoCall",
"name": "Participants",
"contextualTitle": "Participants",
"when": "config.zujonow.isMeetingActive"
},
{
"id": "meetInfo",
"name": "Meeting Information",
"contextualTitle": "Meeting Information",
"when": "config.zujonow.isMeetingActive"
},
{
"id": "sidebar",
"name": "Main Side bar",
"type": "webview",
"when": "config.zujonow.isMeetingActive"
}
]
},
"viewsContainers": {
"activitybar": [{
"id": "zujo-call",
"title": "Zujo Now",
"icon": "Zujo-Logo-Symbol.svg"
}]
},
"configuration": {
"title": "Meeting active",
"properties": {
"zujonow.isMeetingActive": {
"type": "boolean",
"default": false,
"description": "Is meeting active ?"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -w -p ./"
},
"dependencies": {
"@types/cors": "^2.8.9",
"@types/socket.io": "^2.1.12",
"@types/socket.io-parser": "^2.2.1",
"@types/ws": "^7.4.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"socket.io": "^3.0.4",
"videojs": "^1.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"typescript": "^4.0.2",
"@types/vscode": "^1.47.0",
"@types/node": "^12.12.0"
}
}