-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.13 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
{
"name": "StockholmTheme",
"publisher": "LudvigLundgren",
"author": "Ludvig Lundgren",
"displayName": "Stockholm",
"version": "1.0.0",
"description": "A theme for Visual Studio Code inspierd by codesandbox.io",
"galleryBanner": {
"color": "#1c2022",
"theme": "dark"
},
"icon": "icon.png",
"keywords": [
"material theme",
"material",
"codesandbox",
"codesandbox.io",
"dark"
],
"repository": {
"url": "https://github.com/ludviglundgren/vscode-stockholm-theme",
"type": "git"
},
"bugs": {
"url": "https://github.com/ludviglundgren/vscode-stockholm-theme/issues"
},
"license": "MIT",
"engines": {
"vscode": "^1.12.0"
},
"scripts": {
"start": "nodemon --exec vsce package",
"build": "nodemon --watch src src"
},
"categories": [
"Themes",
"Other"
],
"contributes": {
"themes": [
{
"label": "Stockholm Theme",
"uiTheme": "vs-dark",
"path": "./themes/stockholm-theme.json"
}
]
},
"devDependencies": {
"nodemon": "^1.12.1",
"vsce": "^1.31.0"
}
}