mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-28 06:31:58 +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>
77 lines
1.7 KiB
JSON
77 lines
1.7 KiB
JSON
{
|
|
"name": "extension-editing",
|
|
"displayName": "%displayName%",
|
|
"description": "%description%",
|
|
"version": "1.0.0",
|
|
"publisher": "vscode",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.4.0"
|
|
},
|
|
"icon": "images/icon.png",
|
|
"activationEvents": [
|
|
"onLanguage:json",
|
|
"onLanguage:markdown"
|
|
],
|
|
"main": "./out/extensionEditingMain",
|
|
"browser": "./dist/browser/extensionEditingBrowserMain",
|
|
"capabilities": {
|
|
"virtualWorkspaces": true,
|
|
"untrustedWorkspaces": {
|
|
"supported": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"compile": "gulp compile-extension:extension-editing",
|
|
"watch": "gulp watch-extension:extension-editing"
|
|
},
|
|
"dependencies": {
|
|
"jsonc-parser": "^3.2.0",
|
|
"markdown-it": "^12.3.2",
|
|
"parse5": "^3.0.2"
|
|
},
|
|
"contributes": {
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": "package.json",
|
|
"url": "vscode://schemas/vscode-extensions"
|
|
},
|
|
{
|
|
"fileMatch": "*language-configuration.json",
|
|
"url": "vscode://schemas/language-configuration"
|
|
},
|
|
{
|
|
"fileMatch": [
|
|
"*icon-theme.json",
|
|
"!*product-icon-theme.json"
|
|
],
|
|
"url": "vscode://schemas/icon-theme"
|
|
},
|
|
{
|
|
"fileMatch": "*product-icon-theme.json",
|
|
"url": "vscode://schemas/product-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": "22.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/microsoft/vscode.git"
|
|
}
|
|
}
|