This repository was archived by the owner on Jul 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "threshold-ui",
"theme": "ui",
"version": "1.0.0",
"description": "Dark UI theme for Atom, with a more native Windows 10 feel.",
"keywords": [
"dark",
"ui"
],
"license": "MIT",
"repository": "https://github.com/binaryfunt/threshold-ui",
"main": "lib/main",
"engines": {
"atom": ">=1.13.0"
},
"devDependencies": {
"coffeelint": "^1.9.7"
},
"configSchema": {
"fontSize": {
"title": "Font Size",
"description": "Change the UI font size. Needs to be between 8 and 20. In Auto mode, the Font Size will automatically change based on the window size.",
"type": [
"integer",
"string"
],
"minimum": 8,
"maximum": 20,
"default": "Auto"
},
"layoutMode": {
"title": "Layout Mode",
"description": "In Auto mode, the UI will automatically adapt based on the window size.",
"type": "string",
"default": "Auto",
"enum": [
"Compact",
"Auto",
"Spacious"
]
},
"tabSizing": {
"title": "Tab Sizing",
"description": "In minimum width mode the tabs will be as small as possible but in even width mode, all tabs will be the same size. In auto mode the tabs switch based on the window size.",
"type": "string",
"default": "Auto",
"enum": [
"Even",
"Auto",
"Minimum"
]
}
}
}