-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.91 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
{
"name": "atom-github-syntax",
"theme": "syntax",
"private": true,
"version": "1.1.0",
"homepage": "https://github.com/Alhadis/language-etc/blob/master/samples/lists/scope-previews.nanorc",
"description": "Up-to-date syntax colours that match GitHub's motif, including day/night mode.",
"repository": "https://github.com/Alhadis/Atom-GitHubSyntax",
"license": "ISC",
"eslintConfig": {
"extends": "@alhadis",
"overrides": [{
"files": "index.js",
"globals": {"atom": "readonly"}
},{
"files": "tools/extract-themes.mjs",
"rules": {"prefer-rest-params": 0}
}]
},
"engines": {
"atom": "*"
},
"configSchema": {
"colourMode": {
"order": 1,
"title": "Colour mode",
"description": "Which colour motif to use, if not derived from the system's appearance settings.",
"type": "string",
"default": "",
"enum": [
{"value": "", "description": "Sync with system"},
{"value": "dark", "description": "Dark"},
{"value": "light", "description": "Light"}
]
},
"theme": {
"order": 2,
"title": "Theme variant",
"description": "Select an alternate colour-palette.",
"type": "string",
"default": "",
"enum": [
{"value": "", "description": "None (default)"},
{"value": "high-contrast", "description": "High contrast"},
{"value": "colour-blind", "description": "Protanopia and deuteranopia"},
{"value": "tritanopia", "description": "Tritanopia"},
{"value": "dimmed", "description": "Dimmed (dark only)"}
]
},
"matchFont": {
"order": 3,
"title": "Match font",
"description": "Override user-configured editor settings to match the exact appearance of source-code on GitHub.",
"type": "boolean",
"default": true
},
"matchSize": {
"order": 4,
"title": "Match size",
"description": "Force the editor to use GitHub's text-size when the above setting is enabled.",
"type": "boolean",
"default": true
}
}
}