mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 12:47:14 +00:00
* chore: bump electron@35.0.1 * chore: update types/node@22.x * chore: update web types for node v22.x * chore: bump electron@35.1.2 * chore: update node.js build * chore: update app.dock usage Refs71f3ff6bf2* chore: bump electron@35.1.4 * chore: bump electron@35.1.5 * ci: bump sysroot to glibc 2.28 and gcc 10.5.0 * ci: enable timeout for smoketests * chore: bump min glibcxx to 3.4.26 for server * Revert "ci: enable timeout for smoketests" This reverts commitafb637e85d. * chore: update debian dependencies * fix: workaround npm.ps1 argument parsing with powershell * chore: update rpm dependencies * test: partially revert changes from 242535 * test: remove redudant keybinding dispatch for selectTab * test: fix test failure from running configured tasks * test: focus settings editor for preferences.test.ts * node - adopt compile cache (#246835) * node - adopt compile cache * adopt for utility process * tweaks * log state of compilation cache * Revert "log state of compilation cache" This reverts commit f3840387a583013834762e2c44f6e8424929297f. * Revert "node - adopt compile cache (#246835)" This reverts commit 673a00cab66c9bac87f3cd27b80efa41c80150f1. * chore: update builds * chore: bump electron@35.2.0 * chore: bump electron@35.2.1 * chore: bump electron@35.2.2 --------- Co-authored-by: Benjamin Pasero <benjamin.pasero@microsoft.com>
183 lines
5.0 KiB
JSON
183 lines
5.0 KiB
JSON
{
|
|
"name": "json-language-features",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"aiKey": "0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",
|
|
"engines": {
|
|
"vscode": "^1.77.0"
|
|
},
|
|
"enabledApiProposals": [
|
|
"extensionsAny"
|
|
],
|
|
"icon": "icons/json.png",
|
|
"activationEvents": [
|
|
"onLanguage:json",
|
|
"onLanguage:jsonc",
|
|
"onLanguage:snippets",
|
|
"onCommand:json.validate"
|
|
],
|
|
"main": "./client/out/node/jsonClientMain",
|
|
"browser": "./client/dist/browser/jsonClientMain",
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "npx gulp compile-extension:json-language-features-client compile-extension:json-language-features-server",
|
|
"watch": "npx gulp watch-extension:json-language-features-client watch-extension:json-language-features-server",
|
|
"install-client-next": "npm install vscode-languageclient@next"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"configuration": {
|
|
"id": "json",
|
|
"order": 20,
|
|
"type": "object",
|
|
"title": "JSON",
|
|
"properties": {
|
|
"json.schemas": {
|
|
"type": "array",
|
|
"scope": "resource",
|
|
"description": "%json.schemas.desc%",
|
|
"items": {
|
|
"type": "object",
|
|
"default": {
|
|
"fileMatch": [
|
|
"/myfile"
|
|
],
|
|
"url": "schemaURL"
|
|
},
|
|
"properties": {
|
|
"url": {
|
|
"type": "string",
|
|
"default": "/user.schema.json",
|
|
"description": "%json.schemas.url.desc%"
|
|
},
|
|
"fileMatch": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string",
|
|
"default": "MyFile.json",
|
|
"description": "%json.schemas.fileMatch.item.desc%"
|
|
},
|
|
"minItems": 1,
|
|
"description": "%json.schemas.fileMatch.desc%"
|
|
},
|
|
"schema": {
|
|
"$ref": "http://json-schema.org/draft-07/schema#",
|
|
"description": "%json.schemas.schema.desc%"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"json.validate.enable": {
|
|
"type": "boolean",
|
|
"scope": "window",
|
|
"default": true,
|
|
"description": "%json.validate.enable.desc%"
|
|
},
|
|
"json.format.enable": {
|
|
"type": "boolean",
|
|
"scope": "window",
|
|
"default": true,
|
|
"description": "%json.format.enable.desc%"
|
|
},
|
|
"json.format.keepLines": {
|
|
"type": "boolean",
|
|
"scope": "window",
|
|
"default": false,
|
|
"description": "%json.format.keepLines.desc%"
|
|
},
|
|
"json.trace.server": {
|
|
"type": "string",
|
|
"scope": "window",
|
|
"enum": [
|
|
"off",
|
|
"messages",
|
|
"verbose"
|
|
],
|
|
"default": "off",
|
|
"description": "%json.tracing.desc%"
|
|
},
|
|
"json.colorDecorators.enable": {
|
|
"type": "boolean",
|
|
"scope": "window",
|
|
"default": true,
|
|
"description": "%json.colorDecorators.enable.desc%",
|
|
"deprecationMessage": "%json.colorDecorators.enable.deprecationMessage%"
|
|
},
|
|
"json.maxItemsComputed": {
|
|
"type": "number",
|
|
"default": 5000,
|
|
"description": "%json.maxItemsComputed.desc%"
|
|
},
|
|
"json.schemaDownload.enable": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "%json.enableSchemaDownload.desc%",
|
|
"tags": [
|
|
"usesOnlineServices"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
"configurationDefaults": {
|
|
"[json]": {
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"editor.suggest.insertMode": "replace"
|
|
},
|
|
"[jsonc]": {
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"editor.suggest.insertMode": "replace"
|
|
},
|
|
"[snippets]": {
|
|
"editor.quickSuggestions": {
|
|
"strings": true
|
|
},
|
|
"editor.suggest.insertMode": "replace"
|
|
}
|
|
},
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "*.schema.json",
|
|
"url": "http://json-schema.org/draft-07/schema#"
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"command": "json.clearCache",
|
|
"title": "%json.command.clearCache%",
|
|
"category": "JSON"
|
|
},
|
|
{
|
|
"command": "json.sort",
|
|
"title": "%json.command.sort%",
|
|
"category": "JSON"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@vscode/extension-telemetry": "^0.9.8",
|
|
"request-light": "^0.8.0",
|
|
"vscode-languageclient": "^10.0.0-next.14"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|