initial
This commit is contained in:
87
package.json
Normal file
87
package.json
Normal file
@@ -0,0 +1,87 @@
|
||||
{
|
||||
"name": "solidt-escaper",
|
||||
"displayName": "Escape & code transform",
|
||||
"description": "Escape & code transform",
|
||||
"version": "0.0.1",
|
||||
"publisher": "cogibucks",
|
||||
"engines": {
|
||||
"vscode": "^1.32.0"
|
||||
},
|
||||
"categories": [
|
||||
"Other"
|
||||
],
|
||||
"activationEvents": [
|
||||
"onCommand:extension.escapeDoubleQuote",
|
||||
"onCommand:extension.escapeSingleQuote",
|
||||
"onCommand:extension.unescapeDoubleQuote",
|
||||
"onCommand:extension.unescapeSingleQuote",
|
||||
"onCommand:extension.buildStringDoubleQuote",
|
||||
"onCommand:extension.buildStringSingleQuote",
|
||||
"onCommand:extension.buildStringJavascript",
|
||||
"onCommand:extension.buildStringCsharp",
|
||||
"onCommand:extension.reverseBuildStringDoubleQuote",
|
||||
"onCommand:extension.reverseBuildStringSingleQuote",
|
||||
"onCommand:extension.createCsharpAutoProperty"
|
||||
],
|
||||
"main": "./out/extension",
|
||||
"contributes": {
|
||||
"commands": [
|
||||
{
|
||||
"command": "extension.escapeDoubleQuote",
|
||||
"title": "Solidt: Escape (double quotes)"
|
||||
},
|
||||
{
|
||||
"command": "extension.escapeSingleQuote",
|
||||
"title": "Solidt: Escape (single quotes)"
|
||||
},
|
||||
{
|
||||
"command": "extension.unescapeDoubleQuote",
|
||||
"title": "Solidt: Unescape (double quotes)"
|
||||
},
|
||||
{
|
||||
"command": "extension.unescapeSingleQuote",
|
||||
"title": "Solidt: Unescape (single quotes)"
|
||||
},
|
||||
{
|
||||
"command": "extension.buildStringDoubleQuote",
|
||||
"title": "Solidt: BuildString (double quotes)"
|
||||
},
|
||||
{
|
||||
"command": "extension.buildStringSingleQuote",
|
||||
"title": "Solidt: BuildString (single quotes)"
|
||||
},
|
||||
{
|
||||
"command": "extension.buildStringJavascript",
|
||||
"title": "Solidt: BuildString (Javascript)"
|
||||
},
|
||||
{
|
||||
"command": "extension.buildStringSingleQuote",
|
||||
"title": "Solidt: BuildString (C#)"
|
||||
},
|
||||
{
|
||||
"command": "extension.reverseBuildStringDoubleQuote",
|
||||
"title": "Solidt: Reverse BuildString (double quotes)"
|
||||
},
|
||||
{
|
||||
"command": "extension.reverseBuildStringSingleQuote",
|
||||
"title": "Solidt: Reverse BuildString (single quotes)"
|
||||
},
|
||||
{
|
||||
"command": "extension.createCsharpAutoProperty",
|
||||
"title": "Solidt: Create autoproperty (C#)"
|
||||
}
|
||||
]
|
||||
},
|
||||
"scripts": {
|
||||
"vscode:prepublish": "npm run compile",
|
||||
"compile": "tsc -p ./",
|
||||
"lint": "tslint ./src/*.ts",
|
||||
"watch": "tsc -watch -p ./"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^6.0.40",
|
||||
"tslint": "^5.16.0",
|
||||
"typescript": "^3.5.1",
|
||||
"@types/vscode": "^1.32.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user