vscode-azurefunctions/package.json

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

{
"name": "vscode-azurefunctions",
"displayName": "Azure Functions",
2017-10-02 19:32:53 +03:00
"description": "%extension.description%",
"version": "0.16.1-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": {
"vscode": "^1.31.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"
],
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",
2017-09-22 21:44:35 +03:00
"onCommand:azureFunctions.openInPortal",
"onCommand:azureFunctions.startFunctionApp",
"onCommand:azureFunctions.stopFunctionApp",
"onCommand:azureFunctions.restartFunctionApp",
2017-11-09 06:24:53 +03:00
"onCommand:azureFunctions.deleteFunctionApp",
"onCommand:azureFunctions.copyFunctionUrl",
"onCommand:azureFunctions.deleteFunction",
"onCommand:azureFunctions.deploy",
"onCommand:azureFunctions.configureDeploymentSource",
"onCommand:azureFunctions.debugFunctionAppOnAzure",
"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",
"workspaceContains:host.json",
"workspaceContains:*/host.json",
"onView:azureFunctionsExplorer",
"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",
2017-10-02 19:32:53 +03:00
"title": "%azFunc.refresh%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/Refresh.svg",
"dark": "resources/dark/Refresh.svg"
}
},
{
"command": "azureFunctions.loadMore",
"title": "%azFunc.loadMore%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.createNewProject",
"title": "%azFunc.createNewProject%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/CreateNewProject.svg",
"dark": "resources/dark/CreateNewProject.svg"
}
},
{
"command": "azureFunctions.initProjectForVSCode",
"title": "%azFunc.initProjectForVSCode%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.createFunction",
2017-10-02 19:32:53 +03:00
"title": "%azFunc.createFunction%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/AddFunction.svg",
"dark": "resources/dark/AddFunction.svg"
}
},
{
"command": "azureFunctions.createFunctionApp",
"title": "%azFunc.createFunctionApp%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.openInPortal",
2017-10-02 19:32:53 +03:00
"title": "%azFunc.openInPortal%",
"category": "Azure Functions"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.startFunctionApp",
2017-10-02 19:32:53 +03:00
"title": "%azFunc.startFunctionApp%",
2017-09-22 21:44:35 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.stopFunctionApp",
2017-10-02 19:32:53 +03:00
"title": "%azFunc.stopFunctionApp%",
2017-09-22 21:44:35 +03:00
"category": "Azure Functions"
},
{
"command": "azureFunctions.restartFunctionApp",
2017-10-02 19:32:53 +03:00
"title": "%azFunc.restartFunctionApp%",
2017-09-22 21:44:35 +03:00
"category": "Azure Functions"
},
2017-11-09 06:24:53 +03:00
{
"command": "azureFunctions.deleteFunctionApp",
"title": "%azFunc.deleteFunctionApp%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.deploy",
"title": "%azFunc.deploy%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/Deploy.svg",
"dark": "resources/dark/Deploy.svg"
}
},
{
"command": "azureFunctions.configureDeploymentSource",
"title": "%azFunc.configureDeploymentSource%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.debugFunctionAppOnAzure",
"title": "%azFunc.debugFunctionAppOnAzure%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.copyFunctionUrl",
"title": "%azFunc.copyFunctionUrl%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.deleteFunction",
"title": "%azFunc.deleteFunction%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.add",
"title": "%azFunc.appSettings.add%",
"category": "Azure Functions"
},
2018-04-04 02:20:06 +03:00
{
"command": "azureFunctions.appSettings.download",
"title": "%azFunc.appSettings.download%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.upload",
"title": "%azFunc.appSettings.upload%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.edit",
"title": "%azFunc.appSettings.edit%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.rename",
"title": "%azFunc.appSettings.rename%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.delete",
"title": "%azFunc.appSettings.delete%",
"category": "Azure Functions"
},
2018-04-04 02:20:06 +03:00
{
"command": "azureFunctions.appSettings.encrypt",
"title": "%azFunc.appSettings.encrypt%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.decrypt",
"title": "%azFunc.appSettings.decrypt%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.appSettings.toggleSlotSetting",
"title": "%azFunc.appSettings.toggleSlotSetting%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.pickProcess",
"title": "%azFunc.pickProcess%",
"category": "Azure Functions"
},
2018-02-06 22:47:12 +03:00
{
"command": "azureFunctions.startStreamingLogs",
"title": "%azFunc.startStreamingLogs%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.stopStreamingLogs",
"title": "%azFunc.stopStreamingLogs%",
"category": "Azure Functions"
2018-02-27 00:15:31 +03:00
},
{
"command": "azureFunctions.deleteProxy",
"title": "%azFunc.deleteProxy%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.uninstallFuncCoreTools",
"title": "%azFunc.uninstallFuncCoreTools%",
"category": "Azure Functions"
2018-09-13 19:46:31 +03:00
},
{
"command": "azureFunctions.installOrUpdateFuncCoreTools",
"title": "%azFunc.installOrUpdateFuncCoreTools%",
"category": "Azure Functions"
2018-12-01 01:38:47 +03:00
},
{
"command": "azureFunctions.redeploy",
"title": "%azFunc.redeploy%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.viewDeploymentLogs",
"title": "%azFunc.viewDeploymentLogs%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/Log_16x.svg",
"dark": "resources/dark/Log_16x.svg"
}
},
2019-03-21 00:59:51 +03:00
{
"command": "azureFunctions.viewCommitInGitHub",
"title": "%azFunc.viewCommitInGitHub%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.connectToGitHub",
"title": "%azFunc.ConnectToGitHub%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.disconnectRepo",
"title": "%azFunc.disconnectRepo%",
"category": "Azure Functions"
},
2018-12-01 01:38:47 +03:00
{
"command": "azureFunctions.createSlot",
"title": "%azFunc.createSlot%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.swapSlot",
"title": "%azFunc.swapSlot%",
"category": "Azure Functions"
2019-01-15 00:52:09 +03:00
},
{
"command": "azureFunctions.toggleAppSettingVisibility",
"title": "%azFunc.toggleAppSettingVisibility%",
"category": "Azure Functions",
"icon": {
"light": "resources/light/Visible.svg",
"dark": "resources/dark/Visible.svg"
}
}
],
"viewsContainers": {
"activitybar": [
{
"id": "azure",
"title": "Azure",
"icon": "resources/azure.svg"
}
]
},
"views": {
"azure": [
{
"id": "azureFunctionsExplorer",
"name": "Functions",
2017-10-04 19:52:07 +03:00
"when": "config.azureFunctions.showExplorer == true"
}
]
},
"menus": {
"view/title": [
{
"command": "azureFunctions.createNewProject",
"when": "view == azureFunctionsExplorer",
"group": "navigation@1"
},
{
"command": "azureFunctions.createFunction",
"when": "view == azureFunctionsExplorer",
"group": "navigation@2"
},
{
"command": "azureFunctions.deploy",
"when": "view == azureFunctionsExplorer",
"group": "navigation@3"
},
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer",
"group": "navigation@3"
}
],
"view/item/context": [
{
2018-03-24 04:53:10 +03:00
"command": "azureFunctions.selectSubscriptions",
"when": "view == azureFunctionsExplorer && viewItem == azureextensionui.azureSubscription",
"group": "inline"
},
{
"command": "azureFunctions.createFunctionApp",
"when": "view == azureFunctionsExplorer && viewItem == azureextensionui.azureSubscription",
"group": "1@1"
},
{
"command": "azureFunctions.openInPortal",
"when": "view == azureFunctionsExplorer && viewItem == azureextensionui.azureSubscription",
"group": "2@1"
},
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem == azureextensionui.azureSubscription",
"group": "3@1"
},
{
"command": "azureFunctions.openInPortal",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem == azFuncProductionSlot",
"group": "1@1"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.startFunctionApp",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "2@1"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.stopFunctionApp",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "2@2"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.restartFunctionApp",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && 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 == azureFunctionsExplorer && viewItem == azFuncSlot",
"group": "2@4"
},
{
"command": "azureFunctions.deleteFunctionApp",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFunc(Production|)Slot$/",
2018-12-01 01:38:47 +03:00
"group": "2@5"
},
{
2018-03-30 01:56:26 +03:00
"command": "azureFunctions.deploy",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "3@1"
},
2018-03-30 01:56:26 +03:00
{
"command": "azureFunctions.configureDeploymentSource",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && 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",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFunc(Production|)Slot$/",
2018-02-06 22:47:12 +03:00
"group": "4@1"
},
{
"command": "azureFunctions.stopStreamingLogs",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && 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.debugFunctionAppOnAzure",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFunc(Production|)Slot$/ && config.azureFunctions.enableRemoteDebugging == true",
"group": "5@1"
},
{
"command": "azureFunctions.refresh",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFunc(Production|)Slot$/",
"group": "6@1"
},
2018-11-16 00:45:29 +03:00
{
2018-12-01 01:38:47 +03:00
"command": "azureFunctions.createSlot",
2018-11-16 00:45:29 +03:00
"when": "view == azureFunctionsExplorer && viewItem == azFuncSlots",
"group": "1@1"
},
2018-12-01 01:38:47 +03:00
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem == azFuncSlots",
"group": "2@1"
},
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctions",
"group": "1@1"
},
{
"command": "azureFunctions.copyFunctionUrl",
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFuncFunction(ReadOnly|)$/",
"group": "1@1"
},
{
"command": "azureFunctions.deleteFunction",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunction",
2018-02-06 22:47:12 +03:00
"group": "2@1"
},
{
"command": "azureFunctions.startStreamingLogs",
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFuncFunction(ReadOnly|)$/",
2018-02-06 22:47:12 +03:00
"group": "3@1"
},
{
"command": "azureFunctions.stopStreamingLogs",
"when": "view == azureFunctionsExplorer && viewItem =~ /^azFuncFunction(ReadOnly|)$/",
2018-02-06 22:47:12 +03:00
"group": "3@2"
},
{
"command": "azureFunctions.appSettings.add",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettings",
"group": "1@1"
},
2018-04-04 02:20:06 +03:00
{
"command": "azureFunctions.appSettings.download",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettings",
"group": "1@2"
},
{
"command": "azureFunctions.appSettings.upload",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettings",
"group": "1@3"
},
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettings",
"group": "2@1"
},
{
"command": "azureFunctions.appSettings.edit",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettingItem",
"group": "1@1"
},
{
"command": "azureFunctions.appSettings.rename",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettingItem",
"group": "1@2"
},
{
"command": "azureFunctions.appSettings.delete",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettingItem",
"group": "1@3"
2018-02-27 00:15:31 +03:00
},
{
"command": "azureFunctions.appSettings.toggleSlotSetting",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettingItem && config.azureFunctions.enableSlots == true",
"group": "1@4"
},
2019-01-15 00:52:09 +03:00
{
"command": "azureFunctions.toggleAppSettingVisibility",
"when": "view == azureFunctionsExplorer && viewItem == applicationSettingItem",
"group": "inline"
},
2018-02-27 00:15:31 +03:00
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem == azFuncProxies",
"group": "1@1"
},
{
"command": "azureFunctions.deleteProxy",
"when": "view == azureFunctionsExplorer && viewItem == azFuncProxy",
"group": "1@1"
},
{
"command": "azureFunctions.disconnectRepo",
"when": "view == azureFunctionsExplorer && viewItem == deploymentsConnected",
"group": "1@2"
},
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem =~ /^deployments(C|Unc)onnected$/",
"group": "2@1"
},
{
"command": "azureFunctions.redeploy",
2019-03-21 00:59:51 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^deployment//",
"group": "1@1"
},
{
"command": "azureFunctions.openInPortal",
2019-03-21 00:59:51 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^deployment//",
"group": "1@2"
},
2019-03-21 00:59:51 +03:00
{
"command": "azureFunctions.viewCommitInGitHub",
"when": "view == azureFunctionsExplorer && viewItem == deployment/github",
"group": "1@3"
},
{
"command": "azureFunctions.viewDeploymentLogs",
2019-03-21 00:59:51 +03:00
"when": "view == azureFunctionsExplorer && viewItem =~ /^deployment//",
"group": "inline"
}
],
"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"
}
],
"commandPalette": [
{
"command": "azureFunctions.selectSubscriptions",
"when": "never"
},
{
"command": "azureFunctions.refresh",
"when": "never"
},
{
"command": "azureFunctions.loadMore",
"when": "never"
},
{
"command": "azureFunctions.pickProcess",
"when": "never"
},
{
"command": "azureFunctions.debugFunctionAppOnAzure",
"when": "config.azureFunctions.enableRemoteDebugging == true"
2018-12-01 01:38:47 +03:00
},
{
"command": "azureFunctions.createSlot",
"when": "config.azureFunctions.enableSlots == true"
},
{
"command": "azureFunctions.swapSlot",
"when": "config.azureFunctions.enableSlots == true"
2019-01-15 00:52:09 +03:00
},
{
"command": "azureFunctions.toggleAppSettingVisibility",
"when": "never"
}
]
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",
"label": "%azFunc.problemMatchers.funcWatch.label%",
"owner": "Azure Functions",
"source": "func",
"applyTo": "allDocuments",
"fileLocation": [
"relative",
"${workspaceFolder}"
],
"pattern": "$func",
"background": {
"activeOnStart": true,
"beginsPattern": "^.*(Job host stopped|signaling restart).*$",
"endsPattern": "^.*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"
}
],
2017-10-04 19:52:07 +03:00
"configuration": [
{
"title": "Azure Functions",
"properties": {
"azureFunctions.showExplorer": {
"type": "boolean",
"default": true,
"description": "%azFunc.showExplorerDescription%"
},
"azureFunctions.templateFilter": {
"scope": "resource",
"type": "string",
"default": "Verified",
"enum": [
"Verified",
"Core",
"All"
],
"description": "%azFunc.templateFilterDescription%"
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",
"beta"
],
2018-09-13 01:11:35 +03:00
"description": "%azFunc.projectRuntimeDescription%",
"enumDescriptions": [
"%azFunc.projectRuntime.v1Description%",
"%azFunc.projectRuntime.v2Description%",
"%azFunc.projectRuntime.betaDescription%"
]
},
"azureFunctions.projectLanguage": {
"scope": "resource",
"type": "string",
"enum": [
"Bash",
"Batch",
"C#",
"F#",
"C#Script",
"F#Script",
"Java",
"JavaScript",
"PHP",
"PowerShell",
"Python",
"TypeScript"
],
2018-09-13 01:11:35 +03:00
"description": "%azFunc.projectLanguageDescription%",
"enumDescriptions": [
"%azFunc.projectLanguage.previewDescription%",
"%azFunc.projectLanguage.previewDescription%",
"",
"",
2018-09-13 01:11:35 +03:00
"%azFunc.projectLanguage.previewDescription%",
"%azFunc.projectLanguage.previewDescription%",
"",
"",
"%azFunc.projectLanguage.previewDescription%",
"%azFunc.projectLanguage.previewDescription%",
"%azFunc.projectLanguage.previewDescription%",
2019-02-27 20:29:36 +03:00
""
2018-09-13 01:11:35 +03:00
]
},
2018-01-25 00:24:29 +03:00
"azureFunctions.deploySubpath": {
"scope": "resource",
"type": "string",
2018-01-25 00:24:29 +03:00
"description": "%azFunc.deploySubpathDescription%"
},
"azureFunctions.projectSubpath": {
"scope": "resource",
"type": "string",
"description": "%azFunc.projectSubpathDescription%"
},
"azureFunctions.showCoreToolsWarning": {
"type": "boolean",
"description": "%azFunc.showCoreToolsWarningDescription%",
"default": true
},
"azureFunctions.showMultiCoreToolsWarning": {
"type": "boolean",
"description": "%azFunc.showMultiCoreToolsWarningDescription%",
"default": true
},
"azureFunctions.show64BitWarning": {
"type": "boolean",
"description": "%azFunc.show64BitWarningDescription%",
"default": true
},
"azureFunctions.enableRemoteDebugging": {
"type": "boolean",
"description": "%azFunc.enableRemoteDebugging%",
"default": false
},
"azureFunctions.showProjectWarning": {
"type": "boolean",
"description": "%azFunc.showProjectWarningDescription%",
"default": true
},
"azureFunctions.showDebugConfigWarning": {
"type": "boolean",
"description": "%azFunc.showDebugConfigWarningDescription%",
"default": true
2018-03-02 01:33:02 +03:00
},
"azureFunctions.showJavaDeployConfigWarning": {
"type": "boolean",
"description": "%azFunc.showJavaDeployConfigWarningDescription%",
"default": true
},
"azureFunctions.showPythonVenvWarning": {
"type": "boolean",
"description": "%azFunc.showPythonVenvWarningDescription%",
"default": true
},
"azureFunctions.showDeploySubpathWarning": {
"type": "boolean",
"description": "%azFunc.showDeploySubpathWarningDescription%",
"default": true
},
2018-03-02 01:33:02 +03:00
"azureFunctions.pickProcessTimeout": {
"type": "integer",
"description": "%azFunc.pickProcessTimeoutDescription%",
"default": 60
},
"azureFunctions.templateVersion": {
"type": "string",
2018-05-10 01:56:50 +03:00
"description": "%azFunc.templateVersion%"
},
"azureFunctions.projectOpenBehavior": {
"type": "string",
"enum": [
"AddToWorkspace",
"OpenInNewWindow",
"OpenInCurrentWindow"
],
"description": "%azFunc.projectOpenBehaviorDescription%"
},
"azureFunctions.preDeployTask": {
"scope": "resource",
"type": "string",
"description": "%azFunc.preDeployTaskDescription%"
},
"azureFunctions.pythonVenv": {
"scope": "resource",
"type": "string",
"description": "%azFunc.pythonVenvDescription%"
2018-11-16 00:45:29 +03:00
},
"azureFunctions.enableSlots": {
"type": "boolean",
"description": "%azFunc.enableSlotsDescription%",
"default": false
2019-01-10 00:25:25 +03:00
},
"azureFunctions.advancedCreation": {
"type": "boolean",
"description": "%azFunc.advancedCreationDescription%",
"default": false
},
"azureFunctions.enablePowerShell": {
"type": "boolean",
"description": "%azFunc.enablePowerShell%",
"default": false
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 -p ./",
"compile": "tsc -watch -p ./",
"package": "vsce package",
"lint": "tslint --project tsconfig.json -e src/*.d.ts -t verbose",
"postinstall": "node ./node_modules/vscode/bin/install",
"pretest": "npm run webpack-prod",
"test": "gulp test",
"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"
},
"devDependencies": {
"@types/fs-extra": "^4.0.3",
"@types/glob": "^7.1.1",
"@types/gulp": "^4.0.6",
"@types/gulp-filter": "^3.0.33",
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.45",
"@types/ps-tree": "^1.1.0",
"@types/request": "2.0.7",
"@types/request-promise": "4.1.38",
"@types/semver": "^5.5.0",
"@types/websocket": "^0.0.37",
"@types/xml2js": "^0.4.2",
2018-01-20 03:15:14 +03:00
"@types/xregexp": "^3.0.29",
"azure-arm-resource": "^3.0.0-preview",
"copy-webpack-plugin": "^4.6.0",
"gulp": "^4.0.0",
"gulp-chmod": "^2.0.0",
"gulp-decompress": "^2.0.1",
"gulp-download": "^0.0.1",
"gulp-filter": "^5.1.0",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi-reporters": "^1.1.7",
"ts-node": "^7.0.1",
"tslint": "^5.14.0",
"tslint-microsoft-contrib": "^5.2.1",
"typescript": "^3.3.4000",
"vsce": "^1.59.0",
"vscode": "^1.1.33",
"vscode-azureextensiondev": "0.1.8",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"dependencies": {
"azure-arm-cosmosdb": "^1.1.2",
2018-10-05 01:21:43 +03:00
"azure-arm-sb": "^2.3.0-preview",
"azure-arm-storage": "^4.0.0",
"azure-arm-website": "^5.3.0",
"extract-zip": "^1.6.6",
"fs-extra": "^4.0.2",
"ms-rest-azure": "^2.3.1",
"portfinder": "^1.0.13",
"ps-tree": "^1.1.1",
"request-promise": "^4.2.4",
"semver": "^5.7.0",
"vscode-azureappservice": "^0.35.0",
2019-04-09 01:54:28 +03:00
"vscode-azureextensionui": "^0.23.1",
"vscode-azurekudu": "^0.1.8",
"vscode-nls": "^4.1.0",
"websocket": "^1.0.25",
2018-01-20 03:15:14 +03:00
"xml2js": "^0.4.19",
"xregexp": "^4.0.0"
},
"extensionDependencies": [
"ms-vscode.azure-account"
]
}