67 lines
1.2 KiB
JSON
67 lines
1.2 KiB
JSON
{
|
|
"main": "bin/extension.js",
|
|
"name": "ktxt2",
|
|
"description": "",
|
|
"repository": {
|
|
"url": "https://github.com/NQNStudios/kisslang",
|
|
"type:": "git"
|
|
},
|
|
"homepage": "",
|
|
"categories": [],
|
|
"extensionPack": [],
|
|
"dependencies": {
|
|
"monaco-editor": "^0.36.1"
|
|
},
|
|
"publisher": "NQNStudios",
|
|
"contributes": {
|
|
"keybindings": [
|
|
{
|
|
"command": "ktxt2.importKTxt2InputFile",
|
|
"mac": "Cmd+; Cmd+i",
|
|
"key": "Ctrl+; Ctrl+i"
|
|
}
|
|
],
|
|
"customEditors": [
|
|
{
|
|
"selector": [
|
|
{
|
|
"filenamePattern": "*.*.*.ktxt2"
|
|
}
|
|
],
|
|
"priority": "default",
|
|
"viewType": "ktxt2.splitView",
|
|
"displayName": "KTxt2 Split View"
|
|
}
|
|
],
|
|
"commands": [
|
|
{
|
|
"title": "ktxt2: Import a file to a new KTxt2 file",
|
|
"command": "ktxt2.importKTxt2InputFile"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"title": "ktxt2",
|
|
"properties": {
|
|
"ktxt2.nameExceptions": {
|
|
"description": "Treat these tokens as names",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"type": [
|
|
"array"
|
|
],
|
|
"default": []
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"engines": {
|
|
"vscode": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"vsce": "^2.15.0"
|
|
},
|
|
"version": "0.0.0",
|
|
"activationEvents": [],
|
|
"displayName": ""
|
|
} |