mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2024-11-15 03:35:59 +00:00
25b23c514b
The following commands adjust the font scale in the editor only: - mind-reader.increaseFontScale - mind-reader.decreaseFontScale - mind-reader.resetFontScale The following commands adjust the overall editor scale: - mind-reader.increaseEditorScale - mind-reader.decreaseEditorScale - mind-reader.resetEditorScale
71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "mind-reader",
|
|
"displayName": "Mind_Reader",
|
|
"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"
|
|
}
|
|
]
|
|
},
|
|
"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/vscode": "^1.60.0",
|
|
"@types/glob": "^7.1.3",
|
|
"@types/mocha": "^8.2.2",
|
|
"@types/node": "14.x",
|
|
"eslint": "^7.27.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.26.0",
|
|
"@typescript-eslint/parser": "^4.26.0",
|
|
"glob": "^7.1.7",
|
|
"mocha": "^8.4.0",
|
|
"typescript": "^4.3.2",
|
|
"vscode-test": "^1.5.2",
|
|
"@vscode/test-electron": "^1.6.2"
|
|
}
|
|
}
|