Files
azuredatastudio/extensions/sql-bindings/package.json
Charles Gagnon 4a5ac92e46 Update ads-extension-telemetry to 1.4.0 (#22069)
* Update ads-extension-telemetry

* One more
2023-02-28 22:25:07 -08:00

85 lines
2.2 KiB
JSON

{
"name": "sql-bindings-vscode",
"displayName": "%displayName%",
"description": "%description%",
"version": "0.3.1",
"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": "29a207bb14f84905966a8f22524cb730-25407f35-11b6-4d4e-8114-ab9e843cb52f-7380",
"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$|^View$/",
"group": "zAzure_Function@1"
}
]
}
},
"dependencies": {
"@microsoft/ads-extension-telemetry": "^1.4.0",
"@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",
"@microsoft/azdata-test": "^2.0.3"
}
}