forked from liviuschera/noctis
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
132 lines (132 loc) · 3.36 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "gruvbox-concoctis",
"displayName": "Gruvbox Concoctis",
"description": "Concoction of Gruvbox themes",
"version": "10.30.27",
"publisher": "wheredoesyourmindgo",
"icon": "images/logo.png",
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"engines": {
"vscode": "^1.43.0"
},
"galleryBanner": {
"color": "#2a2827",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/wheredoesyourmindgo/gruvbox-concoctis"
},
"scripts": {
"build:ts": "tsc -p src",
"watch:ts": "yarn build:ts -w",
"build": "yarn build:ts",
"dev": "yarn watch:ts",
"pretty": "prettier --write 'src/**/*.ts'",
"build-themes:standalone": "node ./out/standalone/build.js",
"release:major": "yarn build && yarn build-themes:standalone && vsce publish major && git push",
"release:minor": "yarn build && yarn build-themes:standalone && vsce publish minor && git push",
"release:patch": "yarn build && yarn build-themes:standalone && vsce publish patch && git push"
},
"categories": [
"Themes",
"Other"
],
"keywords": [
"gruvbox",
"material",
"noctis",
"italic",
"bold"
],
"contributes": {
"themes": [
{
"label": "gruvboxConcoctis dark medium",
"uiTheme": "vs-dark",
"path": "./themes/darkMedium.json"
},
{
"label": "gruvboxConcoctis light medium",
"uiTheme": "vs",
"path": "./themes/lightMedium.json"
},
{
"label": "gruvboxConcoctis dark soft",
"uiTheme": "vs-dark",
"path": "./themes/darkSoft.json"
},
{
"label": "gruvboxConcoctis light soft",
"uiTheme": "vs",
"path": "./themes/lightSoft.json"
},
{
"label": "gruvboxConcoctis dark hard",
"uiTheme": "vs-dark",
"path": "./themes/darkHard.json"
},
{
"label": "gruvboxConcoctis light hard",
"uiTheme": "vs",
"path": "./themes/lightHard.json"
}
],
"configuration": {
"title": "Gruvbox Concoctis",
"properties": {
"gruvboxConcoctis.useBoldFont": {
"type": "boolean",
"default": false,
"description": "Use bold font."
},
"gruvboxConcoctis.useItalicFont": {
"type": "boolean",
"default": true,
"description": "Use italic font."
},
"gruvboxConcoctis.usePalette": {
"type": "string",
"default": "material",
"description": "The color palette used in all variants.",
"enum": [
"material",
"mix",
"original"
]
},
"gruvboxConcoctis.selectionColor": {
"type": "string",
"default": "neutral",
"description": "The selection color used in editor.",
"enum": [
"neutral",
"aqua",
"blue",
"green",
"grey",
"orange",
"purple",
"red",
"yellow"
]
}
}
}
},
"dependencies": {},
"__metadata": {
"id": "",
"publisherId": "wheredoesyourmindgo",
"publisherDisplayName": "wheredoesyourmindgo"
},
"devDependencies": {
"@types/node": "^13.11.0",
"@types/vscode": "^1.43.0",
"prettier": "^2.0.4",
"typescript": "^3.8.3"
}
}