vscode-azurefunctions/package.json

130 строки
4.3 KiB
JSON
Исходник Обычный вид История

{
"name": "vscode-azurefunctions",
"displayName": "Azure Functions",
"description": "An Azure Functions extension for Visual Studio Code.",
"version": "0.1.0",
"publisher": "ms-azuretools",
"icon": "resources/TODO.png",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": {
"vscode": "^1.16.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-azurefunctions"
},
"galleryBanner": {
"color": "#0072c6",
"theme": "dark"
},
"homepage": "https://github.com/Microsoft/vscode-azurefunctions/blob/master/README.md",
"license": "SEE LICENSE IN LICENSE.md",
"categories": [
"Azure"
],
"preview": true,
"activationEvents": [
"onCommand:azureFunctions.refresh",
"onView:azureFunctionsExplorer"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "azureFunctions.refresh",
"title": "Refresh",
"category": "Azure Functions",
"icon": {
"light": "resources/light/Refresh.svg",
"dark": "resources/dark/Refresh.svg"
}
},
{
"command": "azureFunctions.initFunctionApp",
"title": "Initialize Function App",
"category": "Azure Functions",
"icon": {
"light": "resources/light/InitFunctionApp.svg",
"dark": "resources/dark/InitFunctionApp.svg"
}
},
{
"command": "azureFunctions.createFunction",
"title": "Create Function",
"category": "Azure Functions",
"icon": {
"light": "resources/light/AddFunction.svg",
"dark": "resources/dark/AddFunction.svg"
}
},
{
"command": "azureFunctions.openInPortal",
"title": "Open In Portal",
"category": "Azure Functions"
}
],
"views": {
"explorer": [
{
"id": "azureFunctionsExplorer",
"name": "Functions"
}
]
},
"menus": {
"view/title": [
{
"command": "azureFunctions.initFunctionApp",
"when": "view == azureFunctionsExplorer",
"group": "navigation@1"
},
{
"command": "azureFunctions.createFunction",
"when": "view == azureFunctionsExplorer",
"group": "navigation@2"
},
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer",
"group": "navigation@3"
}
],
"view/item/context": [
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem == azureFunctionsSubscription",
"group": "1_functionAppGeneralCommands@2"
},
{
"command": "azureFunctions.openInPortal",
"when": "view == azureFunctionsExplorer && viewItem == azureFunctionsFunctionApp",
"group": "1_subscriptionGeneralCommands@2"
}
]
}
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/archiver": "^2.0.0",
"@types/node": "^8.0.28",
"typescript": "^2.0.3",
"vscode": "^1.0.0"
},
"dependencies": {
"archiver": "^2.0.3",
"azure-arm-resource": "^2.0.0-preview",
"azure-arm-website": "^1.0.0-preview",
"ms-rest": "^2.2.2",
"ms-rest-azure": "^2.3.1",
"opn": "^5.1.0",
"vscode-extension-telemetry": "^0.0.6"
},
"extensionDependencies": [
"ms-vscode.azure-account"
]
}