-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.97 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
{
"name": "flash-open",
"displayName": "Flash-Open",
"description": "quick open file and folder",
"icon": "icon/icon.png",
"version": "0.2.0",
"publisher": "baixiaoyu2997",
"repository": {
"type": "git",
"url": "https://github.com/baixiaoyu2997/Flash-Open"
},
"galleryBanner": {
"color": "#0273D4",
"theme": "dark"
},
"keywords": [
"quick",
"open",
"flash",
"file",
"folder"
],
"author": {
"name": "baixiaoyu2997(XiaoYu Bai)",
"email": "[email protected]",
"url": "https://github.com/baixiaoyu2997"
},
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/baixiaoyu2997/Flash-Open/issues"
},
"homepage": "https://github.com/baixiaoyu2997/Flash-Open/blob/master/README.md",
"activationEvents": [
"onCommand:extension.flashOpenFile",
"onCommand:extension.flashOpenFolder"
],
"main": "./extension",
"contributes": {
"commands": [
{
"command": "extension.flashOpenFile",
"title": "Flash open specified file"
},
{
"command": "extension.flashOpenFolder",
"title": "Flash open specified folder"
}
],
"keybindings": [
{
"command": "extension.flashOpenFile",
"key": "alt+o",
"mac": "alt+o"
},
{
"command": "extension.flashOpenFolder",
"key": "ctrl+alt+o",
"mac": "ctrl+alt+o"
}
],
"configuration": [
{
"type": "object",
"title": "FlashOpen configuration",
"properties": {
"flashOpen.filePath": {
"type": "string",
"description": "quickly open the specified file,e.g.'E:\\workspace\\note.md'"
},
"flashOpen.folderPath": {
"type": "string",
"default": "./",
"description": "quickly open the specified folder,e.g.'E:\\workspace'"
},
"flashOpen.fileIgnore": {
"type": "array",
"description": "the specified file is not displayed in the list,e.g.'['doc','jpg','pptx']'"
},
"flashOpen.folderIgnore": {
"type": "array",
"description": "the specified folder is not displayed in the list,e.g.'['node_modules']'"
}
}
}
]
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}