-
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.75 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.75 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": "workspacesort",
"displayName": "WorkspaceSort",
"description": "WorkspaceSort adds the ability to sort workspace-folders in the same way as files and inner-folders are sorted.",
"version": "1.6.1",
"author": "Marco de Zeeuw",
"publisher": "iciclesoft",
"license": "MIT",
"icon": "icon.png",
"galleryBanner": {
"color": "#121212",
"theme": "dark"
},
"keywords": [
"workspace",
"folder",
"sort",
"order",
"alphabetical"
],
"engines": {
"vscode": "^1.21.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.sort",
"onFileSystem:file"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.sort",
"title": "Sort Workspace Folders"
}
],
"menus": {
"explorer/context": [
{
"when": "explorerResourceIsFolder",
"command": "extension.sort",
"group": "2_workspace"
}
]
},
"configuration": {
"title": "WorkspaceSort Configuration",
"type": "object",
"properties": {
"workspacesort.workspaceDirectory": {
"type": [
"string",
"null"
],
"default": null,
"description": "(Optional) The absolute path of the directory containing the .code-workspace file. Instead of trying to find the file automatically it will now use this directory."
},
"workspacesort.sortAutomatically": {
"type": "boolean",
"default": true,
"description": "Tells the extension wether to sort automatically when changes to the workspace folders are detected. When set to false, sorting has to be triggered manually."
}
}
}
},
"repository": {
"type": "git",
"url": "https://github.com/iciclesoft/workspacesort-for-VSCode.git"
},
"homepage": "https://github.com/iciclesoft/workspacesort-for-VSCode",
"bugs": {
"url": "https://github.com/iciclesoft/workspacesort-for-VSCode/issues"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^10.17.60",
"eslint": "^4.11.0",
"vscode": "^1.1.37"
},
"dependencies": {
"hoek": "^5.0.4",
"jsonic": "^1.0.1"
}
}