This repository has been archived by the owner on Sep 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 187
/
package.json
78 lines (78 loc) · 1.84 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
{
"name": "one-dark-ui",
"theme": "ui",
"version": "1.12.5",
"description": "Atom One dark UI theme",
"keywords": [
"dark",
"adaptive",
"ui"
],
"license": "MIT",
"repository": "https://github.com/atom/one-dark-ui",
"main": "lib/main",
"engines": {
"atom": ">0.40.0"
},
"devDependencies": {
"coffeelint": "^1.9.7"
},
"configSchema": {
"fontSize": {
"title": "Font Size",
"description": "Change the font size for the UI.",
"type": "integer",
"default": 12,
"enum": [
10,
11,
12,
13,
14,
15,
16,
17,
18,
19,
20
],
"order": 1
},
"tabSizing": {
"title": "Tab Sizing",
"description": "In Even mode all tabs will be the same size. Great for quickly closing many tabs. In Maximum mode the tabs will expand to take up the full width. In Minimum mode the tabs will only take as little space as needed and also show longer file names.",
"type": "string",
"default": "Even",
"enum": [
"Even",
"Maximum",
"Minimum"
],
"order": 2
},
"tabCloseButton": {
"title": "Tab Close Button",
"description": "Choose the position of the close button shown in tabs.",
"type": "string",
"default": "Right",
"enum": [
"Left",
"Right"
],
"order": 3
},
"hideDockButtons": {
"title": "Hide dock toggle buttons",
"description": "Note: When hiding the toggle buttons, opening a dock needs to be done by using the keyboard or other alternatives.",
"type": "boolean",
"default": "false",
"order": 4
},
"stickyHeaders": {
"title": "Make tree-view project headers sticky",
"type": "boolean",
"default": "false",
"order": 5
}
}
}