mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
ML - dashboard icons and links (#10153)
* ML - dashboard icons and links
This commit is contained in:
147
extensions/machine-learning/package.json
Normal file
147
extensions/machine-learning/package.json
Normal file
@@ -0,0 +1,147 @@
|
||||
{
|
||||
"name": "machine-learning",
|
||||
"displayName": "%displayName%",
|
||||
"description": "%description%",
|
||||
"version": "1.0.0",
|
||||
"publisher": "Microsoft",
|
||||
"preview": true,
|
||||
"engines": {
|
||||
"vscode": "^1.25.0",
|
||||
"azdata": ">=1.13.0"
|
||||
},
|
||||
"activationEvents": [
|
||||
"onCommand:mls.command.managePackages",
|
||||
"onDashboardOpen"
|
||||
],
|
||||
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
||||
"icon": "images/extensionIcon.png",
|
||||
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
|
||||
"main": "./out/main",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
||||
},
|
||||
"extensionDependencies": [
|
||||
"Microsoft.mssql",
|
||||
"Microsoft.notebook"
|
||||
],
|
||||
"contributes": {
|
||||
"configuration": {
|
||||
"type": "object",
|
||||
"title": "%mls.configuration.title%",
|
||||
"properties": {
|
||||
"machineLearningServices.enablePython": {
|
||||
"type": "boolean",
|
||||
"default": "true",
|
||||
"description": "%mls.enablePython.description%"
|
||||
},
|
||||
"machineLearningServices.enableR": {
|
||||
"type": "boolean",
|
||||
"default": "false",
|
||||
"description": "%mls.enableR.description%"
|
||||
},
|
||||
"machineLearningServices.pythonPath": {
|
||||
"type": "string",
|
||||
"default": "python",
|
||||
"description": "%mls.pythonPath.description%"
|
||||
},
|
||||
"machineLearningServices.rPath": {
|
||||
"type": "string",
|
||||
"default": "r",
|
||||
"description": "%mls.rPath.description%"
|
||||
}
|
||||
}
|
||||
},
|
||||
"commands": [
|
||||
{
|
||||
"command": "mls.command.managePackages",
|
||||
"title": "%mls.command.managePackages%",
|
||||
"icon": {
|
||||
"light": "./images/installPackages.svg",
|
||||
"dark": "./images/installPackages.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mls.command.predictModel",
|
||||
"title": "%mls.command.predictModel%",
|
||||
"icon": {
|
||||
"light": "./images/makePredictions.svg",
|
||||
"dark": "./images/makePredictions.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mls.command.manageModels",
|
||||
"title": "%mls.command.manageModels%"
|
||||
},
|
||||
{
|
||||
"command": "mls.command.importModel",
|
||||
"title": "%mls.command.importModel%",
|
||||
"icon": {
|
||||
"light": "./images/registerModel.svg",
|
||||
"dark": "./images/registerModel.svg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"command": "mls.command.dependencies",
|
||||
"title": "%mls.command.dependencies%"
|
||||
}
|
||||
],
|
||||
"dashboard.tabs": [
|
||||
{
|
||||
"id": "mls-dashboard",
|
||||
"description": "%description%",
|
||||
"provider": "MSSQL",
|
||||
"title": "%displayName%",
|
||||
"icon": {
|
||||
"light": "./images/extensionIcon.svg",
|
||||
"dark": "./images/extensionIcon.svg"
|
||||
},
|
||||
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud",
|
||||
"container": {
|
||||
"grid-container": [
|
||||
{
|
||||
"name": "%title.tasks%",
|
||||
"row": 0,
|
||||
"col": 0,
|
||||
"widget": {
|
||||
"tasks-widget": [
|
||||
"mls.command.managePackages"
|
||||
]
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "",
|
||||
"row": 0,
|
||||
"col": 1,
|
||||
"rowspan": 4,
|
||||
"colspan": 3,
|
||||
"widget": {
|
||||
"modelview": {
|
||||
"id":"mls.dashboard"
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
"dependencies": {
|
||||
"request": "^2.88.0",
|
||||
"vscode-nls": "^4.0.0",
|
||||
"vscode-languageclient": "^5.3.0-next.1",
|
||||
"@azure/arm-machinelearningservices": "^3.0.0",
|
||||
"polly-js": "^1.6.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/mocha": "^5.2.5",
|
||||
"@types/node": "^10.14.8",
|
||||
"@types/request": "^2.48.1",
|
||||
"mocha": "^5.2.0",
|
||||
"mocha-junit-reporter": "^1.17.0",
|
||||
"mocha-multi-reporters": "^1.1.7",
|
||||
"should": "^13.2.1",
|
||||
"typemoq": "^2.1.0",
|
||||
"vscodetestcover": "github:corivera/vscodetestcover#1.0.6"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user