-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.25 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
{
"name": "chandrian",
"displayName": "Chandrian",
"description": "A semantic color theme for VS Code",
"version": "1.0.0",
"publisher": "narenranjit",
"icon": "icon.png",
"galleryBanner": {
"color": "#262626",
"theme": "dark"
},
"engines": {
"vscode": "^1.24.0"
},
"repository": {
"type": "git",
"url": "https://github.com/narenranjit/chandrian-theme.git"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Chandrian Blue",
"uiTheme": "vs-dark",
"path": "./dist/chandrian-blue.json"
},
{
"label": "Chandrian Blue (no italics)",
"uiTheme": "vs-dark",
"path": "./dist/chandrian-blue-no-italics.json"
},
{
"label": "Chandrian Blue (High Contrast)",
"uiTheme": "vs-dark",
"path": "./dist/chandrian-blue-high-contrast.json"
}
]
},
"scripts": {
"build": "node ./build/compile-themes.js",
"watch": "node ./build/watch-and-compile.js"
},
"author": "Naren Ranjit",
"license": "ISC",
"devDependencies": {
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"json-templates": "^2.0.0",
"jsonc-parser": "^2.0.1",
"prettier": "^2.2.1"
}
}