-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathpackage.json
36 lines (36 loc) · 886 Bytes
/
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": "seti-syntax",
"theme": "syntax",
"version": "1.2.0",
"description": "Seti Syntax - A subtle dark colored theme for Atom.",
"main": "./lib/main",
"repository": "https://github.com/jesseweed/seti-syntax",
"license": "MIT",
"engines": {
"atom": ">1.6"
},
"configSchema": {
"dynamicColor": {
"title": "Dynamic Theme",
"description": "Enable this to set syntax color dynamically based on seti ui theme.",
"type": "boolean",
"default": true
},
"themeColor": {
"title": "Theme Color",
"description": "Set your default syntax color (this will be ignored if dynamic theme is enabled above).",
"type": "string",
"enum": [
"Blue",
"Green",
"Orange",
"Pink",
"Purple",
"Red",
"Steel",
"Yellow"
],
"default": "Blue"
}
}
}