Files
azuredatastudio/extensions/sql-bindings/package.json
Vasu Bhog 8c223f503e Fix SQL Bindings VSCode telemetry issues (#19648)
* fix package json telemetry issues

* add vs code dependency back
2022-06-07 00:19:00 -07:00

86 lines
2.2 KiB
JSON

{
"name": "sql-bindings-vscode",
"displayName": "%displayName%",
"description": "%description%",
"version": "0.2.0",
"publisher": "ms-mssql",
"preview": true,
"engines": {
"vscode": "^1.30.1"
},
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
"icon": "media/defaultExtensionIcon.png",
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
"activationEvents": [
"onCommand:sqlBindings.addSqlBinding",
"onCommand:sqlBindings.createAzureFunction"
],
"main": "./out/extension",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git"
},
"extensionDependencies": [
"Microsoft.mssql"
],
"capabilities": {
"virtualWorkspaces": false,
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"commands": [
{
"command": "sqlBindings.addSqlBinding",
"title": "%sqlBindings.addSqlBinding%",
"category": "MS SQL"
},
{
"command": "sqlBindings.createAzureFunction",
"title": "%sqlBindings.createAzureFunction%",
"category": "MS SQL"
}
],
"menus": {
"commandPalette": [
{
"command": "sqlBindings.addSqlBinding",
"when": "editorLangId == csharp && resourceScheme != untitled"
},
{
"command": "sqlBindings.createAzureFunction",
"group": "zAzure_Function@1"
}
],
"view/item/context": [
{
"command": "sqlBindings.createAzureFunction",
"when": "view == objectExplorer && viewItem == Table",
"group": "zAzure_Function@1"
}
]
}
},
"dependencies": {
"@microsoft/ads-extension-telemetry": "^1.1.5",
"@microsoft/vscode-azext-utils": "^0.1.1",
"fast-glob": "^3.2.7",
"promisify-child-process": "^3.1.1",
"uuid": "^8.3.2",
"vscode-nls": "^4.1.2",
"vscode-languageclient": "5.2.1"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@types/uuid": "^3.4.5",
"should": "^13.2.1",
"sinon": "^9.0.2",
"typemoq": "^2.1.0",
"@microsoft/vscodetestcover": "^1.2.1",
"mocha": "^7.1.1",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7"
}
}