-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.47 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 4.47 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
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
{
"name": "format-switcher",
"displayName": "Format Switcher",
"description": "Transform your text with ease! 🚀 Instantly switch between various formatting styles with our extension's context menu. Simply select your text and choose the desired format. Elegant texts, your way! 💡",
"icon": "images/icon.png",
"version": "1.0.1",
"repository": {
"type": "git",
"url": "https://github.com/EfeDeveloper/format-switcher.git"
},
"publisher": "EdFerVIIIA",
"engines": {
"vscode": "^1.85.0"
},
"license": "MIT",
"keywords": [
"case",
"camelCase",
"snake_case",
"kebab-case",
"formatter",
"text transform"
],
"bugs": {
"url": "https://github.com/EfeDeveloper/format-switcher/issues"
},
"homepage": "https://github.com/EfeDeveloper/format-switcher#readme",
"galleryBanner": {
"color": "#1e1e2e",
"theme": "dark"
},
"categories": [
"Formatters"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.formatSwitcher.lowerWords",
"title": "lower words"
},
{
"command": "extension.formatSwitcher.upperWords",
"title": "UPPER WORDS"
},
{
"command": "extension.formatSwitcher.camelCase",
"title": "camelCase"
},
{
"command": "extension.formatSwitcher.snakeCase",
"title": "snake_case"
},
{
"command": "extension.formatSwitcher.upperSnakeCase",
"title": "CONSTANT_CASE"
},
{
"command": "extension.formatSwitcher.kebabCase",
"title": "kebab-case"
},
{
"command": "extension.formatSwitcher.trainCase",
"title": "Train-Case"
},
{
"command": "extension.formatSwitcher.cycleCase",
"title": "Cycle Case Format"
}
],
"keybindings": [
{
"command": "extension.formatSwitcher.cycleCase",
"key": "alt+shift+l",
"when": "editorTextFocus && editorHasSelection"
}
],
"submenus": [
{
"id": "formatSwitcherSubmenuId",
"label": "Change case"
}
],
"menus": {
"editor/context": [
{
"submenu": "formatSwitcherSubmenuId",
"when": "editorHasSelection"
}
],
"formatSwitcherSubmenuId": [
{
"command": "extension.formatSwitcher.camelCase",
"group": "formats@1"
},
{
"command": "extension.formatSwitcher.snakeCase",
"group": "formats@2"
},
{
"command": "extension.formatSwitcher.kebabCase",
"group": "formats@3"
},
{
"command": "extension.formatSwitcher.upperSnakeCase",
"group": "formats@4"
},
{
"command": "extension.formatSwitcher.trainCase",
"group": "formats@5"
},
{
"command": "extension.formatSwitcher.lowerWords",
"group": "formats@6"
},
{
"command": "extension.formatSwitcher.upperWords",
"group": "formats@7"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {}
}