-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
137 lines (137 loc) · 4.13 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
{
"name": "AddFolderToWorkspace",
"displayName": "Add Folder To Workspace",
"description": "This extension adds / removes the selected folder (multiple) to / from the workspace (VSC Workspace).",
"version": "2.0.1",
"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": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/dennykorsukewitz/VSCode-AddFolderToWorkspace"
},
"sponsor": {
"url": "https://github.com/sponsors/dennykorsukewitz"
},
"keywords": [
"add",
"folder",
"workflow",
"workspace",
"helper"
],
"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 --ext ts",
"lint-fix": "eslint src --ext ts --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": "^18.19.14",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.20.0",
"@vscode/test-electron": "^2.3.9",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"typescript": "^5.3.3",
"vscode-test": "^1.6.1"
},
"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"
}
],
"keybindings": [
{
"command": "addFolderToWorkspace",
"key": "ctrl+alt+k p"
},
{
"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/"
]
}
}
}
}
}