Files
azuredatastudio/extensions/schema-compare/package.json
Alan Ren 54c2fe6899 remove duplicate code (#20664)
* remove dupe code

* fix step name

* fix errors

* comment out arc

* fix timeout issue

* fix typo

* update name
2022-09-26 17:48:59 -07:00

134 lines
3.4 KiB
JSON

{
"name": "schema-compare",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.17.0",
"publisher": "Microsoft",
"preview": false,
"engines": {
"vscode": "^1.25.0",
"azdata": ">=1.38.0"
},
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
"icon": "images/extension.png",
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
"activationEvents": [
"onCommand:schemaCompare.start"
],
"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": "schemaCompare.start",
"title": "%schemaCompare.start%",
"icon": {
"light": "./images/light_icon.svg",
"dark": "./images/dark_icon.svg"
}
},
{
"command": "schemaCompare.runComparison",
"title": "%schemaCompare.runComparison%"
},
{
"command": "schemaCompare.openInScmp",
"title": "%schemaCompare.openInScmp%"
}
],
"languages": [
{
"id": "scmp",
"filenames": [
"Schema Compare"
],
"extensions": [
".scmp"
],
"aliases": [
"scmp"
]
}
],
"menus": {
"objectExplorer/item/context": [
{
"command": "schemaCompare.start",
"when": "connectionProvider == MSSQL && nodeType && nodeType == Database && mssql:engineedition != 11",
"group": "export"
},
{
"command": "schemaCompare.start",
"when": "connectionProvider == MSSQL && nodeType && nodeType == Server && mssql:engineedition != 11",
"group": "export"
}
],
"dataExplorer/context": [
{
"command": "schemaCompare.start",
"when": "connectionProvider == MSSQL && nodeType && nodeType == Database && mssql:engineedition != 11",
"group": "export"
},
{
"command": "schemaCompare.start",
"when": "connectionProvider == MSSQL && nodeType && nodeType == Server && mssql:engineedition != 11",
"group": "export"
}
],
"commandPalette": [
{
"command": "schemaCompare.start",
"when": "mssql:engineedition != 11"
},
{
"command": "schemaCompare.runComparison",
"when": "false"
},
{
"command": "schemaCompare.openInScmp",
"when": "false"
}
],
"explorer/context": [
{
"command": "schemaCompare.openInScmp",
"when": "resourceExtname == .scmp",
"group": "navigation"
}
]
}
},
"dependencies": {
"@microsoft/ads-extension-telemetry": "^1.2.0",
"vscode-nls": "^4.0.0"
},
"devDependencies": {
"@microsoft/azdata-test": "^2.0.3",
"@microsoft/vscodetestcover": "^1.2.1",
"@types/mocha": "^7.0.2",
"@types/node": "^12.11.7",
"@types/sinon": "^9.0.4",
"mocha": "^7.1.1",
"should": "^13.2.1",
"sinon": "^9.0.2",
"typemoq": "^2.1.0"
},
"__metadata": {
"id": "37",
"publisherDisplayName": "Microsoft",
"publisherId": "Microsoft"
}
}