-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
218 lines (218 loc) · 4.86 KB
/
package.json
File metadata and controls
218 lines (218 loc) · 4.86 KB
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
{
"name": "codeui",
"displayName": "CodeUI",
"publisher": "ryanraposo",
"license": "SEE LICENSE IN LICENSE.md",
"description": "Customize your color theme for VS Code.",
"icon": "resources/marketplace/codeui-128.png",
"version": "1.1.0",
"preview": false,
"galleryBanner": {
"color": "#18191e",
"theme": "dark"
},
"engines": {
"vscode": "^1.50.0"
},
"extensionKind": [
"ui",
"workspace"
],
"categories": [
"Other"
],
"keywords": [
"theme",
"editor",
"color",
"UI",
"customize"
],
"activationEvents": [
"onView:codeui.views.elements",
"onView:codeui.views.info",
"onView:codeui.views.color"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "CodeUI",
"properties": {
"codeui.showNotifications": {
"type": "boolean",
"default": true,
"description": "Controls the display of various notifications by CodeUI. Default is true."
},
"codeui.favoriteColors": {
"type": "object",
"patternProperties": {
".+": {
"format": "color",
"type": "string"
}
},
"default": {},
"description": "User-defined colors for use by CodeUI (eg. \"Clay\" : \"#F28585\")"
},
"codeui.targetingMode": {
"type": "string",
"enum": [
"themeSpecific",
"general"
],
"default": "themeSpecific",
"description": "Controls context of customizations applied by CodeUI. Default is 'themeSpecific'",
"scope": "application"
},
"codeui.preferredScope": {
"description": "Controls scoping behaviour when a workspace/folder is open. Default is 'alwaysAsk'",
"type": "string",
"enum": [
"alwaysAsk",
"global",
"workspace"
],
"default": "alwaysAsk"
}
}
},
"commands": [
{
"command": "toggleTargetingMode",
"title": "CodeUI: Toggle targeting mode"
},
{
"command": "toggleViewMode",
"title": "Toggle Standard/Palette view",
"icon": {
"light": "resources/light/view.svg",
"dark": "resources/dark/view.svg"
}
},
{
"command": "adjustBrightness",
"title": "Adjust brightness...",
"icon": {
"light": "resources/light/brightness.svg",
"dark": "resources/dark/brightness.svg"
}
},
{
"command": "customize",
"title": "Customize...",
"icon": {
"light": "resources/light/edit.svg",
"dark": "resources/dark/edit.svg"
}
},
{
"command": "clear",
"title": "Delete customizations...",
"icon": {
"light": "resources/light/clear.svg",
"dark": "resources/dark/clear.svg"
}
},
{
"command": "copy",
"title": "Copy"
},
{
"command": "copySelectedColor",
"title": "CodeUI: Copy selection from picker",
"icon": "$(symbol-reference)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "codeui",
"title": "CodeUI",
"icon": "resources/activityBar/wireframe-swatch-thicc.svg"
}
]
},
"views": {
"codeui": [
{
"id": "codeui.views.info",
"name": "Info"
},
{
"id": "codeui.views.elements",
"name": "Elements"
},
{
"id": "codeui.views.color",
"name": "Color",
"type": "webview"
}
]
},
"menus": {
"view/title": [
{
"command": "toggleViewMode",
"when": "view == codeui.views.elements",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "clear",
"when": "viewItem != standardGroup && view == codeui.views.elements",
"group": "inline"
},
{
"command": "customize",
"when": "viewItem != standardGroup && view == codeui.views.elements",
"group": "inline"
},
{
"command": "adjustBrightness",
"when": "viewItem != standardGroup && view == codeui.views.elements",
"group": "inline"
},
{
"command": "copy",
"when": "viewItem != standardGroup && view == codeui.views.elements"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint -c .eslintrc.js --ext .ts src"
},
"devDependencies": {
"@types/node": "^14.14.8",
"@types/vscode": "^1.50.0",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"@vscode/test-electron": "^2.1.3",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"gulp": "^4.0.2",
"inquirer": "^8.2.4",
"prettier": "^2.2.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@ctrl/tinycolor": "^3.1.7",
"jsonc-parser": "^2.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ryanraposo/codeui"
}
}