Files
vscode-extension-samples/terminal-sample/package.json

132 lines
3.1 KiB
JSON
Raw Permalink Normal View History

{
2016-12-30 11:00:42 +01:00
"name": "vscode-terminal-api-example",
"displayName": "vscode-terminal-api-example",
"description": "abc",
"version": "0.0.1",
"publisher": "vscode-samples",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
2016-12-30 11:00:42 +01:00
"engines": {
"vscode": "^1.100.0"
2016-12-30 11:00:42 +01:00
},
2024-11-26 19:16:22 -08:00
"enabledApiProposals": [
"terminalDataWriteEvent",
"terminalDimensions"
],
2016-12-30 11:00:42 +01:00
"categories": [
"Other"
],
"activationEvents": [
2021-06-16 10:49:52 +01:00
"onTerminalProfile:terminalTest.terminal-profile"
2016-12-30 11:00:42 +01:00
],
2018-12-17 10:21:13 -08:00
"main": "./out/extension.js",
2016-12-30 11:00:42 +01:00
"contributes": {
"commands": [
2018-04-11 09:52:28 -07:00
{
"command": "terminalTest.createAndSend",
"title": "Terminal API: Create Terminal and Immediately Send"
},
2016-12-30 11:00:42 +01:00
{
"command": "terminalTest.createTerminal",
"title": "Terminal API: Create Terminal"
},
2019-06-25 10:52:45 -07:00
{
"command": "terminalTest.createTerminalHideFromUser",
"title": "Terminal API: Create Terminal (hideFromUser)"
},
2016-12-30 11:00:42 +01:00
{
2018-04-11 09:52:28 -07:00
"command": "terminalTest.createZshLoginShell",
"title": "Terminal API: Create Terminal (zsh login shell)"
2016-12-30 11:00:42 +01:00
},
{
"command": "terminalTest.dimensions",
"title": "Terminal API: Set dimensions"
},
2016-12-30 11:00:42 +01:00
{
2018-04-11 09:52:28 -07:00
"command": "terminalTest.dispose",
"title": "Terminal API: Dispose"
2016-12-30 11:00:42 +01:00
},
{
2018-04-11 09:52:28 -07:00
"command": "terminalTest.hide",
"title": "Terminal API: Hide"
},
2018-04-20 11:23:05 -07:00
{
"command": "terminalTest.onDidWriteTerminalData",
2018-04-20 11:23:05 -07:00
"title": "Terminal API: Attach data listener"
},
2019-02-04 10:15:56 -08:00
{
"command": "terminalTest.onDidChangeTerminalDimensions",
"title": "Terminal API: Attach dimensions listener"
},
2018-04-11 09:52:28 -07:00
{
"command": "terminalTest.processId",
"title": "Terminal API: Get process ID"
2016-12-30 11:00:42 +01:00
},
{
"command": "terminalTest.sendText",
"title": "Terminal API: Send Text"
},
{
"command": "terminalTest.sendTextNoNewLine",
"title": "Terminal API: Send Text (no implied \\n)"
},
{
2018-04-11 09:52:28 -07:00
"command": "terminalTest.show",
"title": "Terminal API: Show"
2016-12-30 11:00:42 +01:00
},
{
2018-04-11 09:52:28 -07:00
"command": "terminalTest.showPreserveFocus",
"title": "Terminal API: Show (preserving focus)"
2018-04-09 11:02:01 -07:00
},
{
"command": "terminalTest.terminals",
"title": "Terminal API: View terminals"
},
{
"command": "terminalTest.updateEnvironment",
"title": "Terminal API: Update environment"
},
{
"command": "terminalTest.clearEnvironment",
"title": "Terminal API: Clear environment"
2020-08-10 10:22:33 -07:00
},
{
"command": "terminalTest.registerTerminalLinkProvider",
"title": "Terminal API: Register link provider"
2016-12-30 11:00:42 +01:00
}
2021-06-15 17:57:21 +01:00
],
"terminal": {
"profiles": [
{
2021-06-16 09:02:06 +01:00
"id": "terminalTest.terminal-profile",
2021-06-15 17:57:21 +01:00
"icon": "terminal",
"title": "Terminal API Profile"
}
]
}
2016-12-30 11:00:42 +01:00
},
"scripts": {
2018-04-09 06:30:41 -07:00
"vscode:prepublish": "npm run compile",
2019-05-30 18:28:15 -07:00
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
2024-11-26 19:16:22 -08:00
"lint": "eslint",
"download-api": "dts dev",
"postinstall": "npm run download-api"
2016-12-30 11:00:42 +01:00
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
2025-08-06 23:43:14 -07:00
"@types/node": "^22",
"@types/vscode": "^1.100.0",
"eslint": "^9.13.0",
2025-08-06 23:43:14 -07:00
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0"
2024-11-26 19:16:22 -08:00
},
"dependencies": {
"@vscode/dts": "^0.4.1"
2016-12-30 11:00:42 +01:00
}
2025-08-06 23:43:14 -07:00
}