Files
text-convert-tool/tct-vscode-editor/package.json

67 lines
1.2 KiB
JSON

{
"main": "bin/extension.js",
"name": "tct-vscode-editor",
"description": "",
"repository": {
"url": "",
"type:": "git"
},
"homepage": "",
"categories": [],
"extensionPack": [],
"dependencies": {
"monaco-editor": "^0.38.0"
},
"publisher": "",
"contributes": {
"keybindings": [
{
"command": "tct-vscode-editor.importTCTInputFile",
"mac": "Cmd+; Cmd+i",
"key": "Ctrl+; Ctrl+i"
}
],
"customEditors": [
{
"selector": [
{
"filenamePattern": "tct.txt"
}
],
"priority": "default",
"viewType": "tct.splitView",
"displayName": "TCT Split View"
}
],
"commands": [
{
"title": "tct-vscode-editor: Import a file to a new TCT file",
"command": "tct-vscode-editor.importTCTInputFile"
}
],
"configuration": {
"title": "tct-vscode-editor",
"properties": {
"tct-vscode-editor.nameExceptions": {
"description": "Treat these tokens as names",
"items": {
"type": "string"
},
"type": [
"array"
],
"default": []
}
}
}
},
"engines": {
"vscode": "^1.4.0"
},
"devDependencies": {
"@vscode/vsce": "^2.15.0"
},
"version": "0.0.0",
"activationEvents": [],
"displayName": ""
}