mirror of
https://github.com/Microsoft/vscode
synced 2024-10-31 01:12:58 +00:00
7a5bca9faf
it should avoid to have "warning XXX: No license field" during yarn build Signed-off-by: Aurélien Pupier <apupier@redhat.com>
59 lines
1.2 KiB
JSON
59 lines
1.2 KiB
JSON
{
|
|
"name": "extension-editing",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.4.0"
|
|
},
|
|
"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": "^2.0.2",
|
|
"markdown-it": "^8.3.1",
|
|
"parse5": "^3.0.2",
|
|
"vscode-nls": "^4.0.0"
|
|
},
|
|
"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"
|
|
}
|
|
],
|
|
"languages": [
|
|
{
|
|
"id": "ignore",
|
|
"filenames": [
|
|
".vscodeignore"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@types/markdown-it": "0.0.2",
|
|
"@types/node": "^10.14.8"
|
|
}
|
|
}
|