mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-17 11:03:14 -04:00
* commting .d.ts changes * added serverinfo to .d.ts * maybe its working? * works * updated contrib * remove unnecessary code * fix compile errors * init * conitnue * on the way to working maybe? * close * EVERYTHING WORKS * moved src out of client folder * formatting * reenable logging * working on build file * fixed install service gulp command * fix the command to properly return promises * clean up code * add telemetry * formatting * added logging/telemetry/statusview * formatting * address comments * resolute vscode-language versions
56 lines
1.4 KiB
JSON
56 lines
1.4 KiB
JSON
{
|
|
"name": "account-provider-azure",
|
|
"version": "0.0.1",
|
|
"publisher": "Microsoft",
|
|
"engines": { "vscode": "*" },
|
|
"main": "./out/main",
|
|
"activationEvents": [ "*" ],
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:account-provider-azure"
|
|
},
|
|
"dependencies": {
|
|
"adal-node": "0.1.25",
|
|
"request": "2.63.0",
|
|
"vscode-nls": "2.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^8.0.24"
|
|
},
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "accounts.clearTokenCache",
|
|
"title": "%accounts.clearTokenCache%",
|
|
"category": "Azure Accounts"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "Azure Account Configuration",
|
|
"properties": {
|
|
"accounts.azure.enablePublicCloud": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%config.enablePublicCloudDescription%"
|
|
}
|
|
}
|
|
},
|
|
"account-type": [
|
|
{
|
|
"id": "microsoft",
|
|
"icon": {
|
|
"light": "./out/account-provider/media/microsoft_account_light.svg",
|
|
"dark": "./out/account-provider/media/microsoft_account_dark.svg"
|
|
}
|
|
},
|
|
{
|
|
"id": "work_school",
|
|
"icon": {
|
|
"light": "./out/account-provider/media/work_school_account_light.svg",
|
|
"dark": "./out/account-provider/media/work_school_account_dark.svg"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|