Mind_Reader/package.json

373 lines
8.4 KiB
JSON
Raw Normal View History

2021-09-25 21:18:41 +00:00
{
"name": "mind-reader",
"displayName": "Mind_Reader",
"repository": "https://github.com/SingleSemesterSnobs/Mind_Reader",
2021-09-25 21:18:41 +00:00
"description": "",
"version": "0.0.1",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "mind-reader.helloWorld",
"title": "Hello World"
},
{
"command": "mind-reader.increaseFontScale",
"title": "Increase Font Scale"
},
{
"command": "mind-reader.decreaseFontScale",
"title": "Decrease Font Scale"
},
{
"command": "mind-reader.resetFontScale",
"title": "Reset Font Scale"
},
{
"command": "mind-reader.increaseEditorScale",
"title": "Increase Editor Scale"
},
{
"command": "mind-reader.decreaseEditorScale",
"title": "Decrease Editor Scale"
},
{
"command": "mind-reader.resetEditorScale",
"title": "Reset Editor Scale"
},
{
"command": "mind-reader.selectTheme",
"title": "Select Theme"
},
{
"command": "mind-reader.openWebview",
"title": "Mind Reader Webview"
},
{
"command": "mind-reader.openKeyBindWin",
"title": "Key Bindings for Windows"
},
{
"command": "mind-reader.openKeyBindMac",
"title": "Key Bindings for Mac"
},
{
"command": "mind-reader.runLineContext",
"title": "Run Line Context"
},
{
"command": "mind-reader.runCursorContext",
"title": "Run Cursor Context"
2021-11-18 01:36:18 +00:00
},
{
"command": "mind-reader.getIndent",
"title": "Get Line Indentation"
},
2021-11-18 18:00:46 +00:00
{
"command": "mind-reader.connectHub",
"title": "Connect LEGO Hub"
2021-11-18 18:00:46 +00:00
},
{
"command": "mind-reader.disconnectHub",
"title": "Disconnect LEGO Hub"
2021-11-18 18:00:46 +00:00
},
{
"command": "mind-reader.uploadCurrentFile",
"title": "Upload current file to LEGO Hub"
2021-11-18 18:00:46 +00:00
},
{
"command": "mind-reader.runProgram",
"title": "Run a program from the LEGO Hub"
},
{
"command": "mind-reader.stopExecution",
"title": "Stop running program on the LEGO Hub"
2021-11-18 18:00:46 +00:00
},
{
"command": "mind-reader.deleteProgram",
"title": "Delete a program from the LEGO Hub"
2021-11-18 18:00:46 +00:00
}
2021-11-18 01:36:18 +00:00
],
"keybindings": [
{
"command": "mind-reader.decreaseFontScale",
"key": "numpad_subtract",
"mac": "d"
2021-11-18 01:36:18 +00:00
},
{
"command": "mind-reader.increaseFontScale",
"key": "numpad_add",
"mac": "[NumpadAdd]"
2021-11-18 01:36:18 +00:00
},
{
"command": "mind-reader.increaseEditorScale",
"key": "shift+numpad_add",
"mac": "Shift+[NumpadAdd]"
2021-11-18 01:36:18 +00:00
},
{
"command": "mind-reader.decreaseEditorScale",
"key": "shift+numpad_subtract",
"mac": "Shift+[NumpadSubtract]"
2021-11-18 01:36:18 +00:00
},
{
"command": "mind-reader.resetEditorScale",
"key": "shift+enter",
"mac": "Shift+[Enter]"
},
{
"command": "mind-reader.showAllSymbols",
"key": "Ctrl+T",
"mac": "Cmd+[KeyT]"
},
{
"command": "mind-reader.gotoLine",
"key": "CTRL+G",
"mac": "Cmd+[KeyG]"
},
{
"command": "mind-reader.quickOpen",
"key": "CTRL+P",
"mac": "Cmd+[KeyP]"
},
{
"command": "mind-reader.gotoSymbol",
"key": "Ctrl+Shift+O",
"mac": "Cmd+Shift+[KeyO]"
},
{
"command": "mind-reader.showProblems",
"key": "Ctrl+Shift+M",
"mac": "Cmd+Shift+[KeyM]"
},
{
"command": "mind-reader.nextInFiles",
"key": "F8",
"mac": "[F8]"
},
{
"command": "mind-reader.prevInFiles",
"key": "Shift+F8",
"mac": "Shift+[F8]"
},
{
"command": "mind-reader.quickOpenPreviousRecentlyUsedEditorInGroup",
"key": "Ctrl+Tab",
"mac": "Cmd+[Tab]"
},
{
"command": "mind-reader.navigateBack",
"key": "Ctrl+Alt+-",
"mac": "Cmd+Alt+[Minus]"
},
{
"command": "mind-reader.getQuickInputBack",
"key": "Ctrl+Alt+-",
"mac": "Cmd+Alt+[Minus]"
},
{
"command": "mind-reader.navigateForward",
"key": "Ctrl+Shift+-",
"mac": "Cmd+Shift+[Minus]"
},
{
"command": "mind-reader.selectTheme",
"key": "Ctrl+Shift+1",
"mac": "Cmd+Shift+[Digit1]"
},
{
"command": "mind-reader.getIndent",
"key": "Shift+Tab",
"mac": "Shift+[Tab]"
},
{
"command": "mind-reader.openKeyBindWin",
"key": "Ctrl+Shift+8",
"mac": "Cmd+Shift+8"
},
{
"command": "mind-reader.openKeyBindMac",
"key": "Ctrl+Shift+9",
"mac": "Cmd+Shift+9"
}
],
2021-10-19 16:52:58 +00:00
"menus": {
"editor/context": [
{
"submenu": "mind-reader.editor.context",
2021-10-19 17:12:03 +00:00
"group": "mind-reader"
2021-10-19 16:52:58 +00:00
}
],
"mind-reader.editor.context": [
2021-10-19 17:12:03 +00:00
{
2021-10-20 19:25:11 +00:00
"command": "mind-reader.increaseEditorScale",
2021-10-19 17:12:03 +00:00
"group": "mind-reader",
2021-10-20 19:25:11 +00:00
"when": "activeEditor"
},
2021-10-19 16:52:58 +00:00
{
2021-10-20 19:25:11 +00:00
"command": "mind-reader.decreaseFontScale",
"group": "mind-reader",
"when": "activeEditor"
},
2021-10-19 16:52:58 +00:00
{
2021-10-20 19:25:11 +00:00
"command": "mind-reader.resetFontScale",
"group": "mind-reader",
"when": "activeEditor"
},
{
"command": "mind-reader.increaseEditorScale",
"group": "mind-reader",
"when": "activeEditor"
},
{
"command": "mind-reader.decreaseEditorScale",
"group": "mind-reader",
"when": "activeEditor"
},
{
"command": "mind-reader.resetEditorScale",
"group": "mind-reader",
"when": "activeEditor"
},
{
"command": "mind-reader.selectTheme",
"group": "mind-reader",
"when": "activeEditor"
},
{
"command": "mind-reader.openWebview",
"group": "mind-reader",
"when": "activeEditor"
},
{
"command": "mind-reader.openKeyBindWin",
"group": "mind-reader",
"when": "activeEditor"
},
{
"command": "mind-reader.openKeyBindMac",
"group": "mind-reader",
"when": "activeEditor"
}
2021-10-19 16:52:58 +00:00
]
},
"submenus": [
2021-10-19 17:12:03 +00:00
{
"id": "mind-reader.editor.context",
"label": "Mind_Reader"
}
2021-10-19 16:52:58 +00:00
],
2021-10-20 19:25:11 +00:00
"configuration": {
2021-10-12 17:43:10 +00:00
"title": "Mind_Reader",
"properties": {
2021-10-12 19:18:29 +00:00
"mindreader.productType": {
2021-10-20 19:25:11 +00:00
"type": "string",
2021-10-12 19:18:29 +00:00
"description": "Specifies the LEGO® product.",
2021-10-12 17:43:10 +00:00
"default": "MINDSTORMS® EV3",
2021-10-20 19:25:11 +00:00
"enum": [
"MINDSTORMS® EV3",
"SPIKE™ Prime"
],
2021-10-12 19:18:29 +00:00
"enumDescriptions": [
"LEGO® MINDSTORMS® EV3 (31313)",
"LEGO® Education SPIKE™ Prime Set (45678)"
]
2021-10-12 17:43:10 +00:00
},
"mindreader.reader.screenReader": {
2021-10-12 19:18:29 +00:00
"type": "string",
"description": "Specifies which screen reader to optimize for.",
2021-10-12 17:43:10 +00:00
"default": "NVDA",
2021-10-20 19:25:11 +00:00
"enum": [
"NVDA",
"Orca",
"VoiceOver"
],
2021-10-12 19:18:29 +00:00
"enumDescriptions": [
"NonVisual Desktop Access (Windows)",
"Orca (Linux)",
"Apple VoiceOver (macOS)"
]
},
"mindreader.reader.contextWindow": {
"type": "number",
"description": "The number of words around the cursor to use when reading the cursor context",
"default": 1
},
2021-10-12 19:18:29 +00:00
"mindreader.connection.connectAutomatically": {
"type": "boolean",
"description": "Specifies whether to try to automatically detect and communicate with a connected Hub.",
"default": "true"
},
"mindreader.connection.portPath": {
"type": "string",
"markdownDescription": "Specifies the serial port path to use if `#mindreader.connectAutomatically#` is not set."
2021-11-18 18:00:46 +00:00
},
"mindreader.connection.clearOutputOnRun": {
"type": "boolean",
"description": "Whether to clear the output each time the program is run",
"default": "true"
2021-10-12 17:43:10 +00:00
}
}
},
2021-11-18 01:36:18 +00:00
"views": {
"MindReader": [
2021-11-18 01:36:18 +00:00
{
"id": "accessActions",
"name": "Access Actions",
"icon": "media/dep.svg",
"contextualTitle": "Accessibility Menu Actions"
},
{
"id": "hubActions",
"name": "Hub Actions",
"icon": "media/dep.svg",
"contextualTitle": "Hub Connection Actions"
2021-11-18 01:36:18 +00:00
}
]
},
"viewsContainers": {
"activitybar": [
{
"id": "MindReader",
"title": "MindReader Actions",
2021-11-18 01:36:18 +00:00
"icon": "media/dep.svg"
}
]
}
2021-09-25 21:18:41 +00:00
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
2021-11-18 01:36:18 +00:00
"@types/node": "16.x",
"@types/serialport": "^8.0.2",
"@types/vscode": "^1.60.0",
2021-09-25 21:18:41 +00:00
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
2021-11-18 01:36:18 +00:00
"@vscode/test-electron": "^1.6.2",
"eslint": "^7.27.0",
2021-09-25 21:18:41 +00:00
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.3.2",
2021-11-18 01:36:18 +00:00
"vscode-test": "^1.5.2"
},
"dependencies": {
"serialport": "^9.2.5"
2021-09-25 21:18:41 +00:00
}
}