-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
130 lines (130 loc) · 3.13 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
{
"name": "hediet-power-tools",
"private": true,
"displayName": "Hediet Power Tools",
"description": "This extension brings selected power tools to VS Code.",
"keywords": [
"power",
"tool",
"rename",
"lazy",
"cursor",
"multi",
"selection"
],
"icon": "docs/logo.drawio.png",
"version": "0.4.0",
"license": "GPL-3.0",
"publisher": "hediet",
"author": {
"email": "[email protected]",
"name": "Henning Dieterichs"
},
"readme": "./README.md",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*",
"onFileSystem:hediet-power-tools"
],
"repository": {
"url": "https://github.com/hediet/vscode-hediet-power-tools.git"
},
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "hediet-power-tools.apply-rename",
"title": "Hediet Power Tools: Apply Rename"
},
{
"command": "hediet-power-tools.abort-rename-session",
"title": "Hediet Power Tools: Abort Rename Session"
}
],
"keybindings": [
{
"key": "shift+enter",
"command": "hediet-power-tools.apply-rename",
"when": "hediet-power-tools.apply-rename.applicable"
},
{
"key": "escape",
"command": "hediet-power-tools.abort-rename-session",
"when": "hediet-power-tools.apply-rename.cancelable"
}
],
"configuration": {
"title": "Hediet Power Tools",
"properties": {
"hediet-power-tools.applyRename.enabled": {
"type": "boolean",
"default": true,
"title": "Enables the Apply Rename feature"
},
"hediet-power-tools.applyRename.theme": {
"type": "string",
"enum": [
"dashed",
"colored"
],
"default": "dashed",
"title": "The theme used to highlight changed identifiers that can be renamed"
},
"hediet-power-tools.jsonStringEscapeHelper.enabled": {
"type": "boolean",
"default": true,
"title": "Enables the JSON String Escape Helper"
},
"hediet-power-tools.stackFrameLineHighlighter.enabled": {
"type": "boolean",
"default": true,
"title": "Enables the Stack Frame Line Highlighter"
},
"hediet-power-tools.customDefinitions.enabled": {
"type": "boolean",
"default": false,
"title": "Enables Custom Definitions"
},
"hediet-power-tools.debugAdapterLogger.enabled": {
"type": "boolean",
"default": false,
"title": "Enables the Debug Adapter Logger"
},
"hediet-power-tools.markdownCodeBlockLanguageService.enabled": {
"type": "boolean",
"default": false,
"title": "Enables the Markdown Code Block Language Service"
}
}
}
},
"scripts": {
"pub": "vsce publish --yarn",
"package": "vsce package --yarn",
"vscode:prepublish": "yarn run build",
"build": "tsc -p ./",
"dev": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^13.13.5",
"@types/vscode": "^1.40.0",
"tslint": "^6.1.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@hediet/node-reload": "0.7.3",
"@hediet/std": "0.6.0",
"@types/diff": "^4.0.2",
"diff": "^4.0.2",
"golden-fleece": "^1.0.9",
"gradient-color": "^2.0.1",
"mobx": "^5.15.4",
"mobx-utils": "^5.6.1",
"remark": "^12.0.1"
}
}