-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
126 lines (126 loc) · 3.72 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
{
"name": "intelligence-change-case",
"displayName": "change-case",
"description": "Intelligence change case.",
"version": "1.2.0",
"repository": "https://github.com/zhengxiaoyao0716/vscode-intelligence-change-case",
"publisher": "zhengxiaoyao0716",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.changeCase",
"title": "Intelligence change case."
}
],
"keybindings": {
"key": "Ctrl+U",
"command": "extension.changeCase",
"when": "editorTextFocus"
},
"configuration": {
"title": "Intelligence change case settings.",
"properties": {
"change-case.py": {
"type": "array",
"default": [
"snake_case",
"PascalCase",
"CONST_CASE"
]
},
"change-case.go": {
"type": "array",
"default": [
"camelCase",
"PascalCase",
"CONST_CASE"
]
},
"change-case.js": {
"type": "array",
"default": [
"camelCase",
"PascalCase",
"CONST_CASE"
]
},
"change-case.ts": {
"type": "array",
"default": [
"camelCase",
"PascalCase",
"CONST_CASE"
]
},
"change-case.java": {
"type": "array",
"default": [
"camelCase",
"PascalCase",
"CONST_CASE"
]
},
"change-case.cs": {
"type": "array",
"default": [
"camelCase",
"PascalCase",
"CONST_CASE"
]
},
"change-case.cpp": {
"type": "array",
"default": [
"camelCase",
"PascalCase",
"CONST_CASE"
]
},
"change-case.c": {
"type": "array",
"default": [
"snake_case",
"camelCase",
"PascalCase",
"CONST_CASE"
]
},
"change-case.css": {
"type": "array",
"default": [
"snake_case",
"param-case"
]
},
"change-case.default": {
"type": "array",
"default": [
"camelCase",
"CONST_CASE"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"typescript": "^5.0.4"
},
"dependencies": {
"change-case": "^4.1.2"
}
}