-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 867 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 867 Bytes
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
{
"name": "theme-deep-ocean",
"publisher": "itsdevdom",
"version": "1.0.1",
"displayName": "Deep Ocean Theme",
"description": "Dark color theme based on Oceanic Next",
"repository": {
"type": "git",
"url": "https://github.com/dominique-mueller/vscode-theme-deep-ocean"
},
"engines": {
"vscode": "^1.59.0"
},
"galleryBanner": {
"color": "#343D46",
"theme": "dark"
},
"categories": [
"Themes"
],
"icon": "assets/icon.png",
"contributes": {
"themes": [
{
"label": "Deep Ocean",
"uiTheme": "vs-dark",
"path": "./themes/deep-ocean-color-theme.json"
}
]
},
"scripts": {
"clean": "rimraf *.vsix",
"bundle": "vsce ls && vsce package",
"bundle-and-publish": "vsce ls && vsce publish"
},
"devDependencies": {
"rimraf": "3.0.x",
"vsce": "1.96.x"
}
}