-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
158 lines (158 loc) · 4.37 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
{
"name": "slack-vscode",
"displayName": "Slack-VSCode",
"version": "0.2.1",
"description": "Slack extension for VS Code: Send your messages and files to Slack without leaving the editor.",
"icon": "assets/icon.png",
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"install-local": "vsce package && code --install-extension lonsole-cog-0.0.1.vsix"
},
"repository": {
"type": "git",
"url": "https://github.com/alperg/slack-vscode"
},
"keywords": [
"slack",
"vscode",
"slack integration",
"vscode to slack"
],
"publisher": "alperg",
"author": {
"name": "Alper Gokcehan",
"email": "[email protected]",
"url": "https://github.com/alperg/"
},
"license": "MIT",
"activationEvents": [
"onCommand:slackVSCode.sendMessage",
"onCommand:slackVSCode.sendSelection",
"onCommand:slackVSCode.uploadFilePath",
"onCommand:slackVSCode.uploadCurrentFile",
"onCommand:slackVSCode.uploadFileSelection"
],
"contributes": {
"menus": {
"editor/context": [
{
"when": "editorHasSelection",
"command": "slackVSCode.uploadFileSelection",
"group": "navigation"
},
{
"command": "slackVSCode.uploadCurrentFile",
"group": "navigation"
}
]
},
"commands": [
{
"command": "slackVSCode.sendMessage",
"title": "Slack-VSCode: Send Message"
},
{
"command": "slackVSCode.sendSelection",
"title": "Slack-VSCode: Send Selection"
},
{
"command": "slackVSCode.uploadFilePath",
"title": "Slack-VSCode: Upload File From Path"
},
{
"command": "slackVSCode.uploadCurrentFile",
"title": "Slack-VSCode: Upload Current File"
},
{
"command": "slackVSCode.uploadFileSelection",
"title": "Slack-VSCode: Upload Selection as File"
}
],
"keybindings": [
{
"command": "slackVSCode.sendSelection",
"key": "ctrl+shift+alt+s"
},
{
"command": "slackVSCode.sendMessage",
"key": "ctrl+shift+alt+m"
},
{
"command": "slackVSCode.uploadCurrentFile",
"key": "ctrl+shift+alt+u"
}
],
"configuration": {
"type": "object",
"title": "Slack-VSCode Configuration",
"properties": {
"slackVSCode.token": {
"type": "string",
"default": "",
"description": "Slack team token"
},
"slackVSCode.listChannels": {
"type": "boolean",
"default": true,
"description": "True if you want to list the channels"
},
"slackVSCode.listGroups": {
"type": "boolean",
"default": true,
"description": "True if you want to list the groups"
},
"slackVSCode.listMembers": {
"type": "boolean",
"default": true,
"description": "True if you want to list the members"
},
"slackVSCode.fileWithFullPath": {
"type": "boolean",
"default": false,
"description": "True if you want to send files with full path"
},
"slackVSCode.excludeFromFullPath": {
"type": "string",
"default": "",
"description": "String to exclude from the file full path i.e. '/Users/alper/dev'"
},
"slackVSCode.defaultRecipient": {
"type": "string",
"default": "",
"description": "The default recipient, to send the message directly without choosing from the drop down. i.e. '#general', '@user'"
}
}
}
},
"galleryBanner": {
"color": "#FFFFFF",
"theme": "light"
},
"engines": {
"vscode": "^1.38.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/alperg/slack-vscode/issues"
},
"homepage": "https://github.com/alperg/slack-vscode/blob/master/README.md",
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.8",
"@types/request": "^2.48.3",
"mocha": "^6.2.1",
"typescript": "^3.6.3",
"vscode": "^1.1.36"
},
"dependencies": {
"request": "^2.88.0",
"vscode-variables": "^0.1.2"
}
}