mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -05:00
* Initial VS Code 1.21 file copy with patches * A few more merges * Post npm install * Fix batch of build breaks * Fix more build breaks * Fix more build errors * Fix more build breaks * Runtime fixes 1 * Get connection dialog working with some todos * Fix a few packaging issues * Copy several node_modules to package build to fix loader issues * Fix breaks from master * A few more fixes * Make tests pass * First pass of license header updates * Second pass of license header updates * Fix restore dialog issues * Remove add additional themes menu items * fix select box issues where the list doesn't show up * formatting * Fix editor dispose issue * Copy over node modules to correct location on all platforms
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "extension-editing",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"engines": {
|
|
"vscode": "^1.4.0"
|
|
},
|
|
"categories": [
|
|
"Languages",
|
|
"Other"
|
|
],
|
|
"activationEvents": [
|
|
"onLanguage:json",
|
|
"onLanguage:markdown",
|
|
"onLanguage:typescript"
|
|
],
|
|
"main": "./out/extension",
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:extension-editing",
|
|
"watch": "gulp watch-extension:extension-editing"
|
|
},
|
|
"dependencies": {
|
|
"jsonc-parser": "^1.0.0",
|
|
"markdown-it": "^8.3.1",
|
|
"parse5": "^3.0.2",
|
|
"vscode-nls": "^3.2.1"
|
|
},
|
|
"contributes": {
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "package.json",
|
|
"url": "vscode://schemas/vscode-extensions"
|
|
},
|
|
{
|
|
"fileMatch": "*language-configuration.json",
|
|
"url": "vscode://schemas/language-configuration"
|
|
},
|
|
{
|
|
"fileMatch": "*icon-theme.json",
|
|
"url": "vscode://schemas/icon-theme"
|
|
},
|
|
{
|
|
"fileMatch": "*color-theme.json",
|
|
"url": "vscode://schemas/color-theme"
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/markdown-it": "0.0.2",
|
|
"@types/node": "6.0.78"
|
|
}
|
|
} |