-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 3.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "java-string-literal-tools",
"displayName": "String Literal Tools For Java",
"description": "Simplifies working with string literals in Java",
"version": "1.1.1",
"publisher": "poletaev-d",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/poletaev-d/java-string-literal-tools.git"
},
"engines": {
"vscode": "^1.3.0"
},
"keywords": [
"java",
"string",
"literal",
"clipboard"
],
"categories": [
"Other"
],
"activationEvents": [
"onCommand:java-string-literal-tools.copy-literals",
"onCommand:java-string-literal-tools.paste-as-literals"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "java-string-literal-tools.copy-literals",
"title": "Copy String Literals To Clipboard"
},
{
"command": "java-string-literal-tools.paste-as-literals",
"title": "Paste Text Into String Literals"
}
],
"configuration": {
"title": "String Literal Tools For Java",
"properties": {
"stringLiteralToolsForJava.copyToClipboard.lineBreakHandling": {
"type": "string",
"description": "The way to handle line breaks while copying literals to clipboard",
"default": "retain",
"enum": [
"retain",
"\n",
"\r\n",
"remove"
],
"enumItemLabels": [
"Retain",
"Replace with LF",
"Replace with CRLF",
"Remove"
],
"enumDescriptions": [
"Line break at the end of string literal is kept unchanged",
"Line break at the end of string literal is replaced with LF",
"Line break at the end of string literal is replaced with CRLF",
"Line break at the end of string literal is removed"
]
},
"stringLiteralToolsForJava.pasteFromClipboard.lineBreakHandling": {
"type": "string",
"description": "The way to handle line breaks while pasting from clipboard into literals",
"default": "retain",
"enum": [
"retain",
"\n",
"\r\n",
"remove"
],
"enumItemLabels": [
"Retain",
"Replace with LF",
"Replace with CRLF",
"Remove"
],
"enumDescriptions": [
"Line breaks present in original text are kept unchanged",
"Line breaks present in original text are replaced with LF",
"Line breaks present in original text are replaced with CRLF",
"Line breaks present in original text are removed"
]
}
}
}
},
"icon": "img/icon.png",
"scripts": {
"lint": "eslint .",
"vscode:prepublish": "npm run package",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"package": "webpack --mode production --devtool hidden-source-map"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.3",
"java-ast": "^0.3.0"
},
"devDependencies": {
"eslint": "^8.1.0",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1"
}
}