-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
144 lines (144 loc) · 4.8 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
{
"name": "favorite-folders",
"displayName": "Favorite Folders",
"description": "Open your favorite folders from the sidebar",
"version": "1.3.1",
"publisher": "Artelin",
"repository": "flawiddsouza/favorite-folders",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:favoriteFolders"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "favorite-folders",
"title": "Favorite Folders",
"icon": "media/dep.svg"
}
]
},
"views": {
"favorite-folders": [
{
"id": "favoriteFolders",
"name": "Favorite Folders"
}
]
},
"configuration": {
"title": "Favorite Folders",
"properties": {
"favoriteFolders.baseFolders": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Indicates the base folders to search for any folder projects",
"scope": "machine"
},
"favoriteFolders.baseFoldersExtended": {
"type": "array",
"default": [],
"items": {
"type": "object",
"properties": {
"name": {
"type": "string"
},
"path": {
"type": "string"
}
},
"required": ["name", "path"]
},
"markdownDescription": "Indicates the base folders to search for any folder projects + this also allows you to set custom names to each of them. More info [here](https://github.com/flawiddsouza/favorite-folders/issues/1).",
"scope": "machine"
}
}
},
"commands": [
{
"command": "favoriteFolders.refreshFolders",
"title": "Favorite Folders: Refresh Folders",
"icon": "$(refresh)"
},
{
"command": "favoriteFolders.openSettings",
"title": "Favorite Folders: Open Settings",
"icon": "$(gear)"
},
{
"command": "favoriteFolders.openFolder",
"title": "Open Folder",
"icon": "$(folder-opened)"
},
{
"command": "favoriteFolders.openFolderInNewWindow",
"title": "Open Folder in New Window",
"icon": "$(window)"
}
],
"menus": {
"view/title": [
{
"command": "favoriteFolders.refreshFolders",
"when": "view == favoriteFolders",
"group": "navigation"
},
{
"command": "favoriteFolders.openSettings",
"when": "view == favoriteFolders",
"group": "navigation@2"
}
],
"view/item/context": [
{
"command": "favoriteFolders.openFolder",
"when": "view == favoriteFolders",
"group": "inline"
},
{
"command": "favoriteFolders.openFolderInNewWindow",
"when": "view == favoriteFolders",
"group": "inline"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/vscode": "^1.59.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"eslint": "^7.27.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2",
"ts-loader": "^9.2.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
}
}