-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
134 lines (134 loc) · 3.59 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
{
"name": "find-file-and-directory-commands",
"description": "Additional find file and directory commands.",
"version": "1.0.1",
"publisher": "clearfeld",
"icon": "assets/icon.png",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clearfeld/vscode-find-file-and-directory-commands"
},
"engines": {
"vscode": "^1.89.0"
},
"extensionKind": [],
"categories": [
"Other"
],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"panel": [
{
"id": "emacs-minibuffer-find-file-view",
"title": "Minibuffer",
"icon": "fancy.icon",
"when": "emacs.findFilePanel"
},
{
"id": "clearfeld-minibuffer-find-file-fd-view",
"title": "Minibuffer",
"icon": "fancy.icon",
"when": "clearfeld.findFileFDPanel"
},
{
"id": "clearfeld-minibuffer-find-file-rg-view",
"title": "Minibuffer",
"icon": "fancy.icon",
"when": "clearfeld.findFileRGPanel"
}
]
},
"views": {
"emacs-minibuffer-find-file-view": [
{
"type": "webview",
"id": "emacs.findFileView",
"name": "File Open",
"when": "emacs.findFilePanel"
}
],
"clearfeld-minibuffer-find-file-fd-view": [
{
"type": "webview",
"id": "clearfeld.findFileFDView",
"name": "File Open",
"when": "clearfeld.findFileFDPanel"
}
],
"clearfeld-minibuffer-find-file-rg-view": [
{
"type": "webview",
"id": "clearfeld.findFileRGView",
"name": "File Open",
"when": "clearfeld.findFileRGPanel"
}
]
},
"commands": [
{
"command": "emacs.findFileEditor",
"category": "clearfeld",
"title": "Find File (Editor)"
},
{
"command": "emacs.findFilePanel",
"category": "clearfeld",
"title": "Find File (Panel)"
},
{
"command": "clearfeld.findFileFDEditor",
"category": "clearfeld",
"title": "Find File - FD (Editor)"
},
{
"command": "clearfeld.findFileFDPanel",
"category": "clearfeld",
"title": "Find File - FD (Panel)"
},
{
"command": "clearfeld.findFileFDGitRootEditor",
"category": "clearfeld",
"title": "Find File - FD from project root (GIT)(Editor)"
},
{
"command": "clearfeld.findFileFDGitRootPanel",
"category": "clearfeld",
"title": "Find File - FD from project root (GIT)(Panel)"
},
{
"command": "clearfeld.findFileRGPanel",
"category": "clearfeld",
"title": "Find File - Ripgrep (rg) (Panel)"
}
],
"configuration": {
"title": "Emacs Find File",
"properties": {
"emacs-minibuffer-find-file-commands.defaultDirectory": {
"type": "string",
"default": "",
"description": "Default directory to use if not able to find underlying directory of active file and or view."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -w -p ./"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@types/vscode": "^1.89.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^4.8.4"
}
}