Path: blob/main/extensions/configuration-editing/package.json
3291 views
{1"name": "configuration-editing",2"displayName": "%displayName%",3"description": "%description%",4"version": "1.0.0",5"publisher": "vscode",6"license": "MIT",7"engines": {8"vscode": "^1.0.0"9},10"icon": "images/icon.png",11"activationEvents": [12"onProfile",13"onProfile:github",14"onLanguage:json",15"onLanguage:jsonc"16],17"enabledApiProposals": [18"profileContentHandlers"19],20"main": "./out/configurationEditingMain",21"browser": "./dist/browser/configurationEditingMain",22"scripts": {23"compile": "gulp compile-extension:configuration-editing",24"watch": "gulp watch-extension:configuration-editing"25},26"dependencies": {27"@octokit/rest": "^21.1.1",28"jsonc-parser": "^3.2.0",29"tunnel": "^0.0.6"30},31"capabilities": {32"virtualWorkspaces": true,33"untrustedWorkspaces": {34"supported": true35}36},37"contributes": {38"languages": [39{40"id": "jsonc",41"extensions": [42".code-workspace",43"language-configuration.json",44"icon-theme.json",45"color-theme.json"46],47"filenames": [48"settings.json",49"launch.json",50"tasks.json",51"mcp.json",52"keybindings.json",53"extensions.json",54"argv.json",55"profiles.json",56"devcontainer.json",57".devcontainer.json"58]59},60{61"id": "json",62"extensions": [63".code-profile"64]65}66],67"jsonValidation": [68{69"fileMatch": "vscode://defaultsettings/keybindings.json",70"url": "vscode://schemas/keybindings"71},72{73"fileMatch": "%APP_SETTINGS_HOME%/keybindings.json",74"url": "vscode://schemas/keybindings"75},76{77"fileMatch": "%APP_SETTINGS_HOME%/profiles/*/keybindings.json",78"url": "vscode://schemas/keybindings"79},80{81"fileMatch": "vscode://defaultsettings/*.json",82"url": "vscode://schemas/settings/default"83},84{85"fileMatch": "%APP_SETTINGS_HOME%/settings.json",86"url": "vscode://schemas/settings/user"87},88{89"fileMatch": "%APP_SETTINGS_HOME%/profiles/*/settings.json",90"url": "vscode://schemas/settings/profile"91},92{93"fileMatch": "%MACHINE_SETTINGS_HOME%/settings.json",94"url": "vscode://schemas/settings/machine"95},96{97"fileMatch": "%APP_WORKSPACES_HOME%/*/workspace.json",98"url": "vscode://schemas/workspaceConfig"99},100{101"fileMatch": "**/*.code-workspace",102"url": "vscode://schemas/workspaceConfig"103},104{105"fileMatch": "**/argv.json",106"url": "vscode://schemas/argv"107},108{109"fileMatch": "/.vscode/settings.json",110"url": "vscode://schemas/settings/folder"111},112{113"fileMatch": "/.vscode/launch.json",114"url": "vscode://schemas/launch"115},116{117"fileMatch": "/.vscode/tasks.json",118"url": "vscode://schemas/tasks"119},120{121"fileMatch": "/.vscode/mcp.json",122"url": "vscode://schemas/mcp"123},124{125"fileMatch": "%APP_SETTINGS_HOME%/tasks.json",126"url": "vscode://schemas/tasks"127},128{129"fileMatch": "%APP_SETTINGS_HOME%/snippets/*.json",130"url": "vscode://schemas/snippets"131},132{133"fileMatch": "%APP_SETTINGS_HOME%/prompts/*.toolsets.jsonc",134"url": "vscode://schemas/toolsets"135},136{137"fileMatch": "%APP_SETTINGS_HOME%/profiles/*/snippets/.json",138"url": "vscode://schemas/snippets"139},140{141"fileMatch": "%APP_SETTINGS_HOME%/sync/snippets/preview/*.json",142"url": "vscode://schemas/snippets"143},144{145"fileMatch": "**/*.code-snippets",146"url": "vscode://schemas/global-snippets"147},148{149"fileMatch": "/.vscode/extensions.json",150"url": "vscode://schemas/extensions"151},152{153"fileMatch": "devcontainer.json",154"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json"155},156{157"fileMatch": ".devcontainer.json",158"url": "https://raw.githubusercontent.com/devcontainers/spec/main/schemas/devContainer.schema.json"159},160{161"fileMatch": "%APP_SETTINGS_HOME%/globalStorage/ms-vscode-remote.remote-containers/nameConfigs/*.json",162"url": "./schemas/attachContainer.schema.json"163},164{165"fileMatch": "%APP_SETTINGS_HOME%/globalStorage/ms-vscode-remote.remote-containers/imageConfigs/*.json",166"url": "./schemas/attachContainer.schema.json"167},168{169"fileMatch": "**/quality/*/product.json",170"url": "vscode://schemas/vscode-product"171}172]173},174"devDependencies": {175"@types/node": "22.x"176},177"repository": {178"type": "git",179"url": "https://github.com/microsoft/vscode.git"180}181}182183184