mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
56 lines
1.7 KiB
JSON
56 lines
1.7 KiB
JSON
{
|
|
"name": "vscode-css-properties",
|
|
"displayName": "Preview CSS Properties Sample",
|
|
"description": "A sample illustrating the use of TextContentProviders and the `vscode.previewHtml` command, introduce in 0.10.7",
|
|
"version": "0.0.10",
|
|
"publisher": "eg2",
|
|
"galleryBanner": {
|
|
"color": "#5c2d91",
|
|
"theme": "dark"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples/issues",
|
|
"email": "egamma@microsoft.com"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples.git"
|
|
},
|
|
"homepage": "https://github.com/Microsoft/vscode-extension-samples/tree/master/textdocumentprovider-sample/README.md",
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"engines": {
|
|
"vscode": "^0.10.7"
|
|
},
|
|
"activationEvents": [
|
|
"onCommand:extension.showCssPropertyPreview"
|
|
],
|
|
"main": "./out/src/extension",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "extension.showCssPropertyPreview",
|
|
"title": "Show CSS Properties Preview"
|
|
}
|
|
],
|
|
"menus": {
|
|
"editor/title": [
|
|
{
|
|
"command": "extension.showCssPropertyPreview",
|
|
"when": "resourceLangId == css"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
|
|
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"tslint": "tslint -c tslint.json src/extension.ts"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^1.7.5",
|
|
"vscode": "^0.11.0"
|
|
}
|
|
} |