-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
178 lines (178 loc) · 4.73 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
178
{
"name": "ConyBlockBrace",
"displayName": "BlockBrace",
"description": "本插件可以将花括号(大括号)构成的js语句块高亮显示,便于{}代码块的编辑与查看,支持Js、Ts、Json、Java、C、Cpp,从而实现可视化编程.本插件可以将花括号(大括号)构成的js语句块高亮显示,便于{}代码块的编辑与查看,支持Js、Ts、Json、Java、C、Cpp,从而实现可视化编程.This plugin can highlight JavaScript statement blocks composed of curly braces (curly braces) for easy editing and viewing of {} code blocks. It supports Js, Ts, Json, Java, C, and Cpp to achieve visual programming.",
"version": "1.5.9",
"publisher": "sdsds222",
"keywords": [
"ConyBlockBrace",
"Block Brace",
"Block",
"Brace",
"beautify Code",
"Code"
],
"icon": "images/conyblockbrace.png",
"pricing": "Free",
"engines": {
"vscode": "^0.10.5"
},
"categories": [
"Other"
],
"repository": {
"url": "https://github.com/sdsds222/ConyBlockBrace"
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:json",
"onLanguage:java",
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:csharp"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "ConyBlockBrace.ConySettings",
"title": "settings"
},
{
"command": "ConyBlockBrace.ConyAbout",
"title": "about the extension"
},
{
"command": "ConyBlockBrace.ConyToggleHighlighting",
"title": "Switch On/Off BlockBrace"
},
{
"command": "ConyBlockBrace.increaseNum",
"title": "Move Color right"
},
{
"command": "ConyBlockBrace.decreaseNum",
"title": "Move Color left"
}
],
"keybindings": [
{
"command": "ConyBlockBrace.increaseNum",
"key": "ctrl+alt+i",
"when": "editorTextFocus"
},
{
"command": "ConyBlockBrace.decreaseNum",
"key": "ctrl+alt+k",
"when": "editorTextFocus"
},
{
"command": "ConyBlockBrace.ConyToggleHighlighting",
"key": "ctrl+alt+s",
"when": "editorTextFocus"
}
],
"activationEvents": [
"onCommand:ConyBlockBrace.increaseNum",
"onCommand:ConyBlockBrace.decreaseNum",
"onCommand:ConyBlockBrace.ConyToggleHighlighting"
],
"menus": {
"editor/context": [
{
"command": "ConyBlockBrace.ConyToggleHighlighting",
"when": "editorFocus"
}
]
},
"languages": [
{
"id": "javascript",
"extensions": [
".js"
]
},
{
"id": "typescript",
"extensions": [
".ts"
]
},
{
"id": "json",
"extensions": [
".json"
]
},
{
"id": "java",
"extensions": [
".java"
]
},
{
"id": "c",
"extensions": [
".c"
]
},
{
"id": "cpp",
"extensions": [
".cpp"
]
},
{
"id": "csharp",
"extensions": [
".cs"
]
}
],
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.10.5",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"eslint": "^8.47.0",
"glob": "^10.3.3",
"mocha": "^10.2.0",
"typescript": "^5.1.6",
"@vscode/test-electron": "^2.3.4"
},
"configuration": {
"type": "object",
"title": "BlockBrace Configuration",
"properties": {
"ConyBlockBrace.blockColors": {
"type": "array",
"items": {
"type": "string"
},
"default": [
"rgba(0, 0, 255, 0.3)",
"rgba(0, 255, 0, 0.3)",
"rgba(255, 0, 0, 0.3)",
"rgba(154, 152, 152, 0.3)"
],
"description": "可配置颜色参数数组,数组中加入的颜色配置信息会被循环调用,可通过此修改颜色显示的顺序。Colors for different levels of code blocks"
},
"ConyBlockBrace.enabled": {
"type": "boolean",
"default": false,
"description": "打开Vscode默认启动选项,true为是,false为否。 Whether to enable the BlockBrace functionality by default"
},
"ConyBlockBrace.ColorModeEnabled": {
"type": "boolean",
"default": false,
"description": "打开同级色彩模式,同一层代码块内同级的代码块将显示相同颜色(重启VScode生效)。 Single color showing in a common brace block."
}
}
}
}
}