forked from jesseweed/seti-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.7 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
{
"name": "seti-ui",
"theme": "ui",
"version": "1.11.0",
"description": "A dark colored UI theme for Atom with custom file icons.",
"license": "MIT",
"repository": "https://github.com/jesseweed/seti-ui",
"engines": {
"atom": ">1.13.0"
},
"main": "lib/main",
"scripts": {
"prepublishOnly": "gulp icons"
},
"configSchema": {
"themeColor": {
"title": "Theme Color",
"order": 1,
"description": "Select a default theme color. If you don't notice a difference, you may have to reload Atom to see them.",
"type": "string",
"enum": [
"Blue",
"Green",
"Orange",
"Pink",
"Purple",
"Red",
"Steel",
"Yellow"
],
"default": "Blue"
},
"compactView": {
"title": "Compact Mode",
"order": 3,
"description": "Enable this is you prefer less padding in your workspace.",
"type": "boolean",
"default": false
},
"disableAnimations": {
"title": "Disable Animations",
"order": 4,
"description": "Select this if you want to disable animations.",
"type": "boolean",
"default": false
},
"fileIcons": {
"title": "Custom Icons",
"order": 5,
"description": "Disable this if you are using file-icons or another atom file icon package (or simply don't want custom icons)",
"type": "boolean",
"default": true
},
"displayIgnored": {
"title": "Display Ignored Files",
"order": 6,
"description": "Enable this if you would like to not see ignored files at all (as opposed to simple muting the style)",
"type": "boolean",
"default": true
},
"hideTabs": {
"title": "Hide Tabs",
"order": 7,
"description": "Enable this if you prefer to rely on the sidebar for nagivation and don't want to see tabs at all.",
"type": "boolean",
"default": false
},
"hideDocumentTitle": {
"title": "Hide Current Document Title",
"order": 8,
"description": "Enable this if you want to hide the main window title",
"type": "boolean",
"default": false
},
"hideTitleBar": {
"title": "Hide Title Bar",
"order": 9,
"description": "Enable this if you want to completely hide the main window title bar",
"type": "boolean",
"default": false
},
"hideProjectTab": {
"title": "Hide Project Tab",
"order": 10,
"description": "Enable this if you want to remove the 'project' tab from the sidebar",
"type": "boolean",
"default": false
}
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-iconfont": "8.0.1",
"gulp-iconfont-css": "^2.1.0",
"gulp-svgmin": "^1.2.3"
}
}