-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.17 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
{
"name": "plugin-2",
"displayName": "Plugin 2",
"description": "My VS Code Plugin",
"version": "0.0.1",
"publisher": "your-name",
"engines": {
"vscode": "^1.80.0"
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"activationEvents": [
"onCommand:case-converter.toUpperCase",
"onCommand:case-converter.toLowerCase",
"onCommand:case-converter.toCamelCase",
"onCommand:case-converter.toSnakeCase",
"onCommand:case-converter.toKebabCase"
],
"contributes": {
"commands": [
{
"command": "case-converter.toUpperCase",
"title": "Convert to UPPERCASE"
},
{
"command": "case-converter.toLowerCase",
"title": "Convert to lowercase"
},
{
"command": "case-converter.toCamelCase",
"title": "Convert to CamelCase"
},
{
"command": "case-converter.toSnakeCase",
"title": "Convert to snake_case"
},
{
"command": "case-converter.toKebabCase",
"title": "Convert to kebab-case"
},
{
"command": "case-converter.toTitleCase",
"title": "Convert to Title Case"
}
],
"keybindings": [
{
"command": "case-converter.toUpperCase",
"key": "ctrl+alt+z",
"when": "editorTextFocus"
},
{
"command": "case-converter.toLowerCase",
"key": "ctrl+alt+x",
"when": "editorTextFocus"
},
{
"command": "case-converter.toCamelCase",
"key": "ctrl+alt+c",
"when": "editorTextFocus"
},
{
"command": "case-converter.toSnakeCase",
"key": "ctrl+alt+v",
"when": "editorTextFocus"
},
{
"command": "case-converter.toKebabCase",
"key": "ctrl+alt+b",
"when": "editorTextFocus"
},
{
"command": "case-converter.toTitleCase",
"key": "ctrl+alt+a",
"when": "editorTextFocus"
}
]
},
"devDependencies": {
"@types/node": "^18.17.0",
"@types/vscode": "^1.80.0",
"typescript": "^5.2.2",
"vscode": "^1.80.0"
}
}