2016-02-09 23:19:35 +01:00
|
|
|
{
|
2016-12-30 11:17:41 +01:00
|
|
|
"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"
|
|
|
|
|
],
|
2017-04-02 21:52:35 +05:30
|
|
|
"main": "./out/extension",
|
2016-12-30 11:17:41 +01:00
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "extension.showCssPropertyPreview",
|
|
|
|
|
"title": "Show CSS Properties Preview"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"menus": {
|
|
|
|
|
"editor/title": [
|
|
|
|
|
{
|
|
|
|
|
"command": "extension.showCssPropertyPreview",
|
|
|
|
|
"when": "resourceLangId == css"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2016-12-30 11:45:09 +01:00
|
|
|
"vscode:prepublish": "tsc -p ./",
|
|
|
|
|
"compile": "tsc -watch -p ./",
|
2016-12-30 18:35:00 +01:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
2016-12-30 11:17:41 +01:00
|
|
|
"tslint": "tslint -c tslint.json src/extension.ts"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"typescript": "^2.1.4",
|
2018-05-04 08:59:19 +02:00
|
|
|
"vscode": "^1.1.17",
|
2016-12-30 11:17:41 +01:00
|
|
|
"@types/node": "*"
|
|
|
|
|
}
|
2017-04-02 21:52:35 +05:30
|
|
|
}
|