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

141 lines
3.7 KiB
JSON
Raw 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": {
2021-07-14 03:47:49 -07:00
"vscode": "^1.58.0"
2016-12-30 11:00:42 +01:00
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:terminalTest.createAndSend",
2018-04-11 09:52:28 -07:00
"onCommand:terminalTest.createTerminal",
2019-06-25 10:52:45 -07:00
"onCommand:terminalTest.createTerminalHideFromUser",
2018-04-11 09:52:28 -07:00
"onCommand:terminalTest.createZshLoginShell",
"onCommand:terminalTest.dimensions",
2018-04-11 09:52:28 -07:00
"onCommand:terminalTest.dispose",
"onCommand:terminalTest.hide",
2019-02-04 10:15:56 -08:00
"onCommand:terminalTest.onDidChangeTerminalDimensions",
"onCommand:terminalTest.onDidWriteTerminalData",
2018-04-11 09:52:28 -07:00
"onCommand:terminalTest.processId",
2020-08-10 10:22:33 -07:00
"onCommand:terminalTest.registerTerminalLinkProvider",
2018-04-11 09:52:28 -07:00
"onCommand:terminalTest.sendText",
"onCommand:terminalTest.sendTextNoNewLine",
"onCommand:terminalTest.show",
"onCommand:terminalTest.showPreserveFocus",
"onCommand:terminalTest.terminals",
"onCommand:terminalTest.updateEnvironment",
2021-06-15 17:57:21 +01:00
"onCommand:terminalTest.clearEnvironment",
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 ./",
"lint": "eslint \"src/**/*.ts\""
2016-12-30 11:00:42 +01:00
},
"devDependencies": {
2022-05-24 15:12:22 -07:00
"@types/node": "^16.11.7",
2021-07-14 03:47:49 -07:00
"@types/vscode": "^1.58.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
2022-09-27 15:01:41 -07:00
"typescript": "^4.8.4"
2016-12-30 11:00:42 +01:00
}
}