-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 1.69 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
{
"name": "cameo",
"displayName": "Cameo",
"description": "macOS Mojave Dark UI Themes",
"version": "1.4.1",
"publisher": "pascalpixel",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Themes"
],
"author": {
"name": "superpencil"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#e9ac9f",
"theme": "dark"
},
"scripts": {
"compile": "node index.js",
"publish": "vsce publish"
},
"license": "SEE LICENSE IN LICENSE.txt",
"bugs": {
"url": "https://github.com/Superpencil/cameo/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Superpencil/cameo.git"
},
"homepage": "https://github.com/Superpencil/cameo/blob/master/README.md",
"contributes": {
"themes": [
{
"label": "Cameo Dark (Visual Studio)",
"uiTheme": "vs-dark",
"path": "./themes/cameo-default-dark-color-theme.json"
},
{
"label": "Cameo Dark+ (default dark)",
"uiTheme": "vs-dark",
"path": "./themes/cameo-default-dark-plus-color-theme.json"
},
{
"label": "Cameo Nord",
"uiTheme": "vs-dark",
"path": "./themes/cameo-nord-color-theme.json"
},
{
"label": "Cameo One Dark",
"uiTheme": "vs-dark",
"path": "./themes/cameo-one-dark-color-theme.json"
},
{
"label": "Cameo City Lights",
"uiTheme": "vs-dark",
"path": "./themes/cameo-city-lights-color-theme.json"
}
]
},
"prettier": {
"endOfLine": "lf",
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"tabWidth": 2,
"trailingComma": "es5"
}
}