Files
vscode/extensions/terminal-suggest/package.json
Matt Bierner 08535d9c5e Fix terminal-suggest extension icon
Same root cause as #299396 but only caused the icon to be missing so not critical
2026-03-04 23:13:55 -08:00

54 lines
1.3 KiB
JSON

{
"name": "terminal-suggest",
"publisher": "vscode",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.1",
"private": true,
"license": "MIT",
"icon": "./media/icon.png",
"engines": {
"vscode": "^1.95.0"
},
"categories": [
"Other"
],
"enabledApiProposals": [
"terminalCompletionProvider",
"terminalShellEnv"
],
"contributes": {
"commands": [
{
"command": "terminal.integrated.suggest.clearCachedGlobals",
"category": "Terminal",
"title": "%terminal.integrated.suggest.clearCachedGlobals%"
}
],
"terminal": {
"completionProviders": [
{
"description": "Show suggestions for commands, arguments, flags, and file paths based upon the Fig spec."
}
]
}
},
"scripts": {
"compile": "npx gulp compile-extension:terminal-suggest",
"watch": "npx gulp watch-extension:terminal-suggest",
"pull-zshbuiltins": "node ./scripts/pullZshBuiltins.ts",
"pull-fishbuiltins": "node ./scripts/pullFishBuiltins.ts"
},
"main": "./out/terminalSuggestMain",
"activationEvents": [
"onTerminalShellIntegration:*"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
},
"devDependencies": {
"@types/node": "^22.18.10"
}
}