-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.7 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": "lockhunter-cmds",
"displayName": "Lockhunter Commands",
"description": "Set of commands for launching Lockhunter dialogs",
"keywords": [
"git",
"lockhunter",
"keybindings",
"contextmenu"
],
"version": "1.0.0",
"publisher": "clmcgrath",
"repository": {
"type": "git",
"url": "https://github.com/clmcgrath/vscode-lockhunter.git"
},
"bugs": {
"url": "https://github.com/clmcgrath/vscode-lockhunter/issues"
},
"homepage": "https://github.com/clmcgrath/vscode-lockhunter",
"license": "MIT",
"icon": "vscode-lockhunter-icon.png",
"engines": {
"vscode": "^1.37.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:lockhunter.view.current.directory",
"onCommand:lockhunter.view.current.file",
"onCommand:lockhunter.view.current.workspace",
"onCommand:lockhunter.unlock.current.directory",
"onCommand:lockhunter.unlock.current.file",
"onCommand:lockhunter.unlock.current.workspace"
],
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Lockhunter",
"properties": {
"lockhunter.launcherPath": {
"type": "string",
"default": "C:\\Program Files\\LockHunter\\LockHunter.exe",
"description": "Path to the Lockhunter command launcher (Lockhunter.exe)."
},
"lockhunter.exit": {
"type": "boolean",
"default": true,
"description": "Exits lockhunter automatically when all actions are done. This option might be required only when you wish to see the GUI, all displayed warnings but do not wish to press the button \"exit\" manually."
},
"lockhunter.silentunlocks": {
"type": "boolean",
"default": false,
"description": "no GUI will be displayed. The program starts in silent mode, does one of the passed commands (e.g. unlock) and terminates. does not apply to view commands."
}
}
},
"commands": [
{
"command": "lockhunter.view.current.file",
"title": "Lockhunter: View Current File"
},
{
"command": "lockhunter.view.current.directory",
"title": "Lockhunter: View Current Directory"
},
{
"command": "lockhunter.view.current.workspace",
"title": "Lockhunter: View Workspace"
},
{
"command": "lockhunter.unlock.current.file",
"title": "Lockhunter: Unlock Current File"
},
{
"command": "lockhunter.unlock.current.directory",
"title": "Lockhunter: Unlock Current Directory"
},
{
"command": "lockhunter.unlock.current.workspace",
"title": "Lockhunter: Unlock Workspace"
}
],
"keybindings": [
{
"command": "lockhunter.view.currentDirectory",
"key": "ctrl+l ctrl+v ctrl+d "
},
{
"command": "lockhunter.view.currentFile",
"key": "ctrl+l ctrl+v ctrl+f"
},
{
"command": "lockhunter.view.workspace",
"key": "ctrl+l ctrl+v ctrl+w"
},
{
"command": "lockhunter.unlock.currentDirectory",
"key": "ctrl+l ctrl+u ctrl+d"
},
{
"command": "lockhunter.unlock.currentFile",
"key": "ctrl+l ctrl+u ctrl+f"
},
{
"command": "lockhunter.unlock.workspace",
"key": "ctrl+l ctrl+u ctrl+w"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"vscode:prepublish": "yarn run compile",
"vscode:package": "vsce package",
"vscode:publish": "vsce publish"
},
"devDependencies": {
"@types/node": "^10.12.21",
"@types/vscode": "^1.37.0",
"typescript": "^3.3.1",
"vsce": "^1.66.0"
}
}