Helper
This commit is contained in:
74
type-script-helper/package.json
Normal file
74
type-script-helper/package.json
Normal file
@ -0,0 +1,74 @@
|
||||
{
|
||||
"name": "type-script-helper",
|
||||
"displayName": "Type Script Helper",
|
||||
"description": "Helper for VS Code in TypeScript",
|
||||
"publisher": "IFX",
|
||||
"version": "1.1.5",
|
||||
"engines": {
|
||||
"vscode": "^1.40.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"main": "./out/extension.js",
|
||||
"activationEvents": [
|
||||
"onCommand:helper.addCSharpComment",
|
||||
"onCommand:helper.addVBComment",
|
||||
"onCommand:helper.convertToRegularExpression",
|
||||
"onCommand:helper.expandSql",
|
||||
"onCommand:helper.prettySql",
|
||||
"onCommand:helper.removeComment",
|
||||
"onCommand:helper.sortNormal",
|
||||
"onCommand:helper.unwrapSql",
|
||||
"onCommand:helper.wrapSqlCSharp",
|
||||
"onCommand:helper.wrapSqlVB"
|
||||
],
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{ "command": "helper.addCSharpComment", "title": "Add C# Comment" },
|
||||
{ "command": "helper.addVBComment", "title": "Add VB Comment" },
|
||||
{ "command": "helper.expandSql", "title": "Expand Sql" },
|
||||
{ "command": "helper.convertToRegularExpression", "title": "Convert to Regular Expression" },
|
||||
{ "command": "helper.prettySql", "title": "Pretty Sql" },
|
||||
{ "command": "helper.removeComment", "title": "Remove comment" },
|
||||
{ "command": "helper.sortNormal", "title": "My Sort lines (ascending, case sensitive)" },
|
||||
{ "command": "helper.unwrapSql", "title": "Un-wrap Sql" },
|
||||
{ "command": "helper.wrapSqlCSharp", "title": "Wrap Sql for C#" },
|
||||
{ "command": "helper.wrapSqlVB", "title": "Wrap Sql for VB" }
|
||||
],
|
||||
"keybindings": [
|
||||
{
|
||||
"command": "helper.unwrapSql",
|
||||
"key": "shift + f9",
|
||||
"when": "editorTextFocus"
|
||||
}
|
||||
],
|
||||
"menus": {
|
||||
"editor/context": [
|
||||
{
|
||||
"command": "helper.unwrapSql",
|
||||
"when": "editorTextFocus",
|
||||
"group": "helper@1"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "npm run compile",
|
||||
"compile": "tsc -p ./",
|
||||
"watch": "tsc -watch -p ./",
|
||||
"pretest": "npm run compile",
|
||||
"test": "node ./out/test/runTest.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/glob": "^7.1.1",
|
||||
"@types/mocha": "^5.2.7",
|
||||
"@types/node": "^12.11.7",
|
||||
"@types/vscode": "^1.40.0",
|
||||
"glob": "^7.1.5",
|
||||
"mocha": "^6.2.2",
|
||||
"typescript": "^3.6.4",
|
||||
"tslint": "^5.20.0",
|
||||
"vscode-test": "^1.2.2"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user