{ "name": "vscode-css-properties", "displayName": "Preview CSS Propertis Sample", "description": "A sample illustrating the of TextContentProviders and the `vscode.previewHtml` command. Introduce in verson 0.10.7.", "version": "0.0.4", "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" }, "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" } ] }, "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" } }