Files
azuredatastudio/extensions/machine-learning-services/package.json
Leila Lali ac6a27b9c2 Machine Learning Services Extension - External Languages (#9043)
* Added external language list, edit and delete UIs to Machine Learning extension
2020-02-10 08:58:46 -08:00

134 lines
3.5 KiB
JSON

{
"name": "machineLearningServices",
"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/ML_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": "true",
"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%"
},
{
"command": "mls.command.manageLanguages",
"title": "%mls.command.manageLanguages%"
},
{
"command": "mls.command.odbcdriver",
"title": "%mls.command.odbcdriver%"
},
{
"command": "mls.command.mlsdocs",
"title": "%mls.command.mlsdocs%"
},
{
"command": "mls.command.dependencies",
"title": "%mls.command.dependencies%"
}
],
"dashboard.tabs": [
{
"id": "mls-dashboard",
"description": "%description%",
"provider": "MSSQL",
"title": "%displayName%",
"when": "connectionProvider == 'MSSQL' && !mssql:iscloud",
"container": {
"grid-container": [
{
"name": "%title.configurations%",
"row": 0,
"col": 0,
"widget": {
"modelview": {
"id": "ml.tasks"
}
}
},
{
"name": "%title.tasks%",
"row": 0,
"col": 1,
"widget": {
"tasks-widget": [
"mls.command.managePackages",
"mls.command.manageLanguages",
"mls.command.odbcdriver",
"mls.command.mlsdocs"
]
}
}
]
}
}
]
},
"dependencies": {
"request": "^2.88.0",
"vscode-nls": "^4.0.0",
"vscode-languageclient": "^5.3.0-next.1"
},
"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.4"
},
"resolutions": {
"esprima": "^4.0.0"
}
}