mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
* Query store unit test infra setup * Update yarn.lock file * Update tests for utils.ts * Move test utilities interfaces and functions to its own file
66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"name": "query-store",
|
|
"displayName": "%queryStore.displayName%",
|
|
"description": "%queryStore.description%",
|
|
"version": "0.1.0",
|
|
"publisher": "Microsoft",
|
|
"preview": true,
|
|
"engines": {
|
|
"vscode": "*",
|
|
"azdata": ">=1.45.0"
|
|
},
|
|
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
|
|
"icon": "images/extension.png",
|
|
"aiKey": "29a207bb14f84905966a8f22524cb730-25407f35-11b6-4d4e-8114-ab9e843cb52f-7380",
|
|
"activationEvents": [
|
|
"onCommand:queryStore.topResourceConsumingQueriesOpen",
|
|
"onCommand:queryStore.overallResourceConsumptionOpen"
|
|
],
|
|
"main": "./out/extension",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"capabilities": {
|
|
"virtualWorkspaces": false,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "queryStore.topResourceConsumingQueriesOpen",
|
|
"title": "%queryStore.topResourceConsumingQueriesOpen%",
|
|
"category": "%queryStore.category%"
|
|
},
|
|
{
|
|
"command": "queryStore.overallResourceConsumptionOpen",
|
|
"title": "%queryStore.overallResourceConsumptionOpen%",
|
|
"category": "%queryStore.category%"
|
|
}
|
|
],
|
|
"menus": {
|
|
"objectExplorer/item/context": [
|
|
],
|
|
"dataExplorer/context": [
|
|
],
|
|
"commandPalette": [
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@microsoft/azdata-test": "^3.0.1",
|
|
"@microsoft/vscodetestcover": "^1.2.1",
|
|
"@types/mocha": "^7.0.2",
|
|
"should": "^13.2.1",
|
|
"typemoq": "^2.1.0"
|
|
}
|
|
}
|