80 lines
3.4 KiB
JSON
80 lines
3.4 KiB
JSON
{
|
|
"name": "type-script-helper",
|
|
"displayName": "Type Script Helper",
|
|
"description": "Helper for VS Code in TypeScript",
|
|
"publisher": "IFX",
|
|
"repository": "https://github.com/mikepharesjr/YO-VSCode/tree/master/type-script-helper",
|
|
"version": "1.2.1",
|
|
"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.listToListFamily",
|
|
"onCommand:helper.listToListWrappedComma",
|
|
"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.convertToRegularExpression", "title": "Convert to Regular Expression" },
|
|
{ "command": "helper.expandSql", "title": "Expand Sql" },
|
|
{ "command": "helper.listToListFamily", "title": "List to list family (Kristy, Mike ...)" },
|
|
{ "command": "helper.listToListWrappedComma", "title": "List to list wrapped comma" },
|
|
{ "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"
|
|
}
|
|
}
|