forked from atom-community/ui-theme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "calculator-light-ui",
"theme": "ui",
"version": "0.3.31",
"main": "./lib/main",
"description": "A light UI theme for Atom. (Because there are not enough light UI themes.)",
"keywords": [
"ui",
"theme"
],
"repository": "https://github.com/savetheclocktower/calculator-light-ui",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"configSchema": {
"baseColor": {
"order": 1,
"title": "Base Color",
"description": "The color to use for the theme. (Only the hue component will be used.)",
"default": "#505B62",
"type": "color"
},
"manageMiniEditors": {
"order": 2,
"title": "Manage Mini Editors",
"description": "Whether this theme should apply its preferred UI styles to mini-editors (like the Find dialog). Typically these editors are styled by the syntax theme. Enable this option if you want mini-editors to have light backgrounds without any syntax highlighting.",
"default": false,
"type": "boolean"
}
},
"dependencies": {
"dedent": "^0.7.0",
"proper-lockfile": "^4.1.2"
}
}