This repository was archived by the owner on Apr 27, 2022. 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
68 lines (68 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.49 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "atom-ice-ui",
"theme": "ui",
"version": "1.0.0",
"description": "Cool cyan glow UI theme for Atom editor",
"keywords": [
"ui",
"theme",
"ice",
"dark"
],
"repository": "https://github.com/dann254/atom-ice-ui",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"jquery": "^3.3.1"
},
"main": "lib/main",
"configSchema": {
"editorTitle": {
"title": "Editor Title",
"description": "Have a custom animation to replace the Project title on the top left corner of atom.",
"type": "string",
"default": "Home",
"enum": [
"Classic",
"Heartbeat",
"Pulse Circles",
"Dash Load",
"Gooey Blobs *",
"Home",
"Octoface",
"Smiley",
"Terminal",
"Globe",
"GistSecret",
"Bug"
],
"order": 2
},
"treeViewBackground": {
"title": "Tree View Background",
"description": "Choose custom backgrounds for tree view.",
"type": "string",
"default": "Honeycomb-small",
"enum": [
"Classic",
"Brick",
"Honeycomb",
"Honeycomb-small",
"Brick-weave",
"Checkers",
"Weave",
"Table-cloth",
"Blueprint"
],
"order": 2
},
"scrollBars": {
"title": "Custom Scrollbars",
"description": "Choose custom whether to user custom scrollbars or not.",
"type": "boolean",
"default": false
}
}
}