mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-20 08:38:56 +01:00
Add vscode-extras extension with npm up-to-date feature and related configurations (#298295)
This commit is contained in:
committed by
GitHub
parent
98ad6b67c2
commit
5b7dafcb12
38
.vscode/extensions/vscode-extras/package.json
vendored
Normal file
38
.vscode/extensions/vscode-extras/package.json
vendored
Normal 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."
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user