-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.75 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
{
"name": "open-all-files",
"displayName": "Open All Files",
"description": "Open all files in folder.",
"version": "0.0.8",
"publisher": "logerfo",
"engines": {
"vscode": "^2023.0.0"
},
"bugs": {
"url": "https://github.com/Logerfo/open-all-files/issues",
"email": "bruno@logerfo.com.br"
},
"author": {
"email": "bruno@logerfo.com.br",
"name": "Bruno Logerfo",
"url": "https://github.com/Logerfo"
},
"license": "Unlicense",
"homepage": "https://github.com/Logerfo/open-all-files/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/Logerfo/open-all-files.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:open-all-files.openAllFiles"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"type": "object",
"title": "Open All Files",
"properties": {
"open-all-files.maxFilesWithoutConfirmation": {
"scope": "resource",
"type": "number",
"default": 10,
"description": "Set to 0 to always request confirmation and -1 to never request confirmation."
},
"open-all-files.recursive": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Choose whether the file search should be recursive (**) or not (*)."
}
}
}
],
"commands": [
{
"command": "open-all-files.openAllFiles",
"title": "Open All Files"
}
],
"menus": {
"explorer/context": [
{
"command": "open-all-files.openAllFiles",
"group": "navigation",
"when": "explorerResourceIsFolder"
}
],
"commandPalette": [
{
"command": "open-all-files.openAllFiles",
"when": "false"
}
]
}
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch"
},
"devDependencies": {
"@types/mocha": "10.0.10",
"@types/node": "22.13.10",
"ts-loader": "9.5.2",
"tslint": "6.1.3",
"typescript": "5.8.2",
"@types/vscode": "1.26.0",
"webpack": "5.98.0",
"webpack-cli": "6.0.1"
}
}