-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "kelp-forest-theme-vscode",
"displayName": "Kelp Forest Theme",
"description": "A cool and cozy dark theme for Visual Studio Code.",
"version": "1.1.2",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://jasontheiler.github.io/kelp-forest-theme-vscode",
"author": "Jason Theiler <turret.jason@outlook.com>",
"publisher": "jasontheiler",
"icon": "images/logo.png",
"galleryBanner": {
"color": "#141B19",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"Theme",
"Dark",
"Subnautica",
"Kelp",
"Forest"
],
"contributes": {
"themes": [
{
"label": "Kelp Forest",
"uiTheme": "vs-dark",
"path": "./themes/kelp-forest.json"
},
{
"label": "Kelp Forest Italic",
"uiTheme": "vs-dark",
"path": "./themes/kelp-forest-italic.json"
},
{
"label": "Kelp Forest Bold",
"uiTheme": "vs-dark",
"path": "./themes/kelp-forest-bold.json"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/jasontheiler/kelp-forest-theme-vscode"
},
"bugs": {
"url": "https://github.com/jasontheiler/kelp-forest-theme-vscode/issues"
},
"engines": {
"vscode": "^1.26.0"
},
"scripts": {
"format": "prettier --write \"**/*.{js,json,md}\"",
"build": "node src/build"
},
"devDependencies": {
"mustache": "^4.0.1",
"prettier": "^2.1.2"
}
}