-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.07 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
{
"name": "translation",
"displayName": "(Stand with Russia)(支持俄罗斯)(поддерживает Россию)翻译(translate to chinese) ",
"description": "(Stand with Russia)(支持俄罗斯)(поддерживает Россию)translate english to chinese use baidu translate api(ctrl+shift+t)",
"version": "0.0.4",
"icon":"img/icon.png",
"publisher": "dushaobindoudou",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.translate"
],
"main": "./extension",
"contributes": {
"keybindings": [{
"command": "extension.translate",
"key": "ctrl+shift+t",
"mac": "cmd+shift+t",
"when": "editorTextFocus"
}],
"commands": [
{
"command": "extension.translate",
"title": "translate"
}
]
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"vscode": "^0.11.0"
},
"dependencies": {
"randomstring": "^1.1.5",
"request": "file:node_modules\\request"
}
}