mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Initial commit for Query Store extension * fix eslint explicit-functino-return-type setting * address comments * remove specifying explicit-function-return-type eslint rule * update strings
50 lines
1.1 KiB
JSON
50 lines
1.1 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": [
|
|
"*"
|
|
],
|
|
"main": "./out/extension",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
|
},
|
|
"capabilities": {
|
|
"virtualWorkspaces": false,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"extensionDependencies": [
|
|
"Microsoft.mssql"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
],
|
|
"menus": {
|
|
"objectExplorer/item/context": [
|
|
],
|
|
"dataExplorer/context": [
|
|
],
|
|
"commandPalette": [
|
|
]
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
}
|
|
}
|