-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
203 lines (203 loc) · 4.38 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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"name": "codinglover",
"description": "除了有彩虹屁语音,还有虚拟老婆陪你敲代码哟。会在你编程时给你爱的鼓励哟!已为大家收集数十款精美的老婆数据包。",
"displayName": "编程伴侣(彩虹屁老婆)★DC妹子来了",
"version": "0.2.9",
"publisher": "ezshine",
"engines": {
"HBuilderX": "^2.7.9"
},
"categories": [
"Other"
],
"main": "./extension",
"contributes": {
"configuration": {
"title": "编程伴侣",
"properties": {
"codinglover.enabledDebug": {
"type": "boolean",
"default": false,
"description": "开启调试模式"
},
"codinglover.enabledRainbowFart": {
"type": "boolean",
"default": true,
"description": "启用彩虹屁语音"
},
"codinglover.voicePackageName": {
"type": "string",
"default": "sharonring",
"description": "彩虹屁语音包名"
},
"codinglover.inputDetectIntervalName": {
"type": "string",
"default": "及时",
"description": "彩虹屁语音触发",
"enum": [
"瞬时",
"及时",
"延时"
]
},
"codinglover.enabledAppDataDir": {
"type": "boolean",
"default": true,
"description": "启用插件数据存放路径"
},
"codinglover.enabledLive2d": {
"type": "boolean",
"default": false,
"description": "启动时打开老婆"
},
"codinglover.live2dPackageName": {
"type": "string",
"default": "liang",
"description": "老婆模型名称"
}
}
},
"commands": [
{
"command": "extension.showCodingAnalysis",
"title": "编程报告"
},
{
"command": "extension.codingloverPickVP",
"title": "切换语音包"
},
{
"command": "extension.codingloverEnabledVP",
"title": "启用彩虹屁语音"
},
{
"command":"extension.codingloverEnabledLP",
"title":"启动时打开老婆"
},
{
"command": "extension.codingloverPickLP",
"title": "切换老婆模型"
},
{
"command": "extension.codingloverDownloadLP",
"title": "更多老婆模型"
}
,
{
"command": "extension.codingloverDelResourcesDir",
"title": "删除已存储数据"
}
,
{
"command": "extension.codingloverOpenResourcesDir",
"title": "打开数据存储文件夹"
}
,
{
"command": "extension.codingloverEnabledDebug",
"title": "启用调试模式"
}
,
{
"command": "extension.codingloverGoRateStar",
"title": "赏好评支持作者"
},
{
"command":"extension.codingloverSwitchResourcesDir",
"title":"切换数据存储路径"
}
,
{
"command":"extension.codingloverOpenQNA",
"title":"查看使用说明"
}
],
"menus": {
"menubar/tool": [
{
"group": "z_commands"
},
{
"id": "codinglover",
"title": "编程伴侣"
}
,
{
"command": "extension.codingloverOpenQNA",
"group": "codinglover@1"
},
{
"group": "codinglover@2"
}
,
{
"command": "extension.codingloverEnabledVP",
"group": "codinglover@3",
"checked":"config.codinglover.enabledRainbowFart==1"
},
{
"command": "extension.codingloverPickVP",
"group": "codinglover@4"
},
{
"group": "codinglover@5"
},
{
"command": "extension.codingloverEnabledLP",
"group": "codinglover@6",
"checked":"config.codinglover.enabledLive2d==1"
},
{
"command": "extension.codingloverPickLP",
"group": "codinglover@7"
},
{
"command": "extension.codingloverDownloadLP",
"group": "codinglover@8"
},
{
"group": "codinglover@9"
}
,
{
"command":"extension.codingloverSwitchResourcesDir",
"group": "codinglover@10"
}
,
{
"command":"extension.codingloverOpenResourcesDir",
"group": "codinglover@11"
}
,
{
"command": "extension.codingloverDelResourcesDir",
"group": "codinglover@12"
}
,
{
"group": "codinglover@13"
}
,
{
"command": "extension.codingloverEnabledDebug",
"group": "codinglover@14",
"checked":"config.codinglover.enabledDebug==1"
},
{
"group": "codinglover@15"
},
{
"command": "extension.codingloverGoRateStar",
"group": "codinglover@16"
}
]
}
},
"extensionDependencies": [
"plugin-manager"
],
"dependencies": {
"messenger": "0.0.9",
"unzip": "^0.1.11"
}
}