Files
azuredatastudio/extensions/data-workspace/package.json
Alan Ren 7df132b307 data workspace extension batch 2 (#12208)
* work in progress

* load projects in view and test cases

* update scope

* make the sql proj menu available in workspace view

* add extension unit test

* address comments

* fix errors
2020-09-10 17:17:57 -07:00

108 lines
2.6 KiB
JSON

{
"name": "data-workspace",
"displayName": "%extension-displayName%",
"description": "%extension-description%",
"version": "0.1.0",
"publisher": "Microsoft",
"preview": true,
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/main/LICENSE.txt",
"icon": "images/extension.png",
"aiKey": "AIF-37eefaf0-8022-4671-a3fb-64752724682e",
"engines": {
"vscode": "*",
"azdata": ">=1.22.0"
},
"activationEvents": [
"onView:dataworkspace.views.main"
],
"main": "./out/main",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/azuredatastudio.git"
},
"extensionDependencies": [],
"contributes": {
"configuration": [
{
"title": "Projects",
"properties": {
"dataworkspace.projects": {
"type": "array",
"default": [],
"description": ""
}
}
}
],
"commands": [
{
"command": "projects.addProject",
"title": "%add-project-command%",
"category": "",
"icon": "$(add)"
},
{
"command": "dataworkspace.refresh",
"title": "%refresh-workspace-command%",
"category": "",
"icon": "$(refresh)"
}
],
"menus": {
"view/title": [
{
"command": "dataworkspace.refresh",
"when": "view == dataworkspace.views.main",
"group": "navigation"
},
{
"command": "projects.addProject",
"when": "view == dataworkspace.views.main",
"group": "navigation"
}
],
"commandPalette": [
{
"command": "projects.addProject",
"when": "false"
},
{
"command": "dataworkspace.refresh",
"when": "false"
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "dataworkspace",
"title": "%data-workspace-view-container-name%",
"icon": "images/data-workspace.svg"
}
]
},
"views": {
"dataworkspace": [
{
"id": "dataworkspace.views.main",
"name": "%main-view-name%",
"contextualTitle": "%data-workspace-view-container-name%",
"icon": "images/data-workspace.svg"
}
]
}
},
"dependencies": {
"vscode-nls": "^4.0.0"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"typemoq": "^2.1.0",
"vscodetestcover": "^1.1.0",
"should": "^13.2.3"
}
}