mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-10 19:48:03 -04:00
Initial commit of Database Projects extension (#8540)
* Initial commit of Database Projects extension * Removing unused references, correcting license, tabs -> spaces in package.json * cleaning up linter errors
This commit is contained in:
57
extensions/sql-database-projects/package.json
Normal file
57
extensions/sql-database-projects/package.json
Normal file
@@ -0,0 +1,57 @@
|
||||
{
|
||||
"name": "sql-database-projects",
|
||||
"displayName": "SQL Server Database Projects",
|
||||
"description": "SQL Server Database Projects for Azure Data Studio designing and deploying database schemas.",
|
||||
"version": "0.1.0",
|
||||
"publisher": "Microsoft",
|
||||
"preview": true,
|
||||
"engines": {
|
||||
"vscode": "^1.30.1",
|
||||
"azdata": ">=1.12.0"
|
||||
},
|
||||
"license": "https://raw.githubusercontent.com/Microsoft/azuredatastudio/master/LICENSE.txt",
|
||||
"icon": "images/sqlserver.png",
|
||||
"aiKey": "AIF-c5594e2d-38b5-4d3b-ab1b-ed5d4fe8ee40",
|
||||
"activationEvents": [
|
||||
"*"
|
||||
],
|
||||
"main": "./out/main",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Microsoft/azuredatastudio.git"
|
||||
},
|
||||
"extensionDependencies": [
|
||||
"Microsoft.mssql"
|
||||
],
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "sqlDatabaseProjects.new",
|
||||
"title": "%sqlDatabaseProjects.new%",
|
||||
"category": "%sqlDatabaseProjects.displayName%"
|
||||
},
|
||||
{
|
||||
"command": "sqlDatabaseProjects.open",
|
||||
"title": "%sqlDatabaseProjects.open%",
|
||||
"category": "%sqlDatabaseProjects.displayName%"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"commandPalette": [
|
||||
{
|
||||
"command": "sqlDatabaseProjects.new"
|
||||
},
|
||||
{
|
||||
"command": "sqlDatabaseProjects.open"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"vscode-nls": "^3.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"tslint": "^5.8.0",
|
||||
"typescript": "^2.6.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user