Files
vscode-extension-samples/theme-sample/package.json

23 lines
367 B
JSON
Raw Normal View History

2016-08-29 20:10:20 +02:00
{
"name": "theme-sample",
"version": "0.1.0",
"publisher": "vscode",
2016-12-30 11:17:41 +01:00
"engines": {
"vscode": "*"
},
2016-08-29 20:10:20 +02:00
"contributes": {
"themes": [
{
"label": "Sample Light",
"uiTheme": "vs",
"path": "./Sample_Light.tmTheme"
},
{
"label": "Sample Dark",
2016-08-29 20:10:20 +02:00
"uiTheme": "vs-dark",
"path": "./Sample_Dark.tmTheme"
2016-08-29 20:10:20 +02:00
}
]
}
2016-12-30 11:17:41 +01:00
}