-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.09 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
{
"name": "ymate-vscode-extension",
"displayName": "ymate-vscode-extension",
"description": "ymate extension for vscode",
"version": "1.1.2",
"author": {
"name": "smalls",
"email": "[email protected]"
},
"keywords": [
"java",
"ymate"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/smallsfx/ymate-vscode-extension.git"
},
"publisher": "suninformation",
"engines": {
"vscode": "^1.17.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"icon": "images/ymate-vscode-estension.png",
"contributes": {
"configuration": {
"type": "object",
"title": "ymate-vscode-extension configuration",
"properties": {
"ymate.enbaled": {
"type": "boolean",
"default": false,
"description": "是否启用ymate插件"
}
}
},
"menus": {
"editor/context": [],
"editor/title": [],
"editor/title/context": [],
"explorer/context": [],
"scm/resourceGroup/context": [],
"scm/resourceState/context": [],
"view/item/context": [],
"view/title": [
{
"command": "ymate.extensions.properties.refresh",
"when": "view == ymate.extensions.properties.explorer",
"group": "navigation@1"
},
{
"command": "ymate.extensions.properties.tree.expand",
"when": "view == ymate.extensions.properties.explorer",
"group": "navigation@1"
},
{
"command": "ymate.extensions.properties.tree.collpase",
"when": "view == ymate.extensions.properties.explorer",
"group": "navigation@1"
}
]
},
"commands": [
{
"command": "ymate.extensions.properties.tree.collpase",
"title": "全部收起",
"category": "ymate.explorer",
"icon": {
"dark": "images/dark/action-collpase.svg",
"light": "images/light/action-collpase.svg"
}
},
{
"command": "ymate.extensions.properties.tree.expand",
"title": "全部展开",
"category": "ymate.explorer",
"icon": {
"dark": "images/dark/action-expand.svg",
"light": "images/light/action-expand.svg"
}
},
{
"command": "ymate.extensions.properties.refresh",
"title": "刷新",
"category": "ymate.explorer",
"icon": {
"dark": "images/dark/action-refresh.svg",
"light": "images/light/action-refresh.svg"
}
}
],
"views": {
"explorer": [
{
"id": "ymate.extensions.properties.explorer",
"name": "ymate 资源管理器"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"vscode-languageclient": "^3.4.5",
"@types/node": "^8.0.51",
"@types/mocha": "^2.2.44"
}
}