Add vscode-extras extension with npm up-to-date feature and related configurations (#298295)

This commit is contained in:
Henning Dieterichs
2026-02-27 18:16:26 +01:00
committed by GitHub
parent 98ad6b67c2
commit 5b7dafcb12
12 changed files with 550 additions and 67 deletions

View File

@@ -0,0 +1,38 @@
{
"name": "vscode-extras",
"displayName": "VS Code Extras",
"description": "Extra utility features for the VS Code selfhost workspace",
"engines": {
"vscode": "^1.88.0"
},
"version": "0.0.1",
"publisher": "ms-vscode",
"categories": [
"Other"
],
"activationEvents": [
"workspaceContains:src/vscode-dts/vscode.d.ts"
],
"main": "./out/extension.js",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
},
"license": "MIT",
"scripts": {
"compile": "gulp compile-extension:vscode-extras",
"watch": "gulp watch-extension:vscode-extras"
},
"contributes": {
"configuration": {
"title": "VS Code Extras",
"properties": {
"vscode-extras.npmUpToDateFeature.enabled": {
"type": "boolean",
"default": true,
"description": "Show a status bar warning when npm dependencies are out of date."
}
}
}
}
}