Files
azuredatastudio/extensions/arc/package.json

82 lines
1.9 KiB
JSON

{
"name": "arc",
"displayName": "%arc.displayName%",
"description": "%arc.description%",
"version": "0.1.0",
"publisher": "Microsoft",
"preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
"icon": "images/extension.png",
"engines": {
"vscode": "*",
"azdata": ">=1.19.0"
},
"activationEvents": [
"onCommand:arc.manageArcController",
"onCommand:arc.manageMiaa",
"onCommand:arc.managePostgres"
],
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git"
},
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "arc.manageArcController",
"title": "%arc.manageArcController%"
},
{
"command": "arc.manageMiaa",
"title": "%arc.manageMiaa%"
},
{
"command": "arc.managePostgres",
"title": "%arc.managePostgres%"
}
],
"menus": {
"commandPalette": [
{
"command": "arc.manageArcController",
"when": "false"
},
{
"command": "arc.manageMiaa",
"when": "false"
},
{
"command": "arc.managePostgres",
"when": "false"
}
]
},
"configuration": {
"type": "object",
"title": "%arc.configuration.title%",
"properties": {
"arc.ignoreSslVerification": {
"type": "boolean",
"default": true,
"description": "%arc.ignoreSslVerification.desc%"
}
}
}
},
"dependencies": {
"request": "^2.88.0",
"vscode-nls": "^4.1.2"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"@types/node": "^12.11.7",
"@types/request": "^2.48.3",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"should": "^13.2.3",
"vscodetestcover": "^1.0.9"
}
}