move standalone projects into own directory
This commit is contained in:
67
projects/_standalone/ktxt2/package.json
Normal file
67
projects/_standalone/ktxt2/package.json
Normal file
@@ -0,0 +1,67 @@
|
||||
{
|
||||
"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": ""
|
||||
}
|
||||
Reference in New Issue
Block a user