vscode-azurefunctions/package.json

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

{
"name": "vscode-azurefunctions",
"displayName": "Azure Functions",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.description%",
2020-09-22 21:46:36 +03:00
"version": "0.24.2-alpha",
"publisher": "ms-azuretools",
2017-09-27 19:31:25 +03:00
"icon": "resources/azure-functions.png",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": {
2020-08-05 00:28:08 +03:00
"vscode": "^1.48.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-azurefunctions"
},
"galleryBanner": {
2019-11-22 03:39:45 +03:00
"color": "#3a3d41",
"theme": "dark"
},
"homepage": "https://github.com/Microsoft/vscode-azurefunctions/blob/main/README.md",
"license": "SEE LICENSE IN LICENSE.md",
"categories": [
"Azure"
],
2017-11-01 19:19:29 +03:00
"keywords": [
"Azure",
"Functions",
2019-03-30 02:48:39 +03:00
"serverless",
2017-11-01 19:19:29 +03:00
"multi-root ready"
],
"preview": true,
"activationEvents": [
"onCommand:azureFunctions.refresh",
"onCommand:azureFunctions.loadMore",
"onCommand:azureFunctions.createNewProject",
"onCommand:azureFunctions.initProjectForVSCode",
2017-09-22 21:44:35 +03:00
"onCommand:azureFunctions.createFunction",
"onCommand:azureFunctions.createFunctionApp",
"onCommand:azureFunctions.createFunctionAppAdvanced",
2017-09-22 21:44:35 +03:00
"onCommand:azureFunctions.openInPortal",
2020-01-17 23:57:27 +03:00
"onCommand:azureFunctions.browseWebsite",
2017-09-22 21:44:35 +03:00
"onCommand:azureFunctions.startFunctionApp",
"onCommand:azureFunctions.stopFunctionApp",
"onCommand:azureFunctions.restartFunctionApp",
2017-11-09 06:24:53 +03:00
"onCommand:azureFunctions.deleteFunctionApp",
"onCommand:azureFunctions.deleteSlot",
"onCommand:azureFunctions.copyFunctionUrl",
"onCommand:azureFunctions.executeFunction",
2019-07-30 23:54:28 +03:00
"onCommand:azureFunctions.viewProperties",
"onCommand:azureFunctions.deleteFunction",
"onCommand:azureFunctions.enableFunction",
"onCommand:azureFunctions.disableFunction",
"onCommand:azureFunctions.deploy",
"onCommand:azureFunctions.deploySlot",
"onCommand:azureFunctions.configureDeploymentSource",
"onCommand:azureFunctions.startRemoteDebug",
"onCommand:azureFunctions.startJavaRemoteDebug",
"onCommand:azureFunctions.appSettings.add",
2018-04-04 02:20:06 +03:00
"onCommand:azureFunctions.appSettings.download",
"onCommand:azureFunctions.appSettings.upload",
"onCommand:azureFunctions.appSettings.edit",
"onCommand:azureFunctions.appSettings.rename",
"onCommand:azureFunctions.appSettings.delete",
2018-04-04 02:20:06 +03:00
"onCommand:azureFunctions.appSettings.encrypt",
"onCommand:azureFunctions.appSettings.decrypt",
"onCommand:azureFunctions.appSettings.toggleSlotSetting",
"onCommand:azureFunctions.pickProcess",
2018-02-06 22:47:12 +03:00
"onCommand:azureFunctions.startStreamingLogs",
"onCommand:azureFunctions.stopStreamingLogs",
2018-02-27 00:15:31 +03:00
"onCommand:azureFunctions.deleteProxy",
"onCommand:azureFunctions.uninstallFuncCoreTools",
2018-09-13 19:46:31 +03:00
"onCommand:azureFunctions.installOrUpdateFuncCoreTools",
"onCommand:azureFunctions.viewDeploymentLogs",
"onCommand:azureFunctions.redeploy",
2019-03-21 00:59:51 +03:00
"onCommand:azureFunctions.viewCommitInGitHub",
"onCommand:azureFunctions.disconnectRepo",
"onCommand:azureFunctions.connectToGitHub",
2018-12-01 01:38:47 +03:00
"onCommand:azureFunctions.createSlot",
"onCommand:azureFunctions.swapSlot",
"onCommand:azureFunctions.addBinding",
"onCommand:azureFunctions.setAzureWebJobsStorage",
"workspaceContains:host.json",
"workspaceContains:*/host.json",
"onView:azFuncTree",
"onDebugInitialConfigurations"
],
"main": "./main.js",
"contributes": {
"commands": [
2018-03-24 04:53:10 +03:00
{
"command": "azureFunctions.selectSubscriptions",
"title": "Select Subscriptions...",
"icon": {
"light": "resources/light/filter.svg",
"dark": "resources/dark/filter.svg"
}
},
{
"command": "azureFunctions.refresh",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.refresh%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/Refresh.svg",
"dark": "resources/dark/Refresh.svg"
}
},
{
"command": "azureFunctions.loadMore",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.loadMore%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.createNewProject",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.createNewProject%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/CreateNewProject.svg",
"dark": "resources/dark/CreateNewProject.svg"
}
},
{
"command": "azureFunctions.initProjectForVSCode",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.initProjectForVSCode%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.createFunction",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.createFunction%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/AddFunction.svg",
"dark": "resources/dark/AddFunction.svg"
}
},
{
"command": "azureFunctions.createFunctionApp",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.createFunctionApp%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.createFunctionAppAdvanced",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.createFunctionAppAdvanced%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.openInPortal",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.openInPortal%",
"category": "Azure Functions"
2017-09-22 21:44:35 +03:00
},
2020-01-17 23:57:27 +03:00
{
"command": "azureFunctions.browseWebsite",
"title": "%azureFunctions.browseWebsite%",
"category": "Azure Functions"
},
2017-09-22 21:44:35 +03:00
{
"command": "azureFunctions.startFunctionApp",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.startFunctionApp%",
2017-09-22 21:44:35 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.stopFunctionApp",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.stopFunctionApp%",
2017-09-22 21:44:35 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.restartFunctionApp",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.restartFunctionApp%",
2017-09-22 21:44:35 +03:00
"category": "Azure Functions"
},
2017-11-09 06:24:53 +03:00
{
"command": "azureFunctions.deleteFunctionApp",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.deleteFunctionApp%",
2017-11-09 06:24:53 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.deleteSlot",
"title": "%azureFunctions.deleteSlot%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.deploy",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.deploy%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/Deploy.svg",
"dark": "resources/dark/Deploy.svg"
}
},
{
"command": "azureFunctions.deploySlot",
"title": "%azureFunctions.deploySlot%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.configureDeploymentSource",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.configureDeploymentSource%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.startRemoteDebug",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.startRemoteDebug%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.startJavaRemoteDebug",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.startJavaRemoteDebug%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.copyFunctionUrl",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.copyFunctionUrl%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.executeFunction",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.executeFunction%",
"category": "Azure Functions"
},
2019-07-30 23:54:28 +03:00
{
"command": "azureFunctions.viewProperties",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.viewProperties%",
2019-07-30 23:54:28 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.deleteFunction",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.deleteFunction%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.enableFunction",
"title": "%azureFunctions.enableFunction%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.disableFunction",
"title": "%azureFunctions.disableFunction%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.add",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.add%",
"category": "Azure Functions"
},
2018-04-04 02:20:06 +03:00
{
"command": "azureFunctions.appSettings.download",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.download%",
2018-04-04 02:20:06 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.upload",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.upload%",
2018-04-04 02:20:06 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.edit",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.edit%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.rename",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.rename%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.delete",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.delete%",
"category": "Azure Functions"
},
2018-04-04 02:20:06 +03:00
{
"command": "azureFunctions.appSettings.encrypt",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.encrypt%",
2018-04-04 02:20:06 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.decrypt",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.decrypt%",
2018-04-04 02:20:06 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.toggleSlotSetting",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.appSettings.toggleSlotSetting%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.pickProcess",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.pickProcess%",
"category": "Azure Functions"
},
2018-02-06 22:47:12 +03:00
{
"command": "azureFunctions.startStreamingLogs",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.startStreamingLogs%",
2018-02-06 22:47:12 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.stopStreamingLogs",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.stopStreamingLogs%",
2018-02-06 22:47:12 +03:00
"category": "Azure Functions"
2018-02-27 00:15:31 +03:00
},
{
"command": "azureFunctions.deleteProxy",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.deleteProxy%",
2018-02-27 00:15:31 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.uninstallFuncCoreTools",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.uninstallFuncCoreTools%",
"category": "Azure Functions"
2018-09-13 19:46:31 +03:00
},
{
"command": "azureFunctions.installOrUpdateFuncCoreTools",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.installOrUpdateFuncCoreTools%",
2018-09-13 19:46:31 +03:00
"category": "Azure Functions"
2018-12-01 01:38:47 +03:00
},
{
"command": "azureFunctions.redeploy",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.redeploy%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.viewDeploymentLogs",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.viewDeploymentLogs%",
2020-02-07 22:45:50 +03:00
"category": "Azure Functions"
},
2019-03-21 00:59:51 +03:00
{
"command": "azureFunctions.viewCommitInGitHub",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.viewCommitInGitHub%",
2019-03-21 00:59:51 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.connectToGitHub",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.connectToGitHub%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.disconnectRepo",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.disconnectRepo%",
"category": "Azure Functions"
},
2018-12-01 01:38:47 +03:00
{
"command": "azureFunctions.createSlot",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.createSlot%",
2018-12-01 01:38:47 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.swapSlot",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.swapSlot%",
2018-12-01 01:38:47 +03:00
"category": "Azure Functions"
2019-01-15 00:52:09 +03:00
},
{
"command": "azureFunctions.toggleAppSettingVisibility",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.toggleAppSettingVisibility%",
2019-01-15 00:52:09 +03:00
"category": "Azure Functions",
"icon": {
"light": "resources/light/Visible.svg",
"dark": "resources/dark/Visible.svg"
}
},
{
"command": "azureFunctions.addBinding",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.addBinding%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.setAzureWebJobsStorage",
2019-10-01 21:25:56 +03:00
"title": "%azureFunctions.setAzureWebJobsStorage%",
"category": "Azure Functions"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "azure",
"title": "Azure",
"icon": "resources/azure.svg"
}
]
},
"views": {
"azure": [
{
"id": "azFuncTree",
"name": "Functions",
2017-10-04 19:52:07 +03:00
"when": "config.azureFunctions.showExplorer == true"
}
]
},
"menus": {
"view/title": [
{
"command": "azureFunctions.createNewProject",
"when": "view == azFuncTree",
"group": "navigation@1"
},
{
"command": "azureFunctions.createFunction",
"when": "view == azFuncTree",
"group": "navigation@2"
},
{
"command": "azureFunctions.deploy",
"when": "view == azFuncTree",
"group": "navigation@3"
},
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree",
"group": "navigation@3"
}
],
"view/item/context": [
{
2018-03-24 04:53:10 +03:00
"command": "azureFunctions.selectSubscriptions",
"when": "view == azFuncTree && viewItem == azureextensionui.azureSubscription",
2018-03-24 04:53:10 +03:00
"group": "inline"
},
{
"command": "azureFunctions.createFunctionApp",
"when": "view == azFuncTree && viewItem == azureextensionui.azureSubscription",
"group": "1@1"
},
{
"command": "azureFunctions.createFunctionAppAdvanced",
"when": "view == azFuncTree && viewItem == azureextensionui.azureSubscription",
"group": "1@2"
},
{
"command": "azureFunctions.openInPortal",
"when": "view == azFuncTree && viewItem == azureextensionui.azureSubscription",
"group": "2@1"
},
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem == azureextensionui.azureSubscription",
"group": "3@1"
},
{
"command": "azureFunctions.openInPortal",
"when": "view == azFuncTree && viewItem == azFuncProductionSlot",
"group": "1@1"
2017-09-22 21:44:35 +03:00
},
2020-01-17 23:57:27 +03:00
{
"command": "azureFunctions.browseWebsite",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "1@2"
},
2017-09-22 21:44:35 +03:00
{
"command": "azureFunctions.startFunctionApp",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "2@1"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.stopFunctionApp",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "2@2"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.restartFunctionApp",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "2@3"
2017-11-09 06:24:53 +03:00
},
2018-12-01 01:38:47 +03:00
{
"command": "azureFunctions.swapSlot",
"when": "view == azFuncTree && viewItem == azFuncSlot",
2018-12-01 01:38:47 +03:00
"group": "2@4"
},
{
"command": "azureFunctions.deleteFunctionApp",
"when": "view == azFuncTree && viewItem == azFuncProductionSlot",
"group": "2@5"
},
{
"command": "azureFunctions.deleteSlot",
"when": "view == azFuncTree && viewItem == azFuncSlot",
2018-12-01 01:38:47 +03:00
"group": "2@5"
},
{
2018-03-30 01:56:26 +03:00
"command": "azureFunctions.deploy",
"when": "view == azFuncTree && viewItem == azFuncProductionSlot",
"group": "3@1"
},
{
"command": "azureFunctions.deploySlot",
"when": "view == azFuncTree && viewItem == azFuncSlot",
"group": "3@1"
},
2018-03-30 01:56:26 +03:00
{
"command": "azureFunctions.configureDeploymentSource",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
2018-03-30 01:56:26 +03:00
"group": "3@2"
},
2018-02-06 22:47:12 +03:00
{
"command": "azureFunctions.startStreamingLogs",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
2018-02-06 22:47:12 +03:00
"group": "4@1"
},
{
"command": "azureFunctions.stopStreamingLogs",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
2018-02-06 22:47:12 +03:00
"group": "4@2"
},
2017-11-09 06:24:53 +03:00
{
"command": "azureFunctions.startRemoteDebug",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/ && config.azureFunctions.enableRemoteDebugging == true",
"group": "5@1"
},
{
"command": "azureFunctions.startJavaRemoteDebug",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/ && config.azureFunctions.enableJavaRemoteDebugging == true",
"group": "5@2"
},
{
2019-07-30 23:54:28 +03:00
"command": "azureFunctions.viewProperties",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "6@1"
},
2019-07-30 23:54:28 +03:00
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "6@2"
},
2018-11-16 00:45:29 +03:00
{
2018-12-01 01:38:47 +03:00
"command": "azureFunctions.createSlot",
"when": "view == azFuncTree && viewItem == azFuncSlots",
2018-11-16 00:45:29 +03:00
"group": "1@1"
},
2018-12-01 01:38:47 +03:00
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem == azFuncSlots",
2018-12-01 01:38:47 +03:00
"group": "2@1"
},
{
"command": "azureFunctions.refresh",
2019-07-30 23:54:28 +03:00
"when": "view == azFuncTree && viewItem =~ /Functions;/i",
"group": "1@1"
},
{
"command": "azureFunctions.copyFunctionUrl",
2019-07-30 23:54:28 +03:00
"when": "view == azFuncTree && viewItem =~ /Function;Http;/i",
"group": "1@1"
},
{
"command": "azureFunctions.executeFunction",
"when": "view == azFuncTree && viewItem =~ /Function;/i",
"group": "1@1"
},
2020-02-07 22:04:19 +03:00
{
"command": "azureFunctions.addBinding",
"when": "view == azFuncTree && viewItem =~ /Local;ReadWrite;Function;/i",
"group": "3@1"
},
{
"command": "azureFunctions.enableFunction",
"when": "view == azFuncTree && viewItem =~ /Function;.*;Disabled;/i",
"group": "2@1"
},
{
"command": "azureFunctions.disableFunction",
"when": "view == azFuncTree && viewItem =~ /Function;.*;Enabled;/i",
2020-02-07 22:04:19 +03:00
"group": "2@1"
},
{
"command": "azureFunctions.deleteFunction",
2019-07-30 23:54:28 +03:00
"when": "view == azFuncTree && viewItem =~ /Remote;ReadWrite;Function;/i",
"group": "2@2"
2018-02-06 22:47:12 +03:00
},
{
"command": "azureFunctions.startStreamingLogs",
2019-07-30 23:54:28 +03:00
"when": "view == azFuncTree && viewItem =~ /Remote;.*;Function;/i",
2018-02-06 22:47:12 +03:00
"group": "3@1"
},
{
"command": "azureFunctions.stopStreamingLogs",
2019-07-30 23:54:28 +03:00
"when": "view == azFuncTree && viewItem =~ /Remote;.*;Function;/i",
2018-02-06 22:47:12 +03:00
"group": "3@2"
},
{
"command": "azureFunctions.viewProperties",
"when": "view == azFuncTree && viewItem =~ /Remote;.*;Function;/i",
"group": "4@1"
},
{
"command": "azureFunctions.appSettings.add",
"when": "view == azFuncTree && viewItem == applicationSettings",
"group": "1@1"
},
2018-04-04 02:20:06 +03:00
{
"command": "azureFunctions.appSettings.download",
"when": "view == azFuncTree && viewItem == applicationSettings",
2018-04-04 02:20:06 +03:00
"group": "1@2"
},
{
"command": "azureFunctions.appSettings.upload",
"when": "view == azFuncTree && viewItem == applicationSettings",
2018-04-04 02:20:06 +03:00
"group": "1@3"
},
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem == applicationSettings",
"group": "2@1"
},
{
"command": "azureFunctions.appSettings.edit",
"when": "view == azFuncTree && viewItem == applicationSettingItem",
"group": "1@1"
},
{
"command": "azureFunctions.appSettings.rename",
"when": "view == azFuncTree && viewItem == applicationSettingItem",
"group": "1@2"
},
{
"command": "azureFunctions.appSettings.delete",
"when": "view == azFuncTree && viewItem == applicationSettingItem",
"group": "1@3"
2018-02-27 00:15:31 +03:00
},
{
"command": "azureFunctions.appSettings.toggleSlotSetting",
2019-10-08 23:33:02 +03:00
"when": "view == azFuncTree && viewItem == applicationSettingItem",
"group": "1@4"
},
2019-01-15 00:52:09 +03:00
{
"command": "azureFunctions.toggleAppSettingVisibility",
"when": "view == azFuncTree && viewItem == applicationSettingItem",
2019-01-15 00:52:09 +03:00
"group": "inline"
},
2018-02-27 00:15:31 +03:00
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem == azFuncProxies",
2018-02-27 00:15:31 +03:00
"group": "1@1"
},
{
"command": "azureFunctions.deleteProxy",
"when": "view == azFuncTree && viewItem == azFuncProxy",
2018-02-27 00:15:31 +03:00
"group": "1@1"
},
{
"command": "azureFunctions.disconnectRepo",
"when": "view == azFuncTree && viewItem == deploymentsConnected",
"group": "1@2"
},
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem =~ /^deployments(C|Unc)onnected$/",
"group": "2@1"
},
{
"command": "azureFunctions.viewDeploymentLogs",
"when": "view == azFuncTree && viewItem =~ /^deployment//",
"group": "1@1"
},
{
"command": "azureFunctions.redeploy",
"when": "view == azFuncTree && viewItem =~ /^deployment//",
"group": "1@2"
},
{
"command": "azureFunctions.openInPortal",
"when": "view == azFuncTree && viewItem =~ /^deployment//",
"group": "1@3"
},
2019-03-21 00:59:51 +03:00
{
"command": "azureFunctions.viewCommitInGitHub",
"when": "view == azFuncTree && viewItem == deployment/github",
"group": "1@4"
2019-03-21 00:59:51 +03:00
},
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem == siteFiles",
"group": "1@1"
},
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem == logFiles",
"group": "1@1"
},
{
"command": "azureFunctions.refresh",
"when": "view == azFuncTree && viewItem == folder",
"group": "1@1"
}
],
"explorer/context": [
{
"command": "azureFunctions.deploy",
"when": "explorerResourceIsFolder == true",
2018-11-29 01:54:28 +03:00
"group": "zzz_azuretools_deploy@2"
2018-04-04 02:20:06 +03:00
},
{
"command": "azureFunctions.appSettings.decrypt",
"when": "resourceFilename==local.settings.json",
2018-11-29 01:54:28 +03:00
"group": "zzz_appSettings@1"
2018-04-04 02:20:06 +03:00
},
{
"command": "azureFunctions.appSettings.encrypt",
"when": "resourceFilename==local.settings.json",
2018-11-29 01:54:28 +03:00
"group": "zzz_appSettings@2"
},
{
"command": "azureFunctions.addBinding",
"when": "resourceFilename==function.json",
"group": "zzz_binding@1"
}
],
"commandPalette": [
{
"command": "azureFunctions.selectSubscriptions",
"when": "never"
},
{
"command": "azureFunctions.refresh",
"when": "never"
},
{
"command": "azureFunctions.loadMore",
"when": "never"
},
{
"command": "azureFunctions.pickProcess",
"when": "never"
},
{
"command": "azureFunctions.startRemoteDebug",
"when": "config.azureFunctions.enableRemoteDebugging == true"
2018-12-01 01:38:47 +03:00
},
{
"command": "azureFunctions.startJavaRemoteDebug",
"when": "config.azureFunctions.enableJavaRemoteDebugging == true"
},
2019-01-15 00:52:09 +03:00
{
"command": "azureFunctions.toggleAppSettingVisibility",
"when": "never"
}
],
"editor/context": [
{
"command": "azureFunctions.addBinding",
"when": "resourceFilename==function.json",
"group": "zzz_binding@1"
}
]
2017-09-27 20:45:48 +03:00
},
"jsonValidation": [
{
"fileMatch": "/function.json",
"url": "http://json.schemastore.org/function"
},
{
"fileMatch": "/host.json",
"url": "http://json.schemastore.org/host"
},
{
"fileMatch": "/proxies.json",
"url": "http://json.schemastore.org/proxies"
}
2017-10-04 19:52:07 +03:00
],
"taskDefinitions": [
{
"type": "func",
"required": [
"command"
],
"properties": {
"command": {
"type": "string"
}
}
}
],
"problemPatterns": [
{
"name": "func",
"kind": "file",
"regexp": "^.*Missing.*AzureWebJobsStorage.*(local.settings.json).*$",
"file": 1,
"message": 0
}
],
"problemMatchers": [
{
"name": "func-watch",
2019-10-01 21:25:56 +03:00
"label": "%azureFunctions.problemMatchers.funcWatch%",
"owner": "Azure Functions",
"source": "func",
"applyTo": "allDocuments",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": "$func",
"background": {
"activeOnStart": true,
"beginsPattern": "^.*(Job host stopped|signaling restart).*$",
"endsPattern": "^.*(Worker process started and initialized|Host lock lease acquired by instance ID).*$"
},
"severity": "error"
}
],
2018-10-04 21:09:49 +03:00
"keybindings": [
{
"command": "workbench.view.extension.azure",
"key": "ctrl+shift+a",
"mac": "cmd+shift+a",
"linux": "shift+alt+a"
2018-10-04 21:09:49 +03:00
}
],
2017-10-04 19:52:07 +03:00
"configuration": [
{
"title": "Azure Functions",
"properties": {
"azureFunctions.showExplorer": {
"type": "boolean",
"default": true,
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.showExplorer%"
},
"azureFunctions.templateFilter": {
"scope": "resource",
"type": "string",
"default": "Verified",
"enum": [
"Verified",
"Core",
"All"
],
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.templateFilter%"
2017-12-13 02:53:57 +03:00
},
"azureFunctions.projectRuntime": {
"scope": "resource",
"type": "string",
"enum": [
"~1",
2018-09-13 01:11:35 +03:00
"~2",
"~3"
],
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.projectRuntime%",
2018-09-13 01:11:35 +03:00
"enumDescriptions": [
2019-10-01 21:25:56 +03:00
"%azureFunctions.projectRuntime.v1%",
"%azureFunctions.projectRuntime.v2%",
"%azureFunctions.projectRuntime.v3%"
2018-09-13 01:11:35 +03:00
]
},
"azureFunctions.projectLanguage": {
"scope": "resource",
"type": "string",
"enum": [
"C#",
"F#",
"C#Script",
"F#Script",
"Java",
"JavaScript",
"PowerShell",
"Python",
2020-08-21 22:14:56 +03:00
"TypeScript",
"Custom"
],
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.projectLanguage%",
2018-09-13 01:11:35 +03:00
"enumDescriptions": [
"",
"",
2019-10-01 21:25:56 +03:00
"%azureFunctions.projectLanguage.preview%",
"%azureFunctions.projectLanguage.preview%",
2018-09-13 01:11:35 +03:00
"",
"",
"",
2019-08-13 23:43:53 +03:00
"",
2020-08-21 22:14:56 +03:00
"",
"%azureFunctions.projectLanguage.preview%"
2018-09-13 01:11:35 +03:00
]
},
2018-01-25 00:24:29 +03:00
"azureFunctions.deploySubpath": {
"scope": "resource",
"type": "string",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.deploySubpath%"
},
"azureFunctions.projectSubpath": {
"scope": "resource",
"type": "string",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.projectSubpath%"
},
"azureFunctions.showCoreToolsWarning": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.showCoreToolsWarning%",
"default": true
},
"azureFunctions.showMultiCoreToolsWarning": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.showMultiCoreToolsWarning%",
"default": true
},
"azureFunctions.show64BitWarning": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.show64BitWarning%",
"default": true
},
"azureFunctions.enableRemoteDebugging": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.enableRemoteDebugging%",
"default": false
},
"azureFunctions.enableJavaRemoteDebugging": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.enableJavaRemoteDebugging%",
"default": false
},
"azureFunctions.showProjectWarning": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.showProjectWarning%",
"default": true
},
"azureFunctions.showPythonVenvWarning": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.showPythonVenvWarning%",
"default": true
},
"azureFunctions.showDeploySubpathWarning": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.showDeploySubpathWarning%",
"default": true
},
"azureFunctions.showTargetFrameworkWarning": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.showTargetFrameworkWarning%",
"default": true
},
"azureFunctions.showExtensionsCsprojWarning": {
"type": "boolean",
"description": "%azureFunctions.showExtensionsCsprojWarning%",
"default": true
},
2018-03-02 01:33:02 +03:00
"azureFunctions.pickProcessTimeout": {
"type": "integer",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.pickProcessTimeout%",
2018-03-02 01:33:02 +03:00
"default": 60
},
"azureFunctions.templateVersion": {
"type": "string",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.templateVersion%"
},
"azureFunctions.projectOpenBehavior": {
"type": "string",
"enum": [
"AddToWorkspace",
"OpenInNewWindow",
"OpenInCurrentWindow"
],
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.projectOpenBehavior%"
},
"azureFunctions.preDeployTask": {
"scope": "resource",
"type": "string",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.preDeployTask%"
},
"azureFunctions.postDeployTask": {
"scope": "resource",
"type": "string",
"description": "%azureFunctions.postDeployTask%"
},
"azureFunctions.pythonVenv": {
"scope": "resource",
"type": "string",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.pythonVenv%"
2018-11-16 00:45:29 +03:00
},
"azureFunctions.createPythonVenv": {
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.createPythonVenv%",
"default": true
},
"azureFunctions.scmDoBuildDuringDeployment": {
"scope": "resource",
"type": "boolean",
2019-10-01 21:25:56 +03:00
"description": "%azureFunctions.scmDoBuildDuringDeployment%"
},
"azureFunctions.enableOutputTimestamps": {
"type": "boolean",
"description": "%azureFunctions.enableOutputTimestamps%",
"default": true
},
"azureFunctions.stopFuncTaskPostDebug": {
"type": "boolean",
"description": "%azureFunctions.stopFuncTaskPostDebug%",
"default": true
},
"azureFunctions.showDeployConfirmation": {
"type": "boolean",
"description": "%azureFunctions.showDeployConfirmation%",
"default": true
},
"azureFunctions.validateFuncCoreTools": {
"type": "boolean",
"description": "%azureFunctions.validateFuncCoreTools%",
"default": true
},
"azureFunctions.requestTimeout": {
"type": "number",
"description": "%azureFunctions.requestTimeout%",
"default": 15
},
"azureFunctions.defaultFunctionAppToDeploy": {
"scope": "resource",
"type": "string",
"description": "The default function app to use when deploying, represented by its full Azure id. Every subsequent deployment of this workspace will deploy to this function app or slot."
2017-10-04 19:52:07 +03:00
}
}
}
2017-09-27 20:45:48 +03:00
]
},
"scripts": {
"vscode:prepublish": "npm run webpack-prod",
"build": "tsc",
"compile": "tsc -watch",
"cleanReadme": "gulp cleanReadme",
"package": "vsce package",
"lint": "tslint --project tsconfig.json -t verbose",
"lint-fix": "tslint --project tsconfig.json -t verbose --fix",
"pretest": "npm run webpack-prod && gulp preTest",
"test": "node ./out/test/runTest.js",
"webpack": "npm run build && gulp webpack-dev",
"webpack-prod": "npm run build && gulp webpack-prod",
"webpack-profile": "webpack --profile --json --mode production > webpack-stats.json && echo Use http://webpack.github.io/analyse to analyze the stats",
"all": "npm i && npm run lint && npm test"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/glob": "^7.1.1",
"@types/gulp": "^4.0.6",
"@types/gulp-filter": "^3.0.33",
"@types/mocha": "^7.0.2",
"@types/node": "^12.0.0",
"@types/p-retry": "^3.0.1",
"@types/ps-tree": "^1.1.0",
"@types/request": "2.0.7",
"@types/semver": "^5.5.0",
"@types/vscode": "1.48.0",
"@types/websocket": "^1.0.0",
2020-01-29 20:20:41 +03:00
"@types/xml2js": "^0.4.5",
2019-08-29 18:31:03 +03:00
"@types/xregexp": "^3.0.30",
2020-08-05 00:28:08 +03:00
"@azure/arm-resources": "^3.0.0",
2020-08-21 21:24:23 +03:00
"copy-webpack-plugin": "^6.0.3",
"glob": "^7.1.6",
2019-08-29 18:31:03 +03:00
"gulp": "^4.0.2",
"gulp-chmod": "^2.0.0",
2020-01-29 20:20:41 +03:00
"gulp-decompress": "^2.0.3",
"gulp-filter": "^5.1.0",
"mocha": "^7.1.1",
2020-01-29 20:20:41 +03:00
"mocha-junit-reporter": "^1.23.3",
"mocha-multi-reporters": "^1.1.7",
2020-08-05 00:28:08 +03:00
"request": "^2.88.2",
"ts-node": "^7.0.1",
2020-01-29 20:20:41 +03:00
"tslint": "^5.20.1",
2019-08-29 18:31:03 +03:00
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
2020-01-29 20:20:41 +03:00
"vsce": "^1.71.0",
2020-08-05 00:28:08 +03:00
"vscode-azureextensiondev": "^0.5.0",
"vscode-test": "^1.3.0",
2020-01-29 20:20:41 +03:00
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
2020-08-05 00:28:08 +03:00
"@azure/arm-appinsights": "^2.1.0",
"@azure/arm-appservice": "^6.0.0",
"@azure/arm-cosmosdb": "^9.0.0",
"@azure/arm-eventhub": "^3.2.0",
"@azure/arm-servicebus": "^3.2.0",
"@azure/arm-storage": "^15.0.0",
"@azure/ms-rest-js": "^2.0.7",
"azure-storage": "^2.10.3",
"escape-string-regexp": "^4.0.0",
"extract-zip": "^1.6.6",
"fs-extra": "^4.0.2",
"jsonc-parser": "^2.3.1",
"opn": "^6.0.0",
"p-retry": "^4.1.0",
"portfinder": "^1.0.23",
"ps-tree": "^1.1.1",
2019-08-29 18:31:03 +03:00
"semver": "^5.7.1",
2020-09-10 23:06:11 +03:00
"vscode-azureappservice": "^0.66.2",
2020-09-16 02:25:23 +03:00
"vscode-azureextensionui": "^0.35.1",
2020-08-05 00:28:08 +03:00
"vscode-azurekudu": "^0.2.0",
2019-08-29 18:31:03 +03:00
"vscode-nls": "^4.1.1",
"websocket": "^1.0.29",
2018-01-20 03:15:14 +03:00
"xml2js": "^0.4.19",
"xregexp": "^4.0.0"
},
"extensionDependencies": [
"ms-vscode.azure-account"
]
}