2016-06-03 13:40:36 +00:00
|
|
|
{
|
2017-01-26 10:31:23 +00:00
|
|
|
"name": "configuration-editing",
|
2018-02-19 17:38:12 +00:00
|
|
|
"displayName": "%displayName%",
|
|
|
|
"description": "%description%",
|
2018-02-28 01:35:19 +00:00
|
|
|
"version": "1.0.0",
|
2017-01-26 10:31:23 +00:00
|
|
|
"publisher": "vscode",
|
2019-06-06 09:44:50 +00:00
|
|
|
"license": "MIT",
|
2017-01-26 10:31:23 +00:00
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.0.0"
|
|
|
|
},
|
2021-04-20 19:09:24 +00:00
|
|
|
"icon": "images/icon.png",
|
2017-01-26 10:31:23 +00:00
|
|
|
"activationEvents": [
|
2017-12-12 14:35:52 +00:00
|
|
|
"onLanguage:json",
|
|
|
|
"onLanguage:jsonc"
|
2017-01-26 10:31:23 +00:00
|
|
|
],
|
2020-06-11 20:27:51 +00:00
|
|
|
"main": "./out/configurationEditingMain",
|
2020-06-25 21:21:56 +00:00
|
|
|
"browser": "./dist/browser/configurationEditingMain",
|
2017-01-26 10:31:23 +00:00
|
|
|
"scripts": {
|
|
|
|
"compile": "gulp compile-extension:configuration-editing",
|
|
|
|
"watch": "gulp watch-extension:configuration-editing"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-02-21 14:03:28 +00:00
|
|
|
"jsonc-parser": "^2.2.1",
|
|
|
|
"vscode-nls": "^4.1.1"
|
2017-01-26 10:31:23 +00:00
|
|
|
},
|
2021-04-21 18:54:42 +00:00
|
|
|
"capabilities": {
|
|
|
|
"untrustedWorkspaces": {
|
|
|
|
"supported": true
|
|
|
|
}
|
2021-04-12 14:00:22 +00:00
|
|
|
},
|
2017-01-26 10:31:23 +00:00
|
|
|
"contributes": {
|
2018-06-06 14:37:32 +00:00
|
|
|
"languages": [
|
|
|
|
{
|
|
|
|
"id": "jsonc",
|
|
|
|
"extensions": [
|
|
|
|
".code-workspace",
|
|
|
|
"language-configuration.json",
|
|
|
|
"icon-theme.json",
|
|
|
|
"color-theme.json",
|
|
|
|
".code-snippets"
|
|
|
|
],
|
|
|
|
"filenames": [
|
|
|
|
"settings.json",
|
|
|
|
"launch.json",
|
|
|
|
"tasks.json",
|
|
|
|
"keybindings.json",
|
2019-10-09 15:15:01 +00:00
|
|
|
"extensions.json",
|
2019-10-25 13:01:28 +00:00
|
|
|
"argv.json",
|
2021-02-12 10:04:42 +00:00
|
|
|
"profiles.json",
|
|
|
|
".devcontainer.json"
|
|
|
|
],
|
|
|
|
"filenamePatterns": [
|
|
|
|
"**/.devcontainer/devcontainer.json"
|
|
|
|
]
|
2018-06-06 14:37:32 +00:00
|
|
|
}
|
|
|
|
],
|
2017-01-26 10:31:23 +00:00
|
|
|
"jsonValidation": [
|
|
|
|
{
|
|
|
|
"fileMatch": "vscode://defaultsettings/keybindings.json",
|
|
|
|
"url": "vscode://schemas/keybindings"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "%APP_SETTINGS_HOME%/keybindings.json",
|
|
|
|
"url": "vscode://schemas/keybindings"
|
|
|
|
},
|
|
|
|
{
|
2020-09-03 15:26:59 +00:00
|
|
|
"fileMatch": "vscode://defaultsettings/*.json",
|
2017-09-20 15:36:09 +00:00
|
|
|
"url": "vscode://schemas/settings/default"
|
2017-07-21 12:44:56 +00:00
|
|
|
},
|
2017-01-26 10:31:23 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "%APP_SETTINGS_HOME%/settings.json",
|
2017-09-20 15:36:09 +00:00
|
|
|
"url": "vscode://schemas/settings/user"
|
2017-01-26 10:31:23 +00:00
|
|
|
},
|
2019-04-10 16:25:00 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "%MACHINE_SETTINGS_HOME%/settings.json",
|
|
|
|
"url": "vscode://schemas/settings/machine"
|
|
|
|
},
|
2017-07-17 12:52:49 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "%APP_WORKSPACES_HOME%/*/workspace.json",
|
|
|
|
"url": "vscode://schemas/workspaceConfig"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "**/*.code-workspace",
|
|
|
|
"url": "vscode://schemas/workspaceConfig"
|
|
|
|
},
|
2017-01-26 10:31:23 +00:00
|
|
|
{
|
2019-10-10 05:37:06 +00:00
|
|
|
"fileMatch": "**/argv.json",
|
|
|
|
"url": "vscode://schemas/argv"
|
2017-01-26 10:31:23 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "/.vscode/settings.json",
|
2017-09-20 15:36:09 +00:00
|
|
|
"url": "vscode://schemas/settings/folder"
|
2017-01-26 10:31:23 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "/.vscode/launch.json",
|
|
|
|
"url": "vscode://schemas/launch"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "/.vscode/tasks.json",
|
|
|
|
"url": "vscode://schemas/tasks"
|
|
|
|
},
|
2019-12-17 14:39:57 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "%APP_SETTINGS_HOME%/tasks.json",
|
|
|
|
"url": "vscode://schemas/tasks"
|
|
|
|
},
|
2017-01-26 10:31:23 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "%APP_SETTINGS_HOME%/snippets/*.json",
|
|
|
|
"url": "vscode://schemas/snippets"
|
|
|
|
},
|
2020-03-20 17:36:23 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "%APP_SETTINGS_HOME%/sync/snippets/preview/*.json",
|
|
|
|
"url": "vscode://schemas/snippets"
|
|
|
|
},
|
2018-01-04 13:16:21 +00:00
|
|
|
{
|
2018-01-05 10:03:49 +00:00
|
|
|
"fileMatch": "**/*.code-snippets",
|
2018-01-04 13:16:21 +00:00
|
|
|
"url": "vscode://schemas/global-snippets"
|
|
|
|
},
|
2017-01-26 10:31:23 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "/.vscode/extensions.json",
|
|
|
|
"url": "vscode://schemas/extensions"
|
2019-05-21 12:21:42 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "/.devcontainer/devcontainer.json",
|
2020-11-17 10:16:25 +00:00
|
|
|
"url": "./schemas/devContainer.schema.generated.json"
|
2019-05-21 12:21:42 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fileMatch": "/.devcontainer.json",
|
2020-11-17 10:16:25 +00:00
|
|
|
"url": "./schemas/devContainer.schema.generated.json"
|
2019-10-02 19:11:42 +00:00
|
|
|
},
|
2020-06-29 11:58:07 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "%APP_SETTINGS_HOME%/globalStorage/ms-vscode-remote.remote-containers/nameConfigs/*.json",
|
|
|
|
"url": "./schemas/attachContainer.schema.json"
|
|
|
|
},
|
2019-10-02 19:11:42 +00:00
|
|
|
{
|
|
|
|
"fileMatch": "%APP_SETTINGS_HOME%/globalStorage/ms-vscode-remote.remote-containers/imageConfigs/*.json",
|
|
|
|
"url": "./schemas/attachContainer.schema.json"
|
2017-01-26 10:31:23 +00:00
|
|
|
}
|
|
|
|
]
|
2017-02-01 23:20:17 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-12-18 12:28:39 +00:00
|
|
|
"@types/node": "^12.19.9"
|
2021-01-29 14:30:45 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/microsoft/vscode.git"
|
2017-01-26 10:31:23 +00:00
|
|
|
}
|
2018-08-14 08:44:56 +00:00
|
|
|
}
|