-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
411 lines (411 loc) · 11.4 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
{
"name": "reduced-dark-ui",
"version": "0.11.1",
"main": "./lib/main.js",
"theme": "ui",
"author": {
"name": "Tuomas Hatakka",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/tuomashatakka/reduced-dark-ui/issues"
},
"dependencies": {
"atom-space-pen-views": "^2.2.0",
"auto-updater": "^1.0.2",
"eslint": "3.12.2",
"jasmine": "^2.5.3",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"underscore": "^1.8.3"
},
"description": "Plain elegant, unobtrusive interface featuring configurable, adaptive color palette. It's like having a cake and eating it too.",
"devDependencies": {},
"engines": {
"atom": ">=0.174.0 <2.0.0"
},
"homepage": "https://github.com/tuomashatakka/reduced-dark-ui",
"keywords": [
"dark",
"clean",
"elegant",
"plain",
"minimal",
"custom",
"configure",
"settings",
"clear",
"unobtrusive",
"easy",
"solid",
"flat",
"material",
"monotone",
"subtle",
"design",
"hot",
"responsive",
"scale",
"ui"
],
"configSchema": {
"layout": {
"order": 1,
"title": "Size & layout",
"description": "General user interface definitions",
"type": "object",
"properties": {
"SILLYMODE": {
"order": 1,
"title": "ACTIVATE SILLY MODE (experimental but highly recommended)",
"description": "ACTIVATE SILLY MODE FOR ENHANCED USER EXPERIENCE AND INCREASED PRODUCTIVITY! A BIT LIKE POMODORO BUT BETTER",
"type": "boolean",
"default": false
},
"uiScale": {
"order": 1,
"title": "User interface scale",
"description": "Scale the user interface (does not affect the text editor font size)",
"type": "integer",
"default": 100,
"minimum": 40,
"maximum": 150
},
"spacing": {
"order": 3,
"title": "Layout spacing",
"description": "Adjust the layout gutters & line height. Smaller values mean more dense UI",
"type": "integer",
"default": 80,
"minimum": 40,
"maximum": 160
},
"tabPosition": {
"order": 6,
"title": "Tab alignment",
"description": "Spread the tabs to fill the whole tab bar.",
"type": "string",
"default": "Center",
"enum": [
"Left",
"Center",
"Right",
"Stretch"
]
},
"tabClosePosition": {
"order": 7,
"title": "Tab close button visibility",
"description": "Set the positioning & visibility for the tabs' close buttons. 'Active' option displays the close icon only on current icon, and 'Unmodified' option hides the close icon from the files that have unsaved changes.",
"type": "string",
"default": "Left",
"enum": [
"Hidden",
"Unmodified",
"Active",
"Left",
"Right"
]
},
"fixedTabBar": {
"order": 4,
"title": "Fixed tab tar",
"description": "Display tabs above everything else. Enabling this setting allows tabs to spread amongst the whole screen. **Has some issues while the screen is split horizontally**",
"type": "boolean",
"default": false
},
"fixedProjectRoot": {
"order": 2,
"title": "Fixed project root",
"description": "Set the project root(s) in the tree view to be fixed to the top of the view. If enabled, the root folders remain fixed to the top of the view while the tree view is scrolled.",
"type": "boolean",
"default": true
},
"collapsing": {
"order": 5,
"title": "Collapsing panels",
"description": "Collapse the side panels. Panels are shown on mouseover.",
"type": "string",
"default": "Neither",
"enum": [
"Neither",
"Left",
"Right",
"Both"
]
}
}
},
"palette": {
"order": 2,
"title": "Theme colors",
"description": "Highlight colors for the theme",
"type": "object",
"properties": {
"primary": {
"order": 1,
"title": "Primary color",
"description": "The primary highlight color. Used in the main GUI interaction",
"type": "color",
"default": "#59edbc"
},
"accentColor": {
"order": 2,
"title": "Secondary color",
"description": "A complementary highlight accent, used mainly for hostile states' representation.",
"type": "color",
"default": "#f93995"
},
"tint": {
"order": 3,
"title": "Global tint",
"description": "Applies a tinting for the whole workspace",
"type": "color",
"default": "#ffffff"
},
"state": {
"order": 4,
"title": "State colors",
"description": "Colors for representing different states (such as git file events)",
"type": "object",
"properties": {
"success": {
"order": 2,
"title": "Success",
"description": "New files in the repository, success messages, affirmative buttons",
"type": "color",
"default": "#6ceba2"
},
"warning": {
"order": 3,
"title": "Warning",
"description": "Edited files, warning labels",
"type": "color",
"default": "#e6f69a"
},
"annotation": {
"order": 4,
"title": "Annotate",
"description": "Serious warnings",
"type": "color",
"default": "#e87565"
},
"error": {
"order": 5,
"title": "Error",
"description": "Fatal errors, cancel actions, all that negative stuff",
"type": "color",
"default": "#ff3558"
}
}
}
}
},
"decor": {
"order": 3,
"title": "Miscellaneous",
"description": "",
"type": "object",
"properties": {
"overrideEditorBackground": {
"title": "Override Editor Background Color",
"description": "Instead of using the syntax theme's background color, force the Reduced Dark UI's background color to be used in the editor",
"type": "boolean",
"default": true
},
"fading": {
"title": "Contrast for the ui elements (experimental)",
"description": "Increase the contrast between ui elements for increased visual clues (ease of access)",
"type": "boolean",
"default": false
},
"enhancedFx": {
"title": "Blend modes and gradient background (experimental)",
"description": "This is some seriously GPU-intensive stuff.",
"type": "boolean",
"default": false
},
"uiFont": {
"order": 2,
"title": "Font family",
"description": "Typeface for the regular text",
"type": "string",
"default": "Arial"
},
"uiFontWeight": {
"order": 3,
"title": "Font style",
"description": "Font style for the regular text",
"type": "number",
"default": 300,
"enum": [
100,
200,
300,
400,
500,
600,
700,
800,
900
]
},
"animations": {
"title": "Animations & Transitions",
"description": "Settings for UI animations",
"type": "object",
"properties": {
"duration": {
"order": 1,
"title": "Duration",
"description": "Duration for transitions. Set to 0 to disable",
"type": "number",
"default": 0.2,
"minimum": 0,
"maximum": 0.6
},
"blurIntensity": {
"order": 2,
"title": "Blur intensity",
"description": "Intensity for backdrop blur effect. Set to 0 to disable",
"type": "number",
"default": 0.6,
"minimum": 0,
"maximum": 1
}
}
}
}
},
"icons": {
"order": 4,
"title": "Icons",
"description": "Icons for the workspace's panels",
"type": "object",
"default": {}
},
"env": {
"order": 5,
"title": "Advanced",
"description": "Settings for the theme's runtime. All of these can also be set as ```PATH``` variables in the regular manner: ```export PATH=$PATH:<key>=<value>```",
"type": "object",
"properties": {
"GOOGLE_API_KEY": {
"title": "Google API key for webfonts",
"description": "Requires Fonts API access",
"type": "string",
"default": ""
}
}
}
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"atom": true,
"Promise": true,
"module": true,
"process": true,
"emit": true,
"require": true,
"document": true,
"window": true,
"jQuery": true,
"__dirname": true,
"__pathname": true
},
"parser": "babel-eslint",
"plugins": [
"react",
"react-native",
"flowtype"
],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:flowtype/recommended"
],
"rules": {
"react-native/no-unused-styles": 2,
"react-native/split-platform-components": 2,
"strict": 0,
"flowtype/boolean-style": [
2,
"boolean"
],
"flowtype/define-flow-type": 1,
"flowtype/delimiter-dangle": [
2,
"never"
],
"flowtype/generic-spacing": [
2,
"never"
],
"flowtype/no-primitive-constructor-types": 2,
"flowtype/no-weak-types": 1,
"flowtype/object-type-delimiter": [
2,
"comma"
],
"flowtype/require-parameter-type": 2,
"flowtype/require-return-type": [
2,
"always",
{
"annotateUndefined": "never"
}
],
"flowtype/require-valid-file-annotation": 2,
"flowtype/semi": [
2,
"always"
],
"flowtype/space-after-type-colon": [
2,
"always"
],
"flowtype/space-before-generic-bracket": [
2,
"never"
],
"flowtype/space-before-type-colon": [
2,
"never"
],
"flowtype/type-id-match": [
2,
"^([A-Z][a-z0-9]+)+Type$"
],
"flowtype/union-intersection-spacing": [
2,
"always"
],
"flowtype/use-flow-type": 1,
"flowtype/valid-syntax": 1
},
"settings": {
"react": {
"pragma": "React",
"version": "15.3.1"
},
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
}
},
"optionalDependencies": {},
"readmeFilename": "README.md",
"license": "MIT",
"repository": "https://github.com/tuomashatakka/reduced-dark-ui"
}