-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
146 lines (146 loc) · 4.78 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
{
"name": "fzf-quick-open",
"displayName": "fzf fuzzy quick open",
"description": "Fuzzy search files/folders and ripgrep results with fzf inside VSCode",
"version": "0.5.1",
"author": "Ryan Livingston",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rlivings39/vscode-fzf-quick-open"
},
"publisher": "rlivings39",
"icon": "resources/fzficon.png",
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:fzf-quick-open.runFzfFile",
"onCommand:fzf-quick-open.runFzfFilePwd",
"onCommand:fzf-quick-open.runFzfFileProjectRoot",
"onCommand:fzf-quick-open.runFzfAddWorkspaceFolder",
"onCommand:fzf-quick-open.runFzfAddWorkspaceFolderPwd",
"onCommand:fzf-quick-open.runFzfSearch",
"onCommand:fzf-quick-open.runFzfSearchPwd",
"onCommand:fzf-quick-open.runFzfSearchProjectRoot"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "fzf-quick-open.runFzfFile",
"title": "fzf: Open file using fzf"
},
{
"command": "fzf-quick-open.runFzfFilePwd",
"title": "fzf: Open file in PWD using fzf"
},
{
"command": "fzf-quick-open.runFzfFileProjectRoot",
"title": "fzf: Open file in Project Root (.git) using fzf"
},
{
"command": "fzf-quick-open.runFzfAddWorkspaceFolder",
"title": "fzf: Add workspace folder using fzf"
},
{
"command": "fzf-quick-open.runFzfAddWorkspaceFolderPwd",
"title": "fzf: Add workspace folder from PWD using fzf"
},
{
"command": "fzf-quick-open.runFzfSearch",
"title": "fzf: Search using rg and fzf"
},
{
"command": "fzf-quick-open.runFzfSearchPwd",
"title": "fzf: Search in PWD using rg and fzf"
},
{
"command": "fzf-quick-open.runFzfSearchProjectRoot",
"title": "fzf: Search in Project Root (.git) using rg and fzf"
}
],
"configuration": {
"title": "fzf quick open",
"properties": {
"fzf-quick-open.initialWorkingDirectory": {
"scope": "window",
"type": "string",
"default": "",
"description": "Initial working directory for fzf"
},
"fzf-quick-open.findDirectoriesCmd": {
"scope": "window",
"type": "string",
"default": "find . -type d",
"description": "Command used to find directories with fzf. For best performance install fd and use 'fd --type d'"
},
"fzf-quick-open.codeCmd": {
"scope": "window",
"type": "string",
"default": "code",
"deprecationMessage": "DEPRECATED: This option has no utility as of v0.3.0. We avoid use of the code command line API and don't need this to distinguish code from code-insiders. Please report unexpected issues based on the removal of this property.",
"description": "Command used to launch VSCode. Set to code-insiders if using insiders build"
},
"fzf-quick-open.fuzzyCmd": {
"scope": "window",
"type": "string",
"default": "fzf",
"description": "Command used for fuzzy searching program. E.g. fzf, sk"
},
"fzf-quick-open.ripgrepSearchStyle": {
"scope": "window",
"type": "string",
"enum": [
"Case sensitive",
"Ignore case",
"Smart case"
],
"markdownEnumDescriptions": [
"Do a case sensitive search (`--case-sensitive`)",
"Do a case insensitive search (`--ignore-case`)",
"Smart case based on search string (`--smart-case`)"
],
"default": "Case sensitive",
"description": "Command used for fuzzy searching program. E.g. fzf, sk"
},
"fzf-quick-open.ripgrepOptions": {
"scope": "window",
"type": "string",
"default": [],
"description": "Options to pass to rg"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"coverage": "COVERAGE=1 nyc npm run test",
"package": "npm run compile && vsce package",
"publish": "npm run compile && vsce publish"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/glob": "^7.1.1",
"@types/mocha": "^10.0.0",
"@types/node": "^6.14.10",
"@types/vscode": "^1.33.0",
"chai": "^4.2.0",
"glob": "^7.1.4",
"minimist": "^1.2.5",
"mocha": "^10.1.0",
"nyc": "^15.0.0",
"tslint": "^5.16.0",
"typescript": "^4.4.4",
"@vscode/vsce": "^2.15.0",
"vscode-test": "^1.0.0"
}
}