mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Azure Arc extension (#10400)
Adds an extension for Azure Arc with some initial Postgres pages
This commit is contained in:
65
extensions/arc/package.json
Normal file
65
extensions/arc/package.json
Normal file
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"name": "arc",
|
||||
"displayName": "%arc.displayName%",
|
||||
"description": "%arc.description%",
|
||||
"version": "0.1.0",
|
||||
"publisher": "Microsoft",
|
||||
"preview": true,
|
||||
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
||||
"icon": "images/extension.png",
|
||||
"engines": {
|
||||
"vscode": "*",
|
||||
"azdata": ">=1.18.0"
|
||||
},
|
||||
"activationEvents": [
|
||||
"onCommand:arc.manageMiaa",
|
||||
"onCommand:arc.managePostgres"
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
||||
},
|
||||
"main": "./out/extension",
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "arc.manageMiaa",
|
||||
"title": "%arc.manageMiaa%"
|
||||
},
|
||||
{
|
||||
"command": "arc.managePostgres",
|
||||
"title": "%arc.managePostgres%"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"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/request": "^2.48.3"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user