move project folder to repo root
This commit is contained in:
130
package.json
Normal file
130
package.json
Normal file
@@ -0,0 +1,130 @@
|
||||
{
|
||||
"main": "bin/extension.js",
|
||||
"name": "kiss-vscode",
|
||||
"description": "Kiss language plugin",
|
||||
"repository": {
|
||||
"url": "https://github.com/NQNStudios/kisslang.git",
|
||||
"type:": "git"
|
||||
},
|
||||
"homepage": "https://github.com/NQNStudios/kisslang/blob/master/projects/kiss-vscode/README.md",
|
||||
"categories": [
|
||||
"Programming Languages",
|
||||
"Extension Packs"
|
||||
],
|
||||
"extensionPack": [
|
||||
"2gua.rainbow-brackets"
|
||||
],
|
||||
"publisher": "NQNStudios",
|
||||
"contributes": {
|
||||
"grammars": [
|
||||
{
|
||||
"language": "kiss",
|
||||
"path": "./syntaxes/kiss.tmLanguage",
|
||||
"scopeName": "source.kiss"
|
||||
},
|
||||
{
|
||||
"path": "./syntaxes/codeblock.json",
|
||||
"injectTo": [
|
||||
"text.html.markdown"
|
||||
],
|
||||
"scopeName": "markdown.kiss.codeblock",
|
||||
"embeddedLanguages": {
|
||||
"meta.embedded.block.superjs": "kiss"
|
||||
}
|
||||
}
|
||||
],
|
||||
"keybindings": [
|
||||
{
|
||||
"command": "kiss-vscode.updateExtension",
|
||||
"mac": "Cmd+; Cmd+u",
|
||||
"key": "Ctrl+; Ctrl+u"
|
||||
},
|
||||
{
|
||||
"command": "kiss-vscode.evalAndPrint",
|
||||
"mac": "Cmd+; Cmd+e",
|
||||
"key": "Ctrl+; Ctrl+e"
|
||||
},
|
||||
{
|
||||
"command": "kiss-vscode.newKissClass",
|
||||
"mac": "Cmd+; Cmd+n",
|
||||
"key": "Ctrl+; Ctrl+n"
|
||||
},
|
||||
{
|
||||
"command": "kiss-vscode.showCorrespondingFile",
|
||||
"mac": "Cmd+; Cmd+f",
|
||||
"key": "Ctrl+; Ctrl+f"
|
||||
},
|
||||
{
|
||||
"command": "kiss-vscode.insertUTestCase",
|
||||
"mac": "Cmd+; Cmd+c",
|
||||
"key": "Ctrl+; Ctrl+c"
|
||||
},
|
||||
{
|
||||
"command": "kiss-vscode.mapLinesSync",
|
||||
"mac": "Cmd+; Cmd+m",
|
||||
"key": "Ctrl+; Ctrl+m"
|
||||
},
|
||||
{
|
||||
"command": "kiss-vscode.sortLinesSync",
|
||||
"mac": "Cmd+; Cmd+s",
|
||||
"key": "Ctrl+; Ctrl+s"
|
||||
}
|
||||
],
|
||||
"commands": [
|
||||
{
|
||||
"title": "kiss-vscode: Update and reinstall the Kiss-Vscode extension you are editing",
|
||||
"command": "kiss-vscode.updateExtension"
|
||||
},
|
||||
{
|
||||
"title": "kiss-vscode: Check test.sh, then update and reinstall the kiss-vscode extension you are editing",
|
||||
"command": "kiss-vscode.testAndUpdateExtension"
|
||||
},
|
||||
{
|
||||
"title": "kiss-vscode: Evaluate and print a kiss expression's value",
|
||||
"command": "kiss-vscode.evalAndPrint"
|
||||
},
|
||||
{
|
||||
"title": "kiss-vscode: Create a new kiss class",
|
||||
"command": "kiss-vscode.newKissClass"
|
||||
},
|
||||
{
|
||||
"title": "kiss-vscode: Open the corresponding .kiss/.hx file to this one",
|
||||
"command": "kiss-vscode.showCorrespondingFile"
|
||||
},
|
||||
{
|
||||
"title": "kiss-vscode: Generate a UTest test case in this .hx/.kiss file",
|
||||
"command": "kiss-vscode.insertUTestCase"
|
||||
},
|
||||
{
|
||||
"title": "kiss-vscode: Transform the selected text lines using a String->String kiss function",
|
||||
"command": "kiss-vscode.mapLinesSync"
|
||||
},
|
||||
{
|
||||
"title": "kiss-vscode: Sort the selected text lines using a (String,String)->Int comparator function",
|
||||
"command": "kiss-vscode.sortLinesSync"
|
||||
}
|
||||
],
|
||||
"languages": [
|
||||
{
|
||||
"id": "kiss",
|
||||
"configuration": "./Kiss.configuration.json",
|
||||
"extensions": [
|
||||
".kiss"
|
||||
],
|
||||
"aliases": [
|
||||
"Kiss",
|
||||
"kiss"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"engines": {
|
||||
"vscode": "^1.4.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"vsce": "^2.15.0"
|
||||
},
|
||||
"version": "0.0.18",
|
||||
"activationEvents": [],
|
||||
"displayName": "kiss-vscode"
|
||||
}
|
||||
Reference in New Issue
Block a user