This repository was archived by the owner on Dec 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.72 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.72 KB
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
{
"name": "quick-open-file",
"displayName": "Quick Open File",
"description": "This is a extension for quickly open file, that's name start with current word.",
"version": "0.1.3",
"icon": "resources/quick-open-file.png",
"bugs": {
"url": "https://github.com/AlanWalk/quick-open-file/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AlanWalk/quick-open-file.git"
},
"publisher": "AlanWalk",
"engines": {
"vscode": "^1.22.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.quickOpenFile",
"title": "Quick Open File"
}
],
"keybindings": [
{
"command": "extension.quickOpenFile",
"key": "alt+g"
}
],
"configuration": {
"type": "object",
"title": "Quick Open File Configuration",
"properties": {
"quickOpenFile.peekLanguages": {
"type": "array",
"default": [
"lua",
"javascript"
],
"description": "Set which type you want to use peek. it's language id, not extension. "
},
"quickOpenFile.extensionInclude": {
"type": "array",
"default": [
"lua",
"js"
],
"description": "Set which file extension you want to include, ** is any extension."
},
"quickOpenFile.folderExclude": {
"type": "array",
"default": [
"node_modules",
".vscode"
],
"description": "Set which folder you want to exclude."
},
"quickOpenFile.suffixList": {
"type": "array",
"default": [
""
],
"description": "Auto add suffix when search file(not allow peek), ** is match any suffix."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6"
}
}