Files
vscode/extensions/terminal-suggest/package.json
2024-09-17 16:37:27 -07:00

48 lines
1012 B
JSON

{
"name": "terminal-suggest",
"publisher": "vscode",
"displayName": "%displayName%",
"description": "%description%",
"version": "1.0.1",
"private": true,
"license": "MIT",
"engines": {
"vscode": "0.10.x"
},
"icon": "images/npm_icon.png",
"categories": [
"Other"
],
"enabledApiProposals": [
"terminalCompletionProvider"
],
"scripts": {
"compile": "npx gulp compile-extension:npm",
"watch": "npx gulp watch-extension:npm"
},
"dependencies": {
"find-up": "^5.0.0",
"find-yarn-workspace-root": "^2.0.0",
"jsonc-parser": "^3.2.0",
"minimatch": "^5.1.6",
"request-light": "^0.7.0",
"which": "^4.0.0",
"which-pm": "^2.1.1",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@types/minimatch": "^5.1.2",
"@types/node": "20.x",
"@types/which": "^3.0.0"
},
"main": "./out/npmMain",
"activationEvents": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode.git"
}
}