2017-09-22 02:20:07 +03:00
|
|
|
{
|
|
|
|
"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": {
|
2017-09-22 02:21:48 +03:00
|
|
|
"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"
|
2017-09-22 02:20:07 +03:00
|
|
|
}
|
2017-09-22 02:21:02 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.openInPortal",
|
|
|
|
"title": "Open In Portal",
|
|
|
|
"category": "Azure Functions"
|
2017-09-22 02:20:07 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"views": {
|
|
|
|
"explorer": [
|
|
|
|
{
|
|
|
|
"id": "azureFunctionsExplorer",
|
|
|
|
"name": "Functions"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"menus": {
|
|
|
|
"view/title": [
|
|
|
|
{
|
2017-09-22 02:21:48 +03:00
|
|
|
"command": "azureFunctions.initFunctionApp",
|
|
|
|
"when": "view == azureFunctionsExplorer",
|
|
|
|
"group": "navigation@1"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.createFunction",
|
2017-09-22 02:20:07 +03:00
|
|
|
"when": "view == azureFunctionsExplorer",
|
|
|
|
"group": "navigation@2"
|
2017-09-22 02:21:48 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"command": "azureFunctions.refresh",
|
|
|
|
"when": "view == azureFunctionsExplorer",
|
|
|
|
"group": "navigation@3"
|
2017-09-22 02:20:07 +03:00
|
|
|
}
|
2017-09-22 02:21:02 +03:00
|
|
|
],
|
|
|
|
"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"
|
|
|
|
}
|
2017-09-22 02:20:07 +03:00
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"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",
|
2017-09-22 02:21:02 +03:00
|
|
|
"azure-arm-website": "^1.0.0-preview",
|
2017-09-22 02:20:07 +03:00
|
|
|
"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"
|
|
|
|
]
|
2017-09-22 20:20:39 +03:00
|
|
|
}
|