-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
177 lines (177 loc) · 4.85 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"name": "vscode-discord",
"displayName": "vscode-discord",
"description": "Display your current project on vscode in discord with Rich Presence",
"version": "1.0.2",
"publisher": "maxerbox",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "discord.updatePresence",
"title": "Update presence",
"category": "Discord"
},
{
"command": "discord.enable",
"title": "Enable vscode discord in the current workspace",
"category": "Discord"
},
{
"command": "discord.disable",
"title": "Disable vscode discord in the current workspace",
"category": "Discord"
},
{
"command": "discord.reconnect",
"title": "Reconnect to the discord ipc socket",
"category": "Discord"
}
],
"configuration": [
{
"title": "Vscode Discord configuration",
"type": "object",
"properties": {
"discord.clientID": {
"type": "string",
"default": "381795064944394249",
"description": "The client ID used to communicate with discord"
},
"discord.state": {
"type": "string",
"default": "Working on {projectName}",
"description": "The discord rpc state {projectName}: workspace name"
},
"discord.enable": {
"type": "boolean",
"default": true,
"description": "Enable vscode-discord"
},
"discord.showDebug": {
"type": "boolean",
"default": true,
"description": "Show the debugging icon in the rich presence when debugging"
},
"discord.debugIconText": {
"type": "string",
"default": "Debugging",
"description": "The small image debug text when debugging"
},
"discord.showElapsedTime": {
"type": "boolean",
"default": true,
"description": "Wether or not to show elapsed time on discord"
},
"discord.details": {
"type": "string",
"default": "Editing {filename}",
"description": "The discord rpc details {filename}: filename, {language} : language id"
},
"discord.vscodeIconText": {
"type": "string",
"default": "Visual Studio Code",
"description": "The small icon hint (smallImageText)"
},
"discord.languageIconText": {
"type": "string",
"default": "{language}",
"description": "The hint for the language icon (largeImageText) {language} : language id"
},
"discord.idle": {
"type": "string",
"default": "Idle",
"description": "The default text when there is no editor opened"
},
"discord.iconMap": {
"type": "object",
"default": {
".c": "c",
".htm": "html",
".html": "html",
".gitignore": "git",
".js": "js",
".json": "json",
".md": "markdown",
".py": "python",
"package.json": "npm",
".ts": "typescript",
".lua": "lua",
".vue": "vue",
".rs": "rust"
},
"description": "The icon map for the extension"
},
"discord.interval": {
"type": "integer",
"default": 3000,
"description": "The interval time to update the informations in ms"
}
}
}
],
"keybindings": [
{
"command": "discord.updatePresence",
"key": "",
"mac": ""
},
{
"command": "discord.enable",
"key": "",
"mac": ""
},
{
"command": "discord.disable",
"key": "",
"mac": ""
}
]
},
"galleryBanner": {
"theme": "dark",
"color": "#C80000"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"eslint": "^4.11.0",
"typescript": "^2.6.1",
"vscode": "^1.1.6"
},
"keywords": [
"Discord",
"Rich",
"Presence"
],
"bugs": {
"url": "https://github.com/maxerbox/vscode-discord/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/maxerbox/vscode-discord.git"
},
"dependencies": {
"bluebird": "^3.5.1",
"discord-rpc": "^3.0.0-beta.2",
"string-template": "^1.0.0"
},
"optionalDependencies": {
"winreg": "^1.2.4"
},
"license": "ISC",
"icon": "icons/icon.png"
}