-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 2.87 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
105
106
107
{
"name": "vsshare",
"displayName": "VSShare",
"description": "VSShare broadcast extension for Visual Studio Code.",
"version": "0.1.2",
"publisher": "bonprosoft",
"engines": {
"vscode": "^0.10.1"
},
"categories": [
"Other"
],
"icon": "images/logo-128.png",
"galleryBanner": {
"color": "#691b7c",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/VSShare/Extension-Code/issues"
},
"homepage": "https://vsshare.net/",
"repository": {
"type": "git",
"url": "https://github.com/VSShare/Extension-Code.git"
},
"license": "MIT",
"activationEvents": [
"*"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "vsshare.startBroadcast",
"title": "Start Broadcasting"
},
{
"command": "vsshare.stopBroadcast",
"title": "Stop Broadcasting"
},
{
"command": "vsshare.restartBroadcast",
"title": "Restart Broadcasting"
},
{
"command": "vsshare.refreshBroadcast",
"title": "Refresh Broadcasting"
},
{
"command": "vsshare.showLogWindow",
"title": "Show Broadcasting Log Window"
}
],
"configuration": {
"type": "object",
"title": "VSShare configuration",
"properties": {
"vsshare.hubName": {
"type": "string",
"default": "broadcast",
"description": "Specify the hub name of your VSShare server"
},
"vsshare.url": {
"type": "string",
"default": "http://vsshare.net/signalr",
"description": "Specify the url of your VSShare server"
},
"vsshare.userName": {
"type": "string",
"default": "",
"description": "Specify the username of your VSShare server account"
},
"vsshare.userToken": {
"type": "string",
"default": "",
"description": "Specify the access token of your VSShare server account"
},
"vsshare.roomName": {
"type": "string",
"default": "",
"description": "Specify the room name for your broadcast target of VSShare server"
},
"vsshare.roomToken": {
"type": "string",
"default": "",
"description": "Specify the room token for your broadcast target of VSShare server"
},
"vsshare.logLevel": {
"type": "number",
"default": 1,
"description": "[For Server Developer]: Specify log level to show log window.(0: Debug, 1:Info, 2:Warn, 3:Error)"
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./"
},
"devDependencies": {
"typescript": "^1.6.2",
"vscode": "0.10.x"
},
"dependencies": {
"signalr-client": "0.0.16"
}
}