vscode-azurefunctions/package.json

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

{
"name": "vscode-azurefunctions",
"displayName": "Azure Functions",
2017-10-02 19:32:53 +03:00
"description": "%extension.description%",
"version": "0.9.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": {
"vscode": "^1.23.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",
"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.pickProcess",
"onCommand:azureFunctions.uninstallDotnetTemplates",
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",
"workspaceContains:local.settings.json",
"workspaceContains:host.json",
"onView:azureFunctionsExplorer"
],
"main": "./out/src/extension",
"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.pickProcess",
"title": "%azFunc.pickProcess%",
"category": "Azure Functions"
},
{
"command": "azureFunctions.uninstallDotnetTemplates",
"title": "%azFunc.uninstallDotnetTemplates%",
"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"
}
],
"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",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "1@1"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.startFunctionApp",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "2@1"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.stopFunctionApp",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "2@2"
2017-09-22 21:44:35 +03:00
},
{
"command": "azureFunctions.restartFunctionApp",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "2@3"
2017-11-09 06:24:53 +03:00
},
{
"command": "azureFunctions.deleteFunctionApp",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "2@4"
},
{
2018-03-30 01:56:26 +03:00
"command": "azureFunctions.deploy",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "3@1"
},
2018-03-30 01:56:26 +03:00
{
"command": "azureFunctions.configureDeploymentSource",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "3@2"
},
2018-02-06 22:47:12 +03:00
{
"command": "azureFunctions.startStreamingLogs",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "4@1"
},
{
"command": "azureFunctions.stopStreamingLogs",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "4@2"
},
2017-11-09 06:24:53 +03:00
{
"command": "azureFunctions.debugFunctionAppOnAzure",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp && config.azureFunctions.enableRemoteDebugging == true",
"group": "5@1"
},
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctionApp",
"group": "6@1"
},
{
"command": "azureFunctions.refresh",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunctions",
"group": "1@1"
},
{
"command": "azureFunctions.copyFunctionUrl",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunction",
"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",
"group": "3@1"
},
{
"command": "azureFunctions.stopStreamingLogs",
"when": "view == azureFunctionsExplorer && viewItem == azFuncFunction",
"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.refresh",
"when": "view == azureFunctionsExplorer && viewItem == azFuncProxies",
"group": "1@1"
},
{
"command": "azureFunctions.deleteProxy",
"when": "view == azureFunctionsExplorer && viewItem == azFuncProxy",
"group": "1@1"
}
],
"explorer/context": [
{
"command": "azureFunctions.deploy",
"when": "explorerResourceIsFolder == true",
"group": "zzz_@1"
2018-04-04 02:20:06 +03:00
},
{
"command": "azureFunctions.appSettings.decrypt",
"when": "resourceFilename==local.settings.json",
"group": "zzz_@1"
},
{
"command": "azureFunctions.appSettings.encrypt",
"when": "resourceFilename==local.settings.json",
"group": "zzz_@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"
}
]
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
],
"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.zipGlobPattern": {
"scope": "resource",
2017-12-13 02:53:57 +03:00
"type": "string",
"default": "**/*",
"description": "Defines which files in the workspace to deploy. This applies to Zip deploy only, has no effect on other deployment methods."
},
"azureFunctions.zipIgnorePattern": {
"scope": "resource",
"type": [
"string",
"array"
],
2017-12-13 02:53:57 +03:00
"default": "",
"description": "Defines which files in the workspace to ignore for Zip deploy. This applies to Zip deploy only, has no effect on other deployment methods."
},
"azureFunctions.projectRuntime": {
"scope": "resource",
"type": "string",
"enum": [
"~1",
"beta"
],
"description": "%azFunc.projectRuntimeDescription%"
},
"azureFunctions.projectLanguage": {
"scope": "resource",
"type": "string",
"enum": [
"Bash",
"Batch",
"C#",
"C#Script",
"F#Script",
"Java",
"JavaScript",
"PHP",
"PowerShell",
"Python",
"TypeScript"
],
"description": "%azFunc.projectLanguageDescription%"
},
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.showCoreToolsWarning": {
"type": "boolean",
"description": "%azFunc.showCoreToolsWarningDescription%",
"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
2018-03-02 01:33:02 +03:00
},
"azureFunctions.pickProcessTimeout": {
"type": "integer",
"description": "%azFunc.pickProcessTimeoutDescription%",
"default": 60
},
"azureFunctions.showFuncInstallation": {
"type": "boolean",
"description": "%azFunc.showFuncInstallationDescription%",
"default": true
},
"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%"
2017-10-04 19:52:07 +03:00
}
}
}
2017-09-27 20:45:48 +03:00
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"lint": "tslint --project tsconfig.json -e src/*.d.ts -t verbose",
2018-01-11 22:07:59 +03:00
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/clipboardy": "^1.1.0",
"@types/fs-extra": "^4.0.3",
"@types/mocha": "^2.2.32",
"@types/node": "^8.0.28",
"@types/opn": "^5.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-storage": "^2.8.1",
"gulp": "^3.9.1",
"gulp-decompress": "^2.0.1",
"gulp-download": "^0.0.1",
"mocha": "^2.3.3",
"tslint": "^5.7.0",
"tslint-microsoft-contrib": "5.0.1",
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"vsce": "^1.37.5"
},
"dependencies": {
"azure-arm-cosmosdb": "^1.1.2",
"azure-arm-resource": "^3.0.0-preview",
"azure-arm-storage": "^3.1.0",
"azure-arm-website": "^1.0.0-preview",
"clipboardy": "^1.2.2",
"extract-zip": "^1.6.6",
"fs-extra": "^4.0.2",
"ms-rest": "^2.2.2",
"ms-rest-azure": "^2.3.1",
"opn": "^5.2.0",
"portfinder": "^1.0.13",
"ps-node": "^0.1.6",
"request-promise": "^4.2.2",
"semver": "^5.5.0",
"vscode-azureappservice": "~0.16.3",
2018-06-21 00:33:19 +03:00
"vscode-azureextensionui": "~0.15.0",
"vscode-azurekudu": "~0.1.8",
"vscode-extension-telemetry": "^0.0.15",
"vscode-nls": "^2.0.2",
"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"
]
}