-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.39 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.39 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
{
"name": "renamer",
"displayName": "Renamer",
"description": "Rename file after class rename operation",
"publisher": "VolcanicBytes",
"version": "0.1.0",
"repository": {
"url": "https://github.com/VolcanicBytes/Renamer",
"type": "git"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished",
"onCommand:renamer.rename-current-file"
],
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "renamer.rename-current-file",
"title": "Rename current file",
"category": "Renamer",
"enablement": "editorTextFocus"
}
],
"configuration": {
"title": "Renamer",
"properties": {
"renamer.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Allow the renamer to automatically prompt for suggestion after a rename operation is performed",
"title": "Enabled"
},
"renamer.ignoredLanguageIdList": {
"type": "array",
"markdownDescription": "Set what [`languageId`](https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers) vscode should ignore when detecting changed symbols.",
"title": "Blacklist",
"default": [
"json",
"markdown",
"xml"
]
},
"renamer.regexList": {
"type": "array",
"markdownDescription": "Set per [`languageId`](https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers) valid `regex` an [`captureGroup`]",
"examples": [
"{\"languageId\":\"csharp\",\"regex\":[\"class ([^{])+\\s*{\",\"interface ([^{])+\\s*{\"],\"captureGroup\":[1,1]}"
],
"title": "Regex List"
},
"renamer.forceRegex": {
"type": "boolean",
"markdownDescription": "Set whether to skip highlights and use `regexList`",
"title": "Force Regex",
"default": false
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode none",
"webpack-dev": "webpack --mode none --watch",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.18",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.3",
"vscode": "^1.1.36",
"webpack": "^4.41.3",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"case": "^1.6.3"
}
}