90 lines
4.4 KiB
JSON
90 lines
4.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.3.1",
|
|
"engines": {
|
|
"vscode": "^1.40.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"main": "./out/extension.js",
|
|
"activationEvents": [
|
|
"onCommand:readOnlyLinesHelper.searchGoogle",
|
|
"onCommand:replaceLinesHelper.addCSharpComment",
|
|
"onCommand:replaceLinesHelper.addVBComment",
|
|
"onCommand:replaceLinesHelper.convertToRegularExpression",
|
|
"onCommand:replaceLinesHelper.cutEachLine",
|
|
"onCommand:replaceLinesHelper.expandSql",
|
|
"onCommand:replaceLinesHelper.listToListFamily",
|
|
"onCommand:replaceLinesHelper.listToListWrappedComma",
|
|
"onCommand:replaceLinesHelper.prettySql",
|
|
"onCommand:replaceLinesHelper.quickFixCS0108",
|
|
"onCommand:replaceLinesHelper.quickFixPublic",
|
|
"onCommand:replaceLinesHelper.removeComment",
|
|
"onCommand:replaceLinesHelper.sortLength",
|
|
"onCommand:replaceLinesHelper.sortNormal",
|
|
"onCommand:replaceLinesHelper.unwrapSql",
|
|
"onCommand:replaceLinesHelper.wrapSqlCSharp",
|
|
"onCommand:replaceLinesHelper.wrapSqlVB"
|
|
],
|
|
"contributes": {
|
|
"commands": [
|
|
{ "command": "readOnlyLinesHelper.searchGoogle", "title": "Search Google" },
|
|
{ "command": "replaceLinesHelper.addCSharpComment", "title": "Add C# Comment" },
|
|
{ "command": "replaceLinesHelper.addVBComment", "title": "Add VB Comment" },
|
|
{ "command": "replaceLinesHelper.convertToRegularExpression", "title": "Convert to Regular Expression" },
|
|
{ "command": "replaceLinesHelper.cutEachLine", "title": "Cut each line after |||" },
|
|
{ "command": "replaceLinesHelper.expandSql", "title": "Expand Sql" },
|
|
{ "command": "replaceLinesHelper.listToListFamily", "title": "List to list family (Kristy, Mike ...)" },
|
|
{ "command": "replaceLinesHelper.listToListWrappedComma", "title": "List to list wrapped comma" },
|
|
{ "command": "replaceLinesHelper.prettySql", "title": "Pretty Sql" },
|
|
{ "command": "replaceLinesHelper.quickFixCS0108", "title": "Quick Fix CS0108" },
|
|
{ "command": "replaceLinesHelper.quickFixPublic", "title": "Quick Fix Public" },
|
|
{ "command": "replaceLinesHelper.removeComment", "title": "Remove comment" },
|
|
{ "command": "replaceLinesHelper.sortLength", "title": "Sort by Length" },
|
|
{ "command": "replaceLinesHelper.sortNormal", "title": "My Sort lines (ascending, case sensitive)" },
|
|
{ "command": "replaceLinesHelper.unwrapSql", "title": "Un-wrap Sql" },
|
|
{ "command": "replaceLinesHelper.wrapSqlCSharp", "title": "Wrap Sql for C#" },
|
|
{ "command": "replaceLinesHelper.wrapSqlVB", "title": "Wrap Sql for VB" }
|
|
],
|
|
"keybindings": [
|
|
{
|
|
"command": "replaceLinesHelper.unwrapSql",
|
|
"key": "shift + f9",
|
|
"when": "editorTextFocus"
|
|
}
|
|
],
|
|
"menus": {
|
|
"editor/context": [
|
|
{
|
|
"command": "replaceLinesHelper.unwrapSql",
|
|
"when": "editorTextFocus",
|
|
"group": "replaceLinesHelper@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"
|
|
}
|
|
}
|