-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
147 lines (147 loc) · 4.88 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
145
146
147
{
"name": "file-browser",
"publisher": "bodil",
"displayName": "File Browser",
"description": "A nicer alternative to the file open dialog.",
"version": "0.2.11",
"license": "LGPL-3.0+",
"author": {
"name": "Bodil Stokke",
"url": "https://bodil.lol/"
},
"repository": {
"type": "git",
"url": "https://github.com/bodil/vscode-file-browser"
},
"keywords": [
"emacs",
"helm"
],
"icon": "images/icon.png",
"engines": {
"vscode": "^1.75"
},
"categories": [
"Other"
],
"main": "./out/extension.js",
"extensionKind": [
"workspace",
"ui"
],
"contributes": {
"configuration": {
"title": "File Browser",
"properties": {
"file-browser.removeIgnoredFiles": {
"markdownDescription": "Never show or match files that are hidden when matching by either `#file-browser.hideIgnoredFiles#` or `#file-browser.hideDotfiles#`.",
"type": "boolean",
"default": false
},
"file-browser.hideDotfiles": {
"markdownDescription": "When filtering by name, hide unmatched dotfiles (files whose names start with `.`).",
"type": "boolean",
"default": true
},
"file-browser.hideIgnoredFiles": {
"markdownDescription": "When filtering by name, hide unmatched files according to rules in `.gitignore` style files, as defined in `#file-browser.ignoreFileTypes#`.",
"type": "boolean",
"default": false
},
"file-browser.labelIgnoredFiles": {
"markdownDescription": "Label files hidden by a `.gitignore` file as such.",
"type": "boolean",
"default": false
},
"file-browser.ignoreFileTypes": {
"markdownDescription": "A list of `.gitignore` style files to look for and hide files accordingly when browsing. The extension will obey only the first file it finds from this list, searching upwards from the current directory, so make sure the order is as you like it.",
"type": "array",
"items": {
"type": "string"
},
"default": [
".gitignore",
".npmignore",
".vscodeignore"
]
}
}
},
"commands": [
{
"command": "file-browser.open",
"title": "File Browser: Open"
},
{
"command": "file-browser.rename",
"title": "File Browser: Rename"
},
{
"command": "file-browser.stepIn",
"title": "File Browser: Step In"
},
{
"command": "file-browser.stepOut",
"title": "File Browser: Step Out"
},
{
"command": "file-browser.actions",
"title": "File Browser: Actions"
}
],
"keybindings": [
{
"key": "right",
"command": "file-browser.stepIn",
"when": "inFileBrowser"
},
{
"key": "left",
"command": "file-browser.stepOut",
"when": "inFileBrowser"
},
{
"key": "ctrl+a",
"command": "file-browser.actions",
"when": "inFileBrowser"
},
{
"key": "tab",
"command": "file-browser.tabNext",
"when": "inFileBrowser"
},
{
"key": "shift+tab",
"command": "file-browser.tabPrev",
"when": "inFileBrowser"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src",
"watch": "tsc -watch -p ./",
"check": "npm run compile && npm run lint"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/eslint__js": "^8.42.3",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/vscode": "1.75.1",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.11.1",
"glob": "^11.0.0",
"mocha": "^10.7.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"@bodil/opt": "^0.2.5",
"ignore": "^6.0.2"
}
}