forked from jesseweed/seti-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.24 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
{
"name": "seti-ui",
"theme": "ui",
"version": "1.4.0",
"description": "A dark colored UI theme for Atom with custom file icons.",
"main": "lib/main",
"license": "MIT",
"repository": "https://github.com/jesseweed/seti-ui",
"engines": {
"atom": ">1.12.0"
},
"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"
},
"font": {
"title": "Font Family",
"order": 2,
"description": "Select default UI font.",
"type": "string",
"enum": [
"Roboto",
"Default Atom Font"
],
"default": "Roboto"
},
"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
}
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-iconfont": "^6.0.0",
"gulp-iconfont-css": "^2.1.0"
},
"dependencies": {
"gulp-svgmin": "^1.2.3"
}
}