-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
158 lines (158 loc) · 4.85 KB
/
package.json
File metadata and controls
158 lines (158 loc) · 4.85 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
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
{
"name": "AddFolderToWorkspace",
"displayName": "Add Folder To Workspace",
"description": "Adds or removes folders in the workspace (multi-select). Supports a global recent-folders list, quick pick from saved paths, and pins in the add-folder picker.",
"version": "2.1.0",
"publisher": "dennykorsukewitz",
"icon": "doc/images/icon.png",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/dennykorsukewitz/VSCode-AddFolderToWorkspace/blob/dev/README.md",
"pricing": "Free",
"bugs": {
"url": "https://github.com/dennykorsukewitz/VSCode-AddFolderToWorkspace/issues",
"email": "dennykorsukewitz@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dennykorsukewitz/VSCode-AddFolderToWorkspace"
},
"sponsor": {
"url": "https://github.com/sponsors/dennykorsukewitz"
},
"keywords": [
"add",
"folder",
"workflow",
"workspace",
"helper",
"recent"
],
"categories": [
"Other"
],
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [],
"main": "./dist/extension.js",
"browser": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"watch": "tsc -watch -p ./",
"build": "tsc -p ./",
"build-web": "npm run esbuild-base -- --sourcemap",
"lint": "eslint src",
"lint-fix": "eslint src --fix",
"pretest": "rm -Rf .vscode-test && npm run build && npm run lint",
"test": "node ./dist/test/runTest.js",
"open-in-browser": "npm run build-web && npx @vscode/test-web --extensionDevelopmentPath=."
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^22.13.16",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.25.0",
"eslint": "^9.23.0",
"eslint-plugin-n": "^17.15.1",
"mocha": "^11.1.0",
"typescript": "^5.3.3"
},
"overrides": {
"minimatch": "5.1.2",
"glob": "8.1.0"
},
"contributes": {
"commands": [
{
"command": "addFolderToWorkspace",
"title": "Add Folder to Workspace.",
"category": "AddFolderToWorkspace"
},
{
"command": "removeFolderFromWorkspace",
"title": "Remove Folder from Workspace.",
"category": "AddFolderToWorkspace"
},
{
"command": "addRecentFoldersToWorkspace",
"title": "Add Recent Folders to Workspace.",
"category": "AddFolderToWorkspace"
},
{
"command": "clearRecentFoldersToWorkspace",
"title": "Clear Recent Folders List.",
"category": "AddFolderToWorkspace"
}
],
"keybindings": [
{
"command": "addFolderToWorkspace",
"key": "ctrl+alt+k p"
},
{
"command": "addRecentFoldersToWorkspace",
"key": "ctrl+alt+k r"
},
{
"command": "removeFolderFromWorkspace",
"key": "ctrl+alt+k shift+p"
},
{
"command": "workbench.action.addRootFolder",
"key": "ctrl+alt+k w"
}
],
"configuration": {
"type": "object",
"title": "Add Folder To Workspace",
"properties": {
"addFolderToWorkspace.position": {
"type": "string",
"description": "",
"default": "Bottom",
"enum": [
"Top",
"Bottom"
],
"enumDescriptions": [
"If position is 'Top', the new folder will be added at the beginning of the current workspace.",
"If position is 'Bottom', the new folder will be added at the end of the current workspace."
]
},
"addFolderToWorkspace.workspaces": {
"type": "array",
"items": {
"type": "string"
},
"description": "Provides a list of folders (Workspaces) that can be added to the current VSC Workspace.",
"default": [
"/Users/"
]
},
"addFolderToWorkspace.recursiveWorkspaces": {
"type": "array",
"items": {
"type": "string"
},
"description": "Provides a searchable (only first level) list of folders (Workspaces) that can be added to the current VSC Workspace.",
"default": [
"/Users/"
]
},
"addFolderToWorkspace.recentFoldersCount": {
"type": "number",
"default": 5,
"minimum": 0,
"description": "How many recently added folders to pin at the top of the picker. Set to 0 to disable."
}
}
}
}
}