-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
94 lines (94 loc) · 2.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "matlab-interactive-terminal",
"displayName": "Matlab Interactive Terminal",
"description": "Interactive MATLAB terminal for Visual Studio Code, compatible with Windows, Mac and Linux",
"version": "0.4.0",
"publisher": "apommel",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/apommel/vscode-matlab-interactive-terminal.git"
},
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"onLanguage:matlab",
"onCommand:matlab-interactive-terminal.openMatlabTerminal",
"onCommand:matlab-interactive-terminal.runMatlabScript",
"onCommand:matlab-interactive-terminal.runMatlabSelection",
"onTerminalProfile:matlab-interactive-terminal.terminal-profile"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "matlab-interactive-terminal.openMatlabTerminal",
"title": "Open a MATLAB Terminal"
},
{
"command": "matlab-interactive-terminal.runMatlabScript",
"title": "Run current MATLAB Script"
},
{
"command": "matlab-interactive-terminal.runMatlabSelection",
"title": "Run current selection in MATLAB"
}
],
"configuration": {
"title": "Matlab Interactive Terminal",
"properties": {
"matlab-interactive-terminal.pythonPath": {
"type": "string",
"default": null,
"description": "Specifies the path to the Python executable to use (if leaved blank, Python in PATH is used)"
},
"matlab-interactive-terminal.unicodeSwitch": {
"type": "boolean",
"default": "false",
"description": "Displays Unicode characters (ex: CJK characters) in MATLAB output (N.B.: output will not be in real time)"
},
"matlab-interactive-terminal.CursorBack": {
"type": "boolean",
"default": "true",
"description": "Decides whether to make the cursor fall back onto your editor when you execute the command 'Run current selection' "
}
}
},
"terminal": {
"profiles": [
{
"id": "matlab-interactive-terminal.terminal-profile",
"icon": "variable-group",
"title": "MATLAB"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.67",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.30.0",
"glob": "^7.1.5",
"mocha": "^6.2.3",
"typescript": "^4.3.5",
"vscode-test": "^1.4.0"
},
"dependencies": {}
}