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

121 lines
3.2 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",
2016-12-30 11:00:42 +01:00
"engines": {
2019-07-15 11:41:23 -07:00
"vscode": "^1.33.0"
2016-12-30 11:00:42 +01:00
},
"enableProposedApi": true,
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",
"onCommand:terminalTest.sendText",
"onCommand:terminalTest.sendTextNoNewLine",
"onCommand:terminalTest.show",
"onCommand:terminalTest.showPreserveFocus",
"onCommand:terminalTest.terminals",
"onCommand:terminalTest.updateEnvironment",
"onCommand:terminalTest.clearEnvironment"
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"
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 . --ext .ts,.tsx"
2016-12-30 11:00:42 +01:00
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.33.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"typescript": "^3.9.4"
2016-12-30 11:00:42 +01:00
}
}