-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
174 lines (174 loc) · 4.69 KB
/
package.json
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
{
"name": "case-helper",
"displayName": "Case Helper",
"description": "Helper to easily change case for the Visual Studio Code editor.",
"version": "0.1.1",
"publisher": "gookyn",
"categories": [
"Other"
],
"keywords": [
"Case",
"Change Case"
],
"icon": "images/icon.png",
"engines": {
"vscode": "^1.60.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.case-helper.camel",
"title": "Camel Case",
"description": "Case Helper: Change to Camel Case"
},
{
"command": "extension.case-helper.constant",
"title": "Constant Case",
"description": "Case Helper: Change to Constant Case"
},
{
"command": "extension.case-helper.dot",
"title": "Dot Case",
"description": "Case Helper: Change to Dot Case"
},
{
"command": "extension.case-helper.kebab",
"title": "Kebab Case",
"description": "Case Helper: Change to Kebab Case"
},
{
"command": "extension.case-helper.lower",
"title": "Lower Case",
"description": "Case Helper: Change to Lower Case"
},
{
"command": "extension.case-helper.no",
"title": "No Case",
"description": "Case Helper: Change to No Case"
},
{
"command": "extension.case-helper.pascal",
"title": "Pascal Case",
"description": "Case Helper: Change to Pascal Case"
},
{
"command": "extension.case-helper.path",
"title": "Path Case",
"description": "Case Helper: Change to Path Case"
},
{
"command": "extension.case-helper.snake",
"title": "Snake Case",
"description": "Case Helper: Change to Snake Case"
},
{
"command": "extension.case-helper.upper",
"title": "Upper Case",
"description": "Case Helper: Change to Upper Case"
}
],
"submenus": [
{
"id": "case-helper.menus",
"label": "Case Helper"
}
],
"menus": {
"case-helper.menus": [
{
"command": "extension.case-helper.camel",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.constant",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.dot",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.kebab",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.lower",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.no",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.pascal",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.path",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.snake",
"group": "1_modification",
"when": "editorHasSelection"
},
{
"command": "extension.case-helper.upper",
"group": "1_modification",
"when": "editorHasSelection"
}
],
"editor/context": [
{
"submenu": "case-helper.menus",
"when": "editorHasSelection",
"group": "2_case_helper"
}
]
}
},
"scripts": {
"vscode:prepublish": "pnpm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "16.x",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vscode/test-electron": "^2.1.5",
"eslint": "^8.20.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"change-case": "^4.1.2",
"lower-case": "^2.0.2",
"upper-case": "^2.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/gookyn/vscode-case-helper.git"
},
"homepage": "https://github.com/gookyn/vscode-case-helper/blob/master/README.md"
}