-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.73 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 2.73 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
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
{
"name": "virtual-workspace",
"displayName": "Virtual Workspace",
"description": "Group unrelated files together in virtual workspaces",
"publisher": "VolcanicBytes",
"icon": "media/icon_256.png",
"version": "1.0.0",
"repository": {
"url": "https://github.com/VolcanicBytes/virtualWorkspace",
"type": "git"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:virtualWorkspace.saveAs",
"onCommand:virtualWorkspace.restore",
"onLanguage:virtualWorkspace"
],
"galleryBanner": {
"color": "#e7c246",
"theme": "light"
},
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "virtualWorkspace.saveAs",
"title": "Save Workspace As...",
"category": "VirtualWorkspace"
},
{
"command": "virtualWorkspace.restore",
"title": "Restore",
"category": "VirtualWorkspace"
},
{
"command": "virtualWorkspace.removeFileFromCurrentList",
"title": "Remove file from current list",
"category": "VirtualWorkspace"
},
{
"command": "virtualWorkspace.addFileToCurrentList",
"title": "Add file to current list",
"category": "VirtualWorkspace"
},
{
"command": "virtualWorkspace.cancelSave",
"title": "Cancel Save",
"category": "VirtualWorkspace"
}
],
"menus": {
"commandPalette": [
{
"command": "virtualWorkspace.cancelSave",
"when": "never"
},
{
"command": "virtualWorkspace.addFileToCurrentList",
"when": "virtualWorkspaceIsOpen"
},
{
"command": "virtualWorkspace.removeFileFromCurrentList",
"when": "virtualWorkspaceIsOpen"
}
]
},
"languages": [
{
"id": "virtualWorkspace",
"aliases": [
"Virtual WorkSpace",
"VirtualWorkspace"
],
"extensions": [
"code-virtualspace",
"code-virtualworkspace"
]
}
],
"configuration": [
{
"title": "Virtual Workspace",
"properties": {
"virtualWorkspace.remember_last_open_dialog_location": {
"type": "boolean",
"default": true,
"description": "Remember last open location"
},
"virtualWorkspace.override_open_dialog_location": {
"type": "string",
"description": "If set, the extension will always open dialogs in this location"
}
}
}
]
},
"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.44.2",
"webpack-cli": "^3.3.12"
},
"dependencies": {}
}