forked from fabiospampinato/vscode-projects-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
203 lines (203 loc) · 5.49 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"name": "vscode-projects-plus",
"displayName": "Projects+",
"description": "An extension for managing projects. Feature rich, customizable, automatically finds your projects",
"icon": "resources/logo-128x128.png",
"version": "1.0.2",
"license": "MIT",
"main": "out/src/extension.js",
"publisher": "fabiospampinato",
"author": {
"name": "Fabio Spampinato",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/fabiospampinato/vscode-projects-plus/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fabiospampinato/vscode-projects-plus"
},
"engines": {
"vscode": "^1.10.0"
},
"keywords": [
"vscode",
"vsc",
"extension",
"projects"
],
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Projects - Configuration",
"properties": {
"projects.activeIndicator": {
"type": "boolean",
"description": "Show an active indicator next to the name",
"default": true
},
"projects.configPath": {
"type": "string",
"description": "The location of the configuration file"
},
"projects.indentationSpaces": {
"type": "number",
"description": "Number of spaces to use for indentation",
"default": 4
},
"projects.invertPathAndDescription": {
"type": "boolean",
"description": "Invert a project path and description",
"default": false
},
"projects.showPaths": {
"type": "boolean",
"description": "Show projects' paths in the quickpick",
"default": true
},
"projects.showDescriptions": {
"type": "boolean",
"description": "Show projects' descriptions in the quickpick",
"default": true
},
"projects.checkPaths": {
"type": "boolean",
"description": "Check projects' paths existence",
"default": false
},
"projects.group": {
"type": "string",
"description": "The active context group"
},
"projects.allGroupsName": {
"type": "string",
"description": "A setting for renaming the \"All Groups\" special group",
"default": "All Groups"
},
"projects.refreshDepth": {
"type": "number",
"description": "Maximum depth to look at when refreshing",
"default": 2
},
"projects.refreshIgnoreFolders": {
"type": "array",
"items": {
"type": "string"
},
"description": "Ignore these folders when refreshing",
"default": [
"bower_components",
"node_modules",
"typings"
]
},
"projects.refreshRoots": {
"type": "array",
"items": {
"type": "string"
},
"description": "Root paths from where to start searching for projects",
"default": []
},
"projects.sortGroups": {
"type": "boolean",
"description": "Sort groups alphabetically",
"default": true
},
"projects.sortProjects": {
"type": "boolean",
"description": "Sort projects alphabetically",
"default": true
},
"projects.statusbarEnabled": {
"type": "boolean",
"description": "Enable the statusbar component",
"default": true
},
"projects.statubarCommand": {
"type": "string",
"description": "Command to execute on click",
"default": "projects.open"
},
"projects.statusbarTemplate": {
"type": "string",
"description": "Template for rendering the statusbar content",
"default": "$(file-directory) [group] $(chevron-right) [project]"
}
}
},
"commands": [
{
"command": "projects.editConfig",
"title": "Projects: Edit configuration"
},
{
"command": "projects.open",
"title": "Project: Open"
},
{
"command": "projects.openInNewWindow",
"title": "Project: Open in new window"
},
{
"command": "projects.refresh",
"title": "Projects: Refresh"
},
{
"command": "projects.remove",
"title": "Project: Remove"
},
{
"command": "projects.save",
"title": "Project: Save"
},
{
"command": "projects.switchGroup",
"title": "Projects: Switch group"
}
],
"keybindings": [
{
"command": "projects.open",
"key": "ctrl+alt+p",
"mac": "cmd+alt+p"
},
{
"command": "projects.openInNewWindow",
"key": "ctrl+alt+shift+p",
"mac": "cmd+alt+shift+p"
},
{
"command": "projects.switchGroup",
"key": "ctrl+alt+x",
"mac": "cmd+alt+x"
}
]
},
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"dependencies": {
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"pify": "^3.0.0",
"plist": "^2.1.0",
"walker": "^1.0.7"
},
"devDependencies": {
"@types/node": "^6.0.40",
"@types/lodash": "^4.14.59",
"typescript": "^2.4.1",
"vscode": "^1.1.4"
}
}